:root {
  --paper: #f3f7fb;
  --paper-deep: #e6eef6;
  --card: #ffffff;
  --ink: #10233d;
  --ink-soft: #3d4f66;
  --muted: #6b7c8f;
  --sky: #009fe3;
  --navy: #1a519e;
  --navy-deep: #0d2f6b;
  --cta: #06d1aa;
  --line: #d3e0ec;
  --seal: #cf2e2e;
  --focus: #009fe3;
  --shadow: 0 22px 50px rgba(16, 47, 92, 0.12);
  --radius: 1.35rem;
  --font-display: "Nunito", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Nunito", "Avenir Next", "Segoe UI", sans-serif;
  --measure: 74rem;
  --gutter: clamp(1.15rem, 4vw, 2.4rem);
  --header-h: 4.7rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--navy);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--sky);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--navy);
  color: #fff;
  padding: 0.5rem 0.8rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: 100%;
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.kicker {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--sky);
  margin: 0 0 0.75rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(1.7rem, 3.8vw, 3.15rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  margin: 0 0 0.8rem;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 36rem;
  overflow-wrap: anywhere;
}

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

.hit-list li {
  position: relative;
  padding-left: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.4;
}

.hit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--cta);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--cta);
  border-radius: 999px;
  background: var(--cta);
  color: #08362e;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: #04be9a;
  border-color: #04be9a;
  color: #08362e;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn-line {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-line:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: env(safe-area-inset-top);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(211, 224, 236, 0.8);
  transition: box-shadow 0.25s ease, background 0.25s ease, transform 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 28px rgba(16, 47, 92, 0.08);
}

.site-header.is-hidden {
  transform: translateY(-100%);
  box-shadow: none;
  pointer-events: none;
}

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

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.brand-logo {
  display: block;
  height: 46px;
  width: auto;
}

.footer-logo {
  display: block;
  height: 42px;
  width: auto;
  margin-bottom: 0.85rem;
}

.nav-backdrop {
  position: fixed;
  inset: calc(var(--header-h) + env(safe-area-inset-top)) 0 0;
  z-index: 30;
  background: rgba(10, 28, 52, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.15rem;
  position: fixed;
  top: calc(var(--header-h) + env(safe-area-inset-top));
  right: 0;
  left: 0;
  z-index: 35;
  max-height: calc(100dvh - var(--header-h) - env(safe-area-inset-top));
  overflow: auto;
  padding: 0.7rem var(--gutter) calc(1.5rem + env(safe-area-inset-bottom));
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(16, 47, 92, 0.1);
  transform: translateY(-0.6rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
}

.nav.is-open {
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav > a:not(.btn),
.dropdown-toggle {
  color: inherit;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.85rem 0.2rem;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
}

.nav > a:not(.btn):hover,
.nav > a:not(.btn)[aria-current="page"],
.dropdown.is-current > .dropdown-toggle,
.dropdown-toggle:hover {
  color: var(--sky);
}

.nav > .btn {
  margin-top: 1rem;
  width: 100%;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--ink);
  background: #fff;
  cursor: pointer;
  padding: 0;
  border-radius: 0.7rem;
  position: relative;
  z-index: 2;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: var(--paper);
  border-color: var(--navy);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.15rem;
  height: 1.6px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
  transition: transform 0.22s ease, top 0.22s ease, opacity 0.22s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.dropdown-toggle::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.45rem;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex: 0 0 auto;
}

.dropdown.is-open .dropdown-toggle::after {
  transform: rotate(225deg);
}

.dropdown-menu {
  display: grid;
  max-height: 0;
  min-width: 17.5rem;
  padding: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding 0.32s ease;
}

.dropdown.is-open .dropdown-menu {
  max-height: 72rem;
  padding: 0.35rem 0 0.45rem;
}

.mega-grid {
  display: grid;
  gap: 0.45rem;
}

.mega-item {
  display: grid;
  grid-template-columns: 4.6rem minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  padding: 0.3rem;
  border-radius: 0.85rem;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
}

.mega-item img {
  display: block;
  width: 100%;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 0.65rem;
}

.mega-item strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.25;
}

.mega-item small {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.mega-item[aria-current="page"] {
  box-shadow: inset 0 0 0 2px var(--sky);
}

@media (min-width: 1121px) {
  .nav-toggle,
  .nav-backdrop {
    display: none;
  }

  .dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 0.7rem;
  }

  .nav,
  .nav.is-open {
    position: static;
    inset: auto;
    z-index: auto;
    max-height: none;
    overflow: visible;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav > a:not(.btn),
  .dropdown-toggle {
    width: auto;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.48rem 0.7rem;
    border: 0;
    border-radius: 0.65rem;
  }

  .nav > a:not(.btn):hover,
  .dropdown-toggle:hover,
  .dropdown.is-open .dropdown-toggle,
  .dropdown.is-current .dropdown-toggle {
    background: var(--paper);
  }

  .nav > .btn {
    width: auto;
    margin-top: 0;
    margin-left: 0.45rem;
  }

  .dropdown-toggle::after {
    margin-left: 0.28rem;
    margin-top: -0.18rem;
  }

  .dropdown.is-open .dropdown-toggle::after,
  .dropdown:focus-within .dropdown-toggle::after {
    transform: rotate(225deg);
    margin-top: 0.12rem;
  }

  .dropdown-menu {
    display: grid;
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    max-height: none;
    padding: 0.5rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .dropdown.is-open .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .header-inner {
    position: relative;
  }

  .dropdown.mega {
    position: static;
  }

  .dropdown.mega::before {
    display: none;
  }

  .dropdown.mega .mega-menu {
    left: 0;
    right: 0;
    top: 100%;
    width: auto;
    min-width: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    transform: none;
    z-index: 46;
  }

  .dropdown.mega.is-open .mega-menu,
  .dropdown.mega:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .dropdown.mega.is-open .mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 0.85rem;
    pointer-events: auto;
  }

  .mega-panel {
    padding: 0.95rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    box-shadow: var(--shadow);
  }

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

  .mega-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 9.6rem;
    padding: 0;
    overflow: hidden;
    isolation: isolate;
    background: #0b2a63;
    color: #fff;
    border-radius: 0.95rem;
    box-shadow: none;
  }

  .mega-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: scale(1.04);
    transition: transform 0.55s ease;
  }

  .mega-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(8, 28, 68, 0.08) 20%, rgba(8, 28, 68, 0.88) 100%);
  }

  .mega-item:hover img {
    transform: scale(1.12);
  }

  .mega-item span {
    position: relative;
    z-index: 1;
    padding: 0.85rem 0.9rem 0.95rem;
  }

  .mega-item small {
    color: #d7e6f4;
  }

  .mega-item[aria-current="page"] {
    box-shadow: inset 0 0 0 2px var(--cta);
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(80rem 40rem at 90% -10%, rgba(0, 159, 227, 0.35), transparent 50%),
    linear-gradient(135deg, #0b2a63 0%, #1a519e 52%, #009fe3 130%);
  padding: clamp(3.2rem, 8vw, 6.2rem) 0 clamp(3.8rem, 8vw, 6.4rem);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 1121px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(16rem, 0.95fr);
  }
}

.hero-inner > * {
  min-width: 0;
  animation: rise-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-inner > :nth-child(2) {
  animation-delay: 0.12s;
}

.hero .kicker {
  color: #8ad6f5;
}

.hero h1 em {
  font-style: normal;
  color: var(--cta);
}

.hero .lede {
  color: #d7e8f6;
}

.hero-copy {
  min-width: 0;
  max-width: 100%;
}

.hero-frame {
  position: relative;
  isolation: isolate;
  margin: 0.4rem 0 0;
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 1.6rem;
  box-shadow: 0 30px 70px rgba(4, 16, 42, 0.35);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: -0.7rem -0.7rem auto auto;
  width: 70%;
  height: 72%;
  border: 8px solid var(--cta);
  border-radius: 1.8rem;
  z-index: -1;
}

.hero-chip {
  position: absolute;
  left: 0.8rem;
  bottom: 1.1rem;
  max-width: calc(100% - 1.6rem);
  margin: 0;
  background: #fff;
  color: var(--navy);
  padding: 0.7rem 0.95rem;
  border-radius: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  overflow-wrap: anywhere;
}

.hero-chip small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0;
  color: var(--sky);
  font-weight: 700;
}

.hero-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  text-align: center;
  justify-items: center;
}

@media (min-width: 720px) {
  .hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    justify-items: stretch;
  }
}

.hero-meta div {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.85rem 0.75rem 0;
  min-width: 0;
  max-width: 18rem;
}

@media (min-width: 720px) {
  .hero-meta div {
    max-width: none;
    border-top: 0;
    padding: 0 1.15rem;
  }

  .hero-meta div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }
}

.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
  overflow-wrap: anywhere;
}

.hero-meta span {
  display: block;
  color: #c5d8ea;
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-carousel {
  padding-bottom: 0;
}

.hero-carousel > .carousel-viewport {
  border-radius: 0;
}

.hero-slide .hero-copy {
  min-height: 18.5rem;
}

.hero-carousel .hero-frame img {
  aspect-ratio: 4 / 3;
  border-radius: 1.6rem;
}

@media (min-width: 1121px) {
  .hero-slide .hero-copy {
    min-height: 21rem;
  }
}

.hero-carousel .hero-inner > * {
  animation: none;
}

.hero-footer {
  position: relative;
  z-index: 1;
  padding: 0 0 clamp(2.2rem, 5vw, 3.2rem);
}

.hero-carousel .hero-meta {
  margin-top: 1.35rem;
}

.hero-controls {
  justify-content: flex-start;
  margin-top: 0.15rem;
}

.hero-controls .carousel-btn,
.page-hero-photo .carousel-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

.hero-controls .carousel-btn:hover,
.page-hero-photo .carousel-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.hero-controls .carousel-dot,
.page-hero-photo .carousel-dot {
  background: rgba(255, 255, 255, 0.38);
}

.hero-controls .carousel-dot.is-active,
.page-hero-photo .carousel-dot.is-active {
  background: #fff;
}

/* Sections */
.section {
  padding: clamp(3.4rem, 7vw, 5.8rem) 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 36rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 44rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: center;
}

.split-copy {
  max-width: 36rem;
}

.media-frame {
  position: relative;
  isolation: isolate;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0.8rem -0.55rem -0.55rem 0.8rem;
  border: 8px solid var(--cta);
  border-radius: calc(var(--radius) + 0.4rem);
  z-index: -1;
}

.carousel-viewport {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.carousel-caption {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  margin: 0;
  padding: 0.55rem 0.75rem;
  border-radius: 0.75rem;
  background: rgba(16, 35, 61, 0.82);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}

.carousel-ui {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.carousel-btn {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.carousel-btn:hover {
  border-color: var(--navy);
}

.carousel-dots {
  display: flex;
  gap: 0.4rem;
}

.carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #c5d3e0;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.carousel-dot.is-active {
  background: var(--navy);
  width: 1.15rem;
}

.panel a {
  overflow-wrap: anywhere;
}

.panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.25rem 1.2rem;
}

.panel + .panel {
  margin-top: 0.8rem;
}

.panel + .btn-row {
  margin-top: 1.15rem;
}

/* Bento services */
.bento {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.bento-card {
  position: relative;
  display: flex;
  min-height: 16rem;
  overflow: hidden;
  border-radius: var(--radius);
  text-decoration: none;
  color: #fff;
  isolation: isolate;
}

.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 28, 62, 0.1) 10%, rgba(10, 28, 62, 0.82) 78%);
}

.bento-card:hover img {
  transform: scale(1.1);
}

.bento-body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 1.25rem 1.3rem 1.3rem;
}

.bento-body p {
  margin: 0;
  color: #d7e4f2;
}

.bento-lg {
  grid-column: span 2;
  min-height: 22rem;
}

.bento-md {
  grid-column: span 1;
  min-height: 22rem;
}

.bento-sm {
  grid-column: span 1;
  min-height: 17rem;
}

/* Method cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
  box-shadow: 0 10px 30px rgba(16, 47, 92, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin: 0 0 1rem;
  border-radius: 0.85rem;
  background: rgba(0, 159, 227, 0.12);
  color: var(--navy);
}

.card-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

.fact {
  background: var(--card);
  border-radius: 1.1rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line);
}

.fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.office-list,
.partner-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.office-list li,
.partner-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.office-list strong,
.partner-list strong {
  display: block;
}

.office-list li.is-featured {
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  margin-bottom: 0.4rem;
}

.office-list li.is-featured strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.office-list li.is-featured a {
  color: #fff;
}

.territory-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1rem;
  margin-top: 1.4rem;
}

.place-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
}

.place-card.is-featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.place-card.is-featured .kicker {
  color: #8ad6f5;
}

.place-card.is-featured a {
  color: #fff;
}

.place-card h3 {
  font-size: 1.7rem;
}

.place-stack {
  display: grid;
  gap: 1rem;
}

.territory-note {
  margin-top: 1.4rem;
  max-width: 42rem;
  color: var(--ink-soft);
}

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-card > :not(img) {
  margin-left: 1.15rem;
  margin-right: 1.15rem;
}

.news-card time {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 1rem;
}

.news-card h3 {
  margin-top: 0.45rem;
  font-size: 1.3rem;
}

.news-card p {
  color: var(--ink-soft);
  flex: 1;
  padding-bottom: 1.15rem;
}

.news-grid + p,
.news-grid + .btn-row {
  margin-top: 1.4rem;
}

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

@media (min-width: 1121px) {
  .news-grid.is-catalog {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Page hero */
.page-hero {
  padding: clamp(2.8rem, 6vw, 4.8rem) 0 2.6rem;
}

.page-hero-photo {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 26rem;
  background: #0b2a63;
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(8, 28, 68, 0.88) 0%, rgba(8, 28, 68, 0.52) 48%, rgba(8, 28, 68, 0.22) 100%);
  pointer-events: none;
}

.page-hero-photo .kicker,
.page-hero-photo .lede {
  color: #d5e7f6;
}

.page-hero-photo h1 {
  color: #fff;
  max-width: 18ch;
}

.page-hero-photo .wrap {
  position: relative;
  z-index: 2;
}

.page-hero-photo .carousel-viewport {
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.page-hero-photo .carousel-track,
.page-hero-photo .carousel-slide {
  height: 100%;
}

.page-hero-photo .carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}

.page-hero-now {
  margin: 1.2rem 0 0;
  color: #d5e7f6;
  font-size: 0.92rem;
  font-weight: 700;
}

.page-hero-now small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8ad6f5;
  font-weight: 700;
}

.page-hero-ui {
  justify-content: flex-start;
  margin-top: 1rem;
}

.page-hero-jump {
  margin: 1.05rem 0 0;
}

.page-hero-jump[hidden] {
  display: none;
}

.page-hero-jump a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--cta);
}

.page-hero-jump a:hover {
  color: var(--cta);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.person {
  display: grid;
  grid-template-columns: 7.2rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.person img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
}

.person a {
  overflow-wrap: anywhere;
}

.person h2 {
  font-size: 1.25rem;
}

.person-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--navy-deep), var(--sky));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.person .role {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--sky);
  margin-bottom: 0.45rem;
}

.person a {
  display: inline-block;
  margin-right: 0.8rem;
  font-size: 0.92rem;
}

/* Article */
.prose {
  max-width: 44rem;
}

.prose h2 {
  margin-top: 2.2rem;
  font-size: 2rem;
}

.prose h3 {
  margin-top: 1.6rem;
}

.prose ul,
.prose ol {
  padding-left: 1.15rem;
  margin: 0 0 1.1rem;
}

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

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.lead-photo {
  width: 100%;
  max-width: 44rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 0 1.6rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: 0 10px 30px rgba(16, 47, 92, 0.04);
}

.form-card h2 {
  margin-top: 0;
  font-size: 1.7rem;
}

.form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.field label {
  font-size: 0.92rem;
  font-weight: 600;
}

.form input,
.form textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: inherit;
  font: inherit;
  font-size: 16px;
  padding: 0.75rem 0.85rem;
  border-radius: 0.8rem;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--sky);
}

.form textarea {
  min-height: 9rem;
  resize: vertical;
}

.choice {
  display: grid;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.choice input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.2rem 0 0;
  flex: none;
  accent-color: var(--navy);
}

.choice label {
  font-weight: 400;
  line-height: 1.45;
}

.form-error {
  color: var(--seal);
  font-size: 0.92rem;
  margin: 0;
}

.form-error[hidden] {
  display: none;
}

.form .btn {
  justify-self: start;
  cursor: pointer;
}

/* CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(11, 42, 99, 0.88), rgba(26, 81, 158, 0.78)),
    url("../img/foto/offriamo.jpg") center / cover;
  padding: clamp(3.4rem, 7vw, 5.4rem) 0;
}

.cta-band .kicker {
  color: #9ad8f3;
}

.cta-band h2,
.cta-band p {
  color: inherit;
  max-width: 36rem;
}

.cta-band p {
  color: #d7e8f5;
}

.cta-band .btn {
  background: var(--cta);
  color: #08362e;
  border-color: var(--cta);
}

.cta-band .btn:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}

.cta-band .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-band .btn-ghost:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

/* FAQ */
.section-faq {
  background: var(--paper-deep);
}

.section-faq .section-head {
  max-width: 40rem;
}

.faq {
  max-width: 46rem;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.35;
  color: var(--navy-deep);
}

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

.faq-item summary::after {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid var(--sky);
  border-bottom: 2px solid var(--sky);
  transform: rotate(45deg) translateY(-0.12rem);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(225deg) translateY(-0.08rem);
}

.faq-item[open] summary {
  color: var(--navy);
}

.faq-body {
  padding: 0 2rem 1.25rem 0;
  color: var(--ink-soft);
}

.faq-body p {
  margin: 0 0 0.7rem;
}

.faq-body p:last-child {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  background: #102033;
  color: #e8eef3;
  padding: 3rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.8rem;
}

.site-footer a {
  color: inherit;
  overflow-wrap: anywhere;
}

.site-footer h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}

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

.site-footer li + li {
  margin-top: 0.35rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

.logo-grid.is-partners {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 56rem;
  gap: 1.6rem 2rem;
  align-items: center;
}

.logo-grid.is-partners .logo-tile {
  min-height: 0;
  padding: 0.35rem 0.15rem;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.logo-grid.is-partners .logo-tile img {
  max-height: 2.6rem;
}

.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.6rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  text-decoration: none;
  color: inherit;
}

.logo-tile.is-inverse {
  background: var(--navy);
  border-color: var(--navy);
}

.logo-tile img {
  max-width: 100%;
  max-height: 3.2rem;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.86;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-tile:hover img,
.logo-tile.is-inverse img {
  filter: none;
  opacity: 1;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0.7rem;
  animation: marquee 55s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track .logo-tile {
  width: 9.6rem;
  flex: 0 0 auto;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.studio-band {
  margin-top: 2.6rem;
  padding-top: 1.7rem;
  border-top: 1px solid var(--line);
}

.studio-band .kicker {
  margin-bottom: 0.95rem;
}

.studio-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 720px) {
  .studio-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.studio-list li {
  padding: 0.15rem 0 1.05rem;
  border-bottom: 1px solid var(--line);
}

.studio-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

@media (min-width: 720px) {
  .studio-list li {
    padding: 0.1rem 1.8rem 0.15rem 0;
    border-bottom: 0;
  }

  .studio-list li + li {
    border-left: 1px solid var(--line);
    padding: 0.1rem 0 0.15rem 1.8rem;
  }
}

.studio-list span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.studio-list strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.3;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 238, 243, 0.14);
  font-size: 0.85rem;
  color: #b8c3cc;
}

.site-footer .link-button {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.site-footer .link-button:hover {
  color: #8ad6f5;
}

.cookie-banner {
  position: fixed;
  left: var(--gutter);
  right: var(--gutter);
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 80;
  max-width: 46rem;
  margin: 0 auto;
  padding: 1.25rem 1.3rem 1.3rem;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
}

.cookie-banner h2 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  color: var(--navy-deep);
}

.cookie-banner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.cookie-banner .btn-row {
  margin-top: 1rem;
}

.credits-syncronika {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
}

.credits-syncronika img {
  height: 16px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.legal-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.muted {
  color: var(--ink-soft);
}

.small {
  font-size: 0.92rem;
}

.statute,
.statute-rail,
.service-index,
.service-row,
.cite,
.rule-top {
  /* kept for inner pages that still use them */
}

.statute {
  display: grid;
  gap: 0.4rem;
}

.statute-rail {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--sky);
  margin: 0 0 0.4rem;
}

.service-index {
  display: grid;
  gap: 0.8rem;
}

.service-row {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.service-row img {
  width: 100%;
  height: 100%;
  min-height: 8.8rem;
  object-fit: cover;
}

.service-row > div {
  padding: 1rem 1.1rem 1rem 0;
}

.service-row h3 {
  margin: 0 0 0.3rem;
}

.service-row p {
  margin: 0;
  color: var(--ink-soft);
}

@media (max-width: 1120px) {
  .dropdown-menu {
    min-width: 0;
  }

  .split,
  .contact-grid,
  .footer-grid,
  .territory-grid {
    grid-template-columns: 1fr;
  }

  .hero-frame {
    margin-left: 0;
    max-width: 36rem;
  }

  .cards,
  .facts,
  .news-grid,
  .team-grid,
  .logo-grid,
  .logo-grid.is-partners,
  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-lg,
  .bento-md,
  .bento-sm {
    grid-column: span 1;
    min-height: 16rem;
  }

  .btn-ghost {
    color: var(--navy);
    border-color: var(--navy);
  }

  .hero .btn-ghost,
  .cta-band .btn-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 4.15rem;
    --gutter: 1.05rem;
  }

  .brand-logo {
    height: 36px;
  }

  h1,
  .page-hero-photo h1 {
    font-size: 1.55rem;
    max-width: none;
  }

  h2 {
    font-size: 1.45rem;
  }

  .prose h2 {
    font-size: 1.4rem;
  }

  .lede {
    font-size: 1.02rem;
    max-width: none;
  }

  .hero {
    padding: 1.55rem 0 1.7rem;
  }

  .hero-slide .hero-copy {
    min-height: 0;
  }

  .carousel-slide {
    overflow: hidden;
  }

  .hero-carousel .hero-frame img {
    aspect-ratio: 16 / 10;
  }

  .cards,
  .facts,
  .news-grid,
  .news-grid.is-catalog,
  .team-grid,
  .logo-grid,
  .bento {
    grid-template-columns: 1fr;
  }

  .logo-grid.is-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.1rem;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .person {
    grid-template-columns: 5.2rem minmax(0, 1fr);
    padding: 0.95rem;
  }

  .page-hero-photo {
    min-height: 0;
    padding-bottom: 3.2rem;
  }

  .hero-frame::before,
  .media-frame::after {
    display: none;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-row .btn {
    width: 100%;
  }

  .carousel-btn {
    width: 2.75rem;
    height: 2.75rem;
  }

  .carousel-dot {
    width: 0.7rem;
    height: 0.7rem;
  }

  .carousel-dot.is-active {
    width: 1.35rem;
  }

  .mega-item {
    grid-template-columns: 3.6rem minmax(0, 1fr);
  }

  .mega-item img {
    height: 2.8rem;
  }

  .form input,
  .form textarea {
    font-size: 16px;
  }

  .panel a,
  .small a {
    overflow-wrap: anywhere;
  }

  .section {
    padding: 2.6rem 0;
  }

  .site-footer {
    padding: 2.4rem 0 calc(1.4rem + env(safe-area-inset-bottom));
  }

  .cookie-banner {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    border-radius: 1.15rem 1.15rem 0 0;
    padding: 0.95rem 1.05rem calc(0.95rem + env(safe-area-inset-bottom));
  }

  .cookie-banner .kicker {
    display: none;
  }

  .cookie-banner h2 {
    font-size: 1.02rem;
    margin-bottom: 0.3rem;
  }

  .cookie-banner p {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .cookie-banner .btn-row {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    margin-top: 0.75rem;
    gap: 0.55rem;
  }

  .cookie-banner .btn-row .btn {
    width: auto;
    flex: 1 1 0;
    padding-inline: 0.55rem;
    font-size: 0.88rem;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.page-hero .wrap,
.page-hero-photo .wrap {
  animation: rise-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

  .hero-inner > *,
  .page-hero .wrap,
  .page-hero-photo .wrap,
  .site-header,
  .reveal,
  .marquee-track,
  .bento-card img,
  .btn,
  .card,
  .news-card,
  .service-row,
  .nav,
  .nav-backdrop,
  .dropdown-menu,
  .dropdown-toggle::after,
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after,
  .carousel-track,
  .carousel-dot,
  .faq-item summary::after,
  .mega-item img {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .hero-inner > * {
    opacity: 1;
    transform: none;
  }
}
