:root {
  --blue-900: #004f76;
  --blue-800: #004f76;
  --blue-700: #5abeab;
  --blue-600: #004f76;
  --blue-rgb: 0, 79, 118;
  --ink: #004f76;
  --muted: #696969;
  --grey: #c5c5c5;
  --sand: #f7f8fb;
  --white: #ffffff;
  --shadow-strong: 0 24px 90px rgba(3, 22, 52, 0.25);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --max-width: 1220px;
  --img-radius: 0px;
}

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

html {
  scroll-padding-top: 108px;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  line-height: 1.65;
  scroll-behavior: smooth;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
}

h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.2;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--img-radius);
}

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 28px);
}

.background-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: #ffffff;
}

.mesh,
.noise,
.orb {
  display: none;
}

header.glass-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  transform: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 42px);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(11, 29, 51, 0.08);
  box-shadow: 0 10px 24px rgba(5, 20, 46, 0.06);
  z-index: 10;
  transition: box-shadow 0.3s ease, border 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

header.glass-nav.scrolled {
  box-shadow: 0 16px 36px rgba(5, 20, 46, 0.12);
  border-color: rgba(11, 29, 51, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 197px;
  height: 48px;
  object-fit: contain;
  margin-left: 0;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}

header.glass-nav nav {
  display: flex;
  gap: 18px;
  align-items: center;
  position: relative;
  flex: 1;
  justify-content: center;
}

header.glass-nav .nav-item {
  position: relative;
}

header.glass-nav .nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

header.glass-nav nav a {
  position: relative;
  font-size: 0.92rem;
  color: rgba(17, 30, 48, 0.9);
  padding: 6px 2px;
  border-radius: 0;
  transition: color 0.2s ease, border-color 0.2s ease;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}

header.glass-nav nav > a:not(:first-child),
header.glass-nav nav > .nav-item:not(:first-child) > a {
  padding-left: 18px;
}

header.glass-nav nav > a:not(:first-child)::before,
header.glass-nav nav > .nav-item:not(:first-child) > a::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: rgba(var(--blue-rgb), 0.55);
  opacity: 0.9;
}

header.glass-nav nav a:hover {
  color: var(--blue-800);
  border-color: var(--blue-800);
}

header.glass-nav nav a[aria-current="page"] {
  color: var(--blue-800);
  border-color: var(--blue-800);
}

header.glass-nav nav a:focus-visible {
  outline: none;
  color: var(--blue-800);
  border-color: var(--blue-800);
}

header.glass-nav nav .nav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid rgba(11, 29, 51, 0.12);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  min-width: 240px;
  padding: 10px;
  z-index: 12;
}

header.glass-nav nav .nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}

header.glass-nav nav .nav-submenu a:hover {
  background: rgba(11, 29, 51, 0.06);
  color: var(--blue-800);
}

header.glass-nav nav .nav-item:hover .nav-submenu,
header.glass-nav nav .nav-item:focus-within .nav-submenu {
  display: grid;
  gap: 4px;
}

.nav-caret {
  font-size: 0.75rem;
  line-height: 1;
}

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

.nav-iso {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 6px;
  background: #ffffff;
  padding: 4px 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(11, 29, 51, 0.18);
  background: transparent;
  padding: 8px 12px;
  min-height: 44px;
  font-size: 0.88rem;
  color: rgba(17, 30, 48, 0.9);
  cursor: pointer;
  text-align: center;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pill:hover {
  color: var(--blue-800);
  border-color: rgba(var(--blue-rgb), 0.4);
}

.nav-actions .cta {
  padding: 10px 18px;
  font-size: 0.9rem;
  background: var(--blue-800);
  box-shadow: none;
}

.nav-actions .cta:hover {
  transform: translateY(-1px);
  box-shadow: none;
  background: var(--blue-700);
  color: var(--blue-800);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  min-height: 50px;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  box-shadow: 0 16px 36px rgba(var(--blue-rgb), 0.25);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(var(--blue-rgb), 0.3);
}

.cta.primary {
  color: #fff;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  padding: 12px 20px;
  min-height: 50px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.88rem;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.eyebrow,
.hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.86rem;
  color: var(--blue-900);
}

.accent {
  color: var(--blue-700);
}

.hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  max-height: 72vh;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background: var(--slide-image) center top/cover no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s ease, transform 7s ease;
  will-change: opacity, transform;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: 72vh;
  display: grid;
  align-content: center;
  gap: 16px;
  color: #ffffff;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.hero__content h1 {
  color: #ffffff;
  font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  line-height: 1.05;
}

.hero__lead {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  max-width: 560px;
  color: #ffffff;
  display: inline-block;
  padding: 0.25em 0.45em;
  border-radius: 10px;
  position: relative;
  isolation: isolate;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-shadow: none;
}

.hero__lead::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(var(--blue-rgb), 0.6);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  z-index: -1;
}

.hero__kicker,
.hero__content h1,
.hero__lead {
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.35), 0 22px 24px rgba(0, 0, 0, 0.35);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero__dots {
  position: absolute;
  bottom: clamp(24px, 6vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero__dot.is-active {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.1);
}

.hero__dot:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: none;
  }
}

.features {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -30px;
  padding: 0 0 clamp(40px, 6vw, 70px);
}

.features__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
}

.features__card {
  background: var(--blue-800);
  color: #ffffff;
  padding: clamp(28px, 4vw, 46px) clamp(22px, 4vw, 50px);
  display: grid;
  gap: 14px;
  text-align: center;
  align-content: center;
  min-height: 280px;
}

.features__card--secondary {
  background: linear-gradient(135deg, var(--blue-800), rgba(90, 190, 171, 1));
}

.features__card + .features__card {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.features__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  color: #ffffff;
}

.features__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.features__card h3 {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
}

.features__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 420px;
  justify-self: center;
}

.features__cta {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.features__cta:hover {
  background: #ffffff;
  color: var(--blue-800);
  transform: translateY(-1px);
}

.statement {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(40px, 8vw, 40px) 0;
  background: #ffffff;
}

.statement__inner {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.statement__inner h2 {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  color: var(--ink);
}

.statement__inner p {
  color: #818181;
  font-size: 1.02rem;
}

.faq {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(50px, 9vw, 110px) 0;
  background: #ffffff;
}

.faq__inner {
  display: grid;
  gap: clamp(28px, 5vw, 44px);
}

.faq__header {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.faq__header p {
  color: #818181;
}

.faq__list {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.faq__list--compact {
  max-width: 560px;
  margin: 0;
}

.faq__item {
  border: 1px solid rgba(11, 29, 51, 0.08);
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.faq__item[open] {
  border-color: rgba(var(--blue-rgb), 0.35);
  box-shadow: 0 14px 30px rgba(5, 20, 46, 0.08);
}

.faq__question {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--blue-800);
  transition: transform 0.2s ease;
}

.faq__item[open] .faq__question::after {
  content: '-';
}

.faq__content {
  padding: 0 20px 18px;
  color: #5f6c7d;
  line-height: 1.6;
  width: 100%;
}

.contact__faq {
  display: grid;
  gap: 18px;
}

.contact__faq-header {
  display: grid;
  gap: 10px;
}

.contact__faq-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
}

.contact__faq-header p {
  color: rgba(255, 255, 255, 0.8);
}

.contact__faq .faq__item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact__faq .faq__item[open] {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.contact__faq .faq__question {
  color: #ffffff;
}

.contact__faq .faq__question::after {
  color: #ffffff;
}

.contact__faq .faq__content {
  color: rgba(255, 255, 255, 0.82);
}

.contact__faq .faq__content a {
  color: #ffffff;
}

.faq__content a {
  color: var(--blue-800);
  font-weight: 600;
}

.reviews {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(60px, 10vw, 70px) 0;
  background: rgba(var(--white), 0.04);
}

.reviews__inner {
  display: grid;
  gap: clamp(28px, 5vw, 48px);
}

.reviews__header {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.reviews__header p {
  color: #818181;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 3vw, 24px);
}

.reviews__card {
  border-radius: 16px;
  border: 1px solid rgba(11, 29, 51, 0.08);
  background: #ffffff;
  padding: 20px 22px;
  display: grid;
  gap: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.reviews__card:hover {
  border-color: rgba(var(--blue-rgb), 0.35);
  transform: translateY(-2px);
}

.reviews__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.reviews__meta h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--blue-800);
}

.reviews__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(var(--blue-rgb), 0.08);
  color: var(--blue-800);
  font-size: 0.8rem;
  font-weight: 600;
}

.reviews__rating {
  display: flex;
  gap: 4px;
  color: var(--blue-700);
}

.reviews__star {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.reviews__card p {
  margin: 0;
  color: #4a5b73;
  line-height: 1.6;
}

.hero__inner {
  display: grid;
  gap: 12px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  min-height: 95vh;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(6px, 1vw, 10px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-height: 95vh;
}

.hero-card {
  position: relative;
  min-height: 100%;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  box-shadow: none;
  --card-image: none;
  --parallax-x: 0px;
  --parallax-y: 0px;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(var(--blue-rgb), 0.6), rgba(var(--blue-rgb), 0.6)), var(--card-image) center/cover no-repeat;
  transform: scale(1.02);
  filter: brightness(0.95) blur(0px);
  transition: transform 0.9s ease, filter 0.6s ease;
  z-index: 0;
  border-radius: inherit;
}

.hero-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--blue-rgb), 0.15), rgba(var(--blue-rgb), 0.05));
  z-index: 0;
  backdrop-filter: blur(0px);
  border-radius: inherit;
}

.hero-card__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 18px;
  padding: 277px 24px;
  color: #fff;
  text-align: center;
}

.hero-card__content h2 {
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.1;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

.hero-card__text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.35;
  max-width: 520px;
  margin: 0;
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.36);
}

.page-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(68px, 7vw, 92px) 0 clamp(32px, 5vw, 52px);
  min-height: clamp(260px, 30vw, 360px);
  overflow: hidden;
  color: #ffffff;
}

.page-hero--chi-siamo {
  padding: clamp(64px, 6.8vw, 84px) 0 clamp(28px, 4.5vw, 46px);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(var(--blue-rgb), 0.82), rgba(var(--blue-rgb), 0.42)),
    var(--page-hero-image, url('media/foto7.jpg')) center 40%/cover no-repeat;
  transform: scale(1.04);
  filter: brightness(0.9);
  z-index: 0;
  overflow: hidden;
}

.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--blue-rgb), 0.28), rgba(var(--blue-rgb), 0.72));
  backdrop-filter: blur(1px);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: 760px;
  padding: 0 clamp(18px, 6vw, 42px);
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.page-hero__content h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  color: #ffffff;
  max-width: 18ch;
  margin: 0 auto;
  text-wrap: balance;
}

.page-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.page-breadcrumbs a {
  color: #ffffff;
  font-weight: 700;
}

.page-breadcrumbs span[aria-current="page"] {
  color: rgba(255, 255, 255, 0.82);
}

.chi-siamo__kicker {
  color: #ffffff;
}

#prenota.page-hero .page-hero__content {
  max-width: 860px;
}

#prenota.page-hero .page-hero__content h1 {
  max-width: 15ch;
  white-space: normal;
}

.page-hero__lead {
  font-size: 1.2rem;
  max-width: 680px;
  color: #ffffff;
  text-wrap: balance;
}

@media (max-width: 520px) {
  #prenota.page-hero .page-hero__content h1 {
    white-space: normal;
  }
}

.page-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
  justify-content: center;
}

.page-hero .cta.primary {
  background: linear-gradient(135deg, #5abeab, #4aa99a);
}

.page-hero .cta.primary:hover {
  background: linear-gradient(135deg, #4aa99a, #5abeab);
}

.page-hero--compact {
  min-height: 400px;
  padding: 60px 0;
}

.page-hero--compact .page-hero__content {
  max-width: none;
  text-align: center;
  place-items: center;
  margin-top: 150px;
}

.page-hero--compact h1 {
  margin: 0;
  color: #ffffff;
}

.page-intro {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #ffffff;
padding-top: 50px;
padding-bottom: 50px;
;}

.page-intro__inner {
  display: grid;
  gap: 16px;
  text-align: center;
  max-width: 800px;
}

.page-intro__inner h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--ink);
}

.page-intro__inner p {
  color: #818181;
  font-size: 1.02rem;
}

.services-focus {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 77px;
  overflow: visible;
}

.services-focus::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: var(--blue-800);
  z-index: 0;
}

.services-focus__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 4vw, 30px);
  align-items: end;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.service-card__image {
  position: relative;
  height: 340px;
  background: rgba(var(--blue-rgb), 0.1) center/cover no-repeat;
  filter: brightness(0.95);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.service-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(var(--blue-rgb), 0.32), rgba(var(--blue-rgb), 0.85));
  backdrop-filter: blur(1px);
}

.team {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(70px, 10vw, 120px) clamp(18px, 5vw, 42px);
  background: linear-gradient(135deg, rgba(var(--blue-rgb), 0.05), rgba(var(--blue-rgb), 0.12));
}

.team__inner {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}

.team__header {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.team__header p {
  color: #818181;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.team-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 320px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.team-card__photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.02);
}

.team-card__body {
  padding: 20px 22px;
  display: grid;
  gap: 10px;
  align-content: center;
}

.team-card__body h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink);
}

.team-card__body p {
  margin: 0;
  color: #818181;
  font-size: 0.98rem;
}

.team-card__quote {
  font-style: italic;
  color: var(--ink);
}

.service-card:hover .service-card__image {
  filter: brightness(0.9) blur(2px);
  transform: scale(1.02);
}

.service-card__content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  color: #ffffff;
  gap: 6px;
  text-align: center;
}

.service-card__content h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.service-card__cta::after {
  content: '>';
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1;
}

.service-detail {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(70px, 10vw, 120px) clamp(18px, 6vw, 48px);
  background: linear-gradient(135deg, rgba(var(--blue-rgb), 0.04), #ffffff);
}

.service-detail__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 6vw, 70px);
  align-items: center;
}

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

.service-detail__text h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--ink);
}

.service-detail__lead {
  font-size: 1.05rem;
  color: #2f3e52;
  line-height: 1.7;
}

.service-detail__note {
  color: #818181;
  max-width: 720px;
}

.service-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.84rem;
  color: var(--blue-700);
  font-weight: 800;
}

.service-highlight {
  position: relative;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(var(--blue-rgb), 0.92), rgba(var(--blue-rgb), 0.72));
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(var(--blue-rgb), 0.25);
  overflow: hidden;
}

.service-highlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 38%),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.12), transparent 42%);
  pointer-events: none;
}

.service-highlight__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-highlight__text {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.service-list {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(40px, 9vw, 100px) clamp(18px, 6vw, 48px);
  background: #ffffff;
}

.service-list__inner {
  display: grid;
  gap: 22px;
}

.service-list__header {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

.service-list__header h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--ink);
}

.service-list__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(12px, 3vw, 20px);
}

.service-list__item {
  position: relative;
  padding: 14px 16px 14px 46px;
  background: rgba(var(--blue-rgb), 0.04);
  border: 1px solid rgba(11, 29, 51, 0.08);
  border-radius: 16px;
  color: var(--ink);
  box-shadow: 0 14px 40px rgba(3, 22, 52, 0.08);
}

.service-list__item::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--blue-800);
  top: 18px;
  left: 18px;
  box-shadow: 0 0 0 6px rgba(var(--blue-rgb), 0.14);
}

.ethics-callout {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  color: #ffffff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(var(--blue-rgb), 0.25);
  text-align: center;
  font-weight: 800;
  line-height: 1.5;
}

.ethics-callout span {
  display: block;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 4px;
}

.photo-gallery {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(60px, 10vw, 110px) clamp(18px, 6vw, 48px);
  background: #ffffff;
}

.photo-gallery__header {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.photo-gallery__header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--ink);
}

.photo-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(12px, 2.4vw, 20px);
}

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

@media (max-width: 900px) {
  .photo-gallery--compact .photo-gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

.photo-gallery__item {
  position: relative;
  aspect-ratio: 1 / 1;
  border: none;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(var(--blue-rgb), 0.06);
  box-shadow: 0 14px 36px rgba(3, 22, 52, 0.14);
}

.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease, filter 0.25s ease;
  display: block;
}

.photo-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.15));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.photo-gallery__item:hover img,
.photo-gallery__item:focus img {
  transform: scale(1.04);
  filter: saturate(1.02);
}

.photo-gallery__item:hover::after,
.photo-gallery__item:focus::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 20, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 96vw;
  max-height: 96vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  background: var(--ink);
}

.lightbox__close {
  position: absolute;
  top: -10px;
  right: -10px;
  border: none;
  background: #ffffff;
  color: var(--ink);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-card__italic,
.title-italic {
  font-family: 'Montserrat', 'Manrope', system-ui, -apple-system, sans-serif;
  font-style: italic;
  font-weight: 200;
  display: block;
}

.hero-card:hover {
  transform: translate3d(var(--parallax-x), calc(var(--parallax-y) - 6px), 0);
  box-shadow: none;
}

.hero-card:hover::before {
  transform: scale(1.08);
  filter: brightness(0.9) blur(6px);
}

.ethics {
  --ethics-pt: 90px;
  padding-top: 30px;
  padding-bottom: 24px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.ethics__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 6vw, 60px);
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(32px, 5vw, 64px) clamp(18px, 5vw, 42px);
}

.ethics__content {
  display: grid;
  gap: 14px;
  max-width: 520px;
  padding-left: clamp(12px, 3vw, 28px);
}

.ethics__content p {
  color: #3c4a5e;
}

.ethics__media {
  border-radius: 0;
  overflow: hidden;
  position: relative;
  --parallax-x: 0px;
  --parallax-y: 0px;
  --cover-shift: 0%;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
}

.ethics__photo {
  width: 100%;
  height: clamp(420px, 48vw, 620px);
  background: url('media/etica.png') center/cover no-repeat;
  position: relative;
  --bg-shift-x: 0px;
  --bg-shift-y: 0px;
  background-position: calc(50% + var(--bg-shift-x)) calc(50% + var(--bg-shift-y));
  transition: background-position 0.5s ease-out;
  border-radius: inherit;
}

.ethics__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  transform: translateY(var(--cover-shift));
  transition: transform 0.2s linear;
  pointer-events: none;
  border-radius: inherit;
}

.ethics__media.no-cover::after {
  display: none;
}

.ethics__photo::after {
  display: none;
}

.about {
  background: #ffffff;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.about--tint {
  background: linear-gradient(135deg, rgba(var(--blue-rgb), 0.04), rgba(var(--blue-rgb), 0.08));
}

.about--plain {
  background: #ffffff;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 6vw, 60px);
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(30px, 5vw, 60px) 0;
}

.about__media {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  background: transparent;
  --parallax-x: 0px;
  --parallax-y: 0px;
  --cover-shift: 0%;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  position: relative;
}

.about__photo {
  width: 100%;
  height: clamp(520px, 55vw, 760px);
  background: url('media/foto2.jpg') center/cover no-repeat;
  mix-blend-mode: normal;
  opacity: 1;
  position: relative;
  border-radius: inherit;
  transform-origin: center;
  transform: scale(var(--about-scale, 1.02)) translateY(var(--about-shift, 0px));
  filter: blur(var(--about-blur, 0px));
  transition: transform 0.45s ease-out, filter 0.4s ease-out;
}

.personale__photo {
  width: 100%;
  height: clamp(520px, 55vw, 760px);
  background: url('media/personale1.webp') center/cover no-repeat;
  mix-blend-mode: normal;
  opacity: 1;
  position: relative;
  border-radius: inherit;
  transform-origin: center;
  transform: scale(var(--about-scale, 1.02)) translateY(var(--about-shift, 0px));
  filter: blur(var(--about-blur, 0px));
  transition: transform 0.45s ease-out, filter 0.4s ease-out;
}


.segreteria__photo {
  width: 100%;
  height: clamp(520px, 55vw, 760px);
  background: url('media/foto7_old.jpg') center/cover no-repeat;
  mix-blend-mode: normal;
  opacity: 1;
  position: relative;
  border-radius: inherit;
  transform-origin: center;
  transform: scale(var(--about-scale, 1.02)) translateY(var(--about-shift, 0px));
  filter: blur(var(--about-blur, 0px));
  transition: transform 0.45s ease-out, filter 0.4s ease-out;
}

.organizzazione__photo {
  width: 100%;
  height: clamp(520px, 55vw, 760px);
  background: url('media/organizzazione1.webp') center/cover no-repeat;
  mix-blend-mode: normal;
  opacity: 1;
  position: relative;
  border-radius: inherit;
  transform-origin: center;
  transform: scale(var(--about-scale, 1.02)) translateY(var(--about-shift, 0px));
  filter: blur(var(--about-blur, 0px));
  transition: transform 0.45s ease-out, filter 0.4s ease-out;
}

.about__media::after {
  display: none;
}

.about__content {
  padding: 0 clamp(18px, 6vw, 48px) 0 clamp(18px, 6vw, 48px);
}

.about__content {
  display: grid;
  gap: 14px;
}

.about__content p {
  color: #818181;
}

.about__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}

.about__list {
  margin: 0;
  padding-left: 20px;
  color: #818181;
  display: grid;
  gap: 6px;
}

.about--studio {
  background: #ffffff;
  margin: clamp(20px, 4vw, 50px) 0;
}

.about--studio .about__grid {
  align-items: flex-start;
  width: min(1400px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(50px, 7vw, 90px) 10px;
}

.studio-header {
  width: min(1200px, 100%);
  margin: 20px auto clamp(18px, 4vw, 34px);
  padding: 0 10px;
  text-align: center;
}

.studio-header .eyebrow {
  margin-top: 30px;
  color: var(--blue-800);
}

.studio-header h2 {
  margin: 0;
}

.about--studio .about__content {
  background: #ffffff;
  border: 1px solid rgba(11, 29, 51, 0.06);
  border-radius: 24px;
  padding: clamp(22px, 4vw, 38px);
  box-shadow: 0 24px 60px rgba(5, 20, 46, 0.12);
}

.about--studio .about__content p {
  color: #5f6b7a;
}

.about--studio h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #0b1d33;
  margin-top: 10px;
}

.about--studio .about__list {
  list-style: none;
  padding-left: 0;
  gap: 10px;
}

.about--studio .about__list li {
  position: relative;
  padding-left: 24px;
  color: #4b5766;
}

.about--studio .about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5abeab, #4aa99a);
  box-shadow: 0 6px 14px rgba(90, 190, 171, 0.35);
}

.studio-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(90, 190, 171, 0), rgba(90, 190, 171, 0.65), rgba(90, 190, 171, 0));
  margin: clamp(16px, 3vw, 26px) 0;
}

.studio-list {
  display: block;
  columns: 2;
  column-gap: clamp(18px, 4vw, 36px);
}

.studio-list li {
  break-inside: avoid;
  margin-bottom: 10px;
}

.about--studio .link-underline {
  color: #5abeab;
  border-color: #5abeab;
}

.about--studio .link-underline:hover {
  color: #4aa99a;
  border-color: #4aa99a;
}

.about--studio .about__actions {
  margin-top: 12px;
}

.about--studio .about__actions .pill {
  border-color: rgba(90, 190, 171, 0.5);
  color: #0b1d33;
}

.about--studio .about__actions .pill:hover {
  border-color: #5abeab;
  color: #0b1d33;
}

.studio-media {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(60px, 8vw, 110px);
  gap: clamp(12px, 2vw, 20px);
  align-content: start;
  position: relative;
  padding-top: clamp(8px, 2vw, 16px);
}

.studio-media__item {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(90, 190, 171, 0.08);
  box-shadow: 0 20px 44px rgba(5, 20, 46, 0.24), 0 4px 0 rgba(255, 255, 255, 0.75);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.studio-media__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.18));
  opacity: 0.5;
  pointer-events: none;
}

.studio-media__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.5s ease;
}

.studio-media__item:hover img {
  transform: scale(1.07);
}

.studio-media__item:nth-child(1) {
  grid-column: 1 / span 8;
  grid-row: 1 / span 6;
  z-index: 1;
}

.studio-media__item:nth-child(2) {
  grid-column: 7 / span 6;
  grid-row: 3 / span 5;
  transform: translateY(clamp(-12px, -1.6vw, -20px));
  box-shadow: 0 34px 80px rgba(5, 20, 46, 0.34), 0 4px 0 rgba(255, 255, 255, 0.9);
  z-index: 2;
}

@media (max-width: 900px) {
  .about--studio .about__content {
    border-radius: 18px;
  }

  .studio-media {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .studio-media__item {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .studio-media__item:nth-child(1),
  .studio-media__item:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
    transform: none;
  }
}

@media (max-width: 720px) {
  .studio-list {
    columns: 1;
  }
}

.about__quote {
  margin: 8px 0 0;
  padding: 10px 14px;
  border-left: 3px solid var(--blue-800);
  background: rgba(var(--blue-rgb), 0.08);
  color: var(--blue-800);
  font-weight: 600;
  border-radius: 8px;
  display: inline-block;
}

.about__meta {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.about__meta strong {
  display: block;
  font-size: 1.8rem;
  color: var(--blue-800);
}

.about__meta span {
  color: #818181;
}

.reassure {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(60px, 10vw, 120px) 0;
  background: linear-gradient(130deg, rgba(var(--blue-rgb), 0.05), rgba(90, 190, 171, 0.12));
}

.reassure .eyebrow {
  color: var(--blue-800);
}

.reassure__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 4vw, 28px);
  align-items: start;
  text-align: center;
}

.reassure__intro {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.reassure__lead {
  color: #5f6b7a;
}

.reassure__principles {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.reassure__principles span {
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(11, 29, 51, 0.08);
  color: var(--blue-800);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(5, 20, 46, 0.08);
}

.reassure__panel {
  background: #ffffff;
  border-radius: 22px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(11, 29, 51, 0.08);
  box-shadow: 0 28px 70px rgba(5, 20, 46, 0.12);
  display: grid;
  gap: 18px;
  max-width: 1100px;
  width: min(1100px, 100%);
  margin: 0 auto;
  text-align: left;
}

.reassure__panel-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(18px, 4vw, 32px);
  align-items: stretch;
}

.reassure__form-col {
  display: grid;
  gap: 16px;
}

.reassure__response-col {
  display: grid;
  align-content: stretch;
}

.reassure__form {
  background: #f7f9fc;
  border: 1px solid rgba(11, 29, 51, 0.08);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 12px;
  height: 100%;
}

.reassure__response {
  height: 100%;
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(90, 190, 171, 0.14), rgba(var(--blue-rgb), 0.08));
  border: 1px solid rgba(11, 29, 51, 0.08);
}

.reassure__label {
  font-weight: 700;
  color: #0b1d33;
  margin-bottom: 6px;
  display: inline-block;
}

.reassure__input {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(11, 29, 51, 0.14);
  padding: 14px 16px;
  background: #f7f9fc;
  font-family: inherit;
  color: #0b1d33;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reassure__input:focus {
  outline: none;
  border-color: rgba(90, 190, 171, 0.85);
  box-shadow: 0 0 0 4px rgba(90, 190, 171, 0.18);
  background: #ffffff;
}

.reassure__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}

.reassure__hint {
  color: #7a8796;
  margin: 0;
  font-size: 0.95rem;
}

.reassure__response {
  border-radius: 16px;
  padding: 16px 18px;
  background: linear-gradient(135deg, rgba(90, 190, 171, 0.08), rgba(var(--blue-rgb), 0.05));
  border: 1px solid rgba(90, 190, 171, 0.2);
  display: grid;
  gap: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.reassure__response.is-filled {
  border-color: rgba(90, 190, 171, 0.6);
  box-shadow: 0 16px 40px rgba(90, 190, 171, 0.18);
}

.reassure__output-title {
  font-weight: 800;
  color: #0b1d33;
  margin: 0;
}

.reassure__output-text {
  margin: 0;
  color: #445160;
}

.reassure__chips {
  padding-top: 12px;
  display: grid;
  gap: 10px;
}

.reassure__accordions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 3vw, 24px);
  grid-column: 1 / -1;
}

.reassure__accordion {
  border-radius: 16px;
  border: 1px solid rgba(11, 29, 51, 0.08);
  background: #ffffff;
  padding: 12px 14px;
  box-shadow: 0 14px 30px rgba(5, 20, 46, 0.08);
}

.reassure__accordion > summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  color: #0b1d33;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.reassure__accordion > summary::-webkit-details-marker {
  display: none;
}

.reassure__accordion > summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(90, 190, 171, 0.5);
  color: #0b1d33;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.reassure__accordion[open] > summary::after {
  transform: rotate(45deg);
  background: rgba(90, 190, 171, 0.12);
}

@media (max-width: 900px) {
  .reassure__accordions {
    grid-template-columns: 1fr;
  }
}

.reassure__chips-label {
  margin: 0;
  font-weight: 700;
  color: #0b1d33;
}

.reassure__chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reassure__chip {
  border-radius: 999px;
  border: 1px solid rgba(90, 190, 171, 0.45);
  background: #ffffff;
  padding: 8px 14px;
  font-size: 0.9rem;
  color: #0b1d33;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.reassure__chip:hover {
  transform: translateY(-1px);
  border-color: rgba(90, 190, 171, 0.9);
  box-shadow: 0 10px 24px rgba(90, 190, 171, 0.2);
}

.reassure__chip.is-active {
  background: rgba(90, 190, 171, 0.16);
  border-color: rgba(90, 190, 171, 0.9);
}

.reassure .cta.primary {
  background: linear-gradient(135deg, #5abeab, #4aa99a);
}

.reassure .cta.primary:hover {
  background: linear-gradient(135deg, #4aa99a, #5abeab);
}

.reassure .pill {
  border-color: rgba(90, 190, 171, 0.45);
  color: #0b1d33;
}

.reassure .pill:hover {
  border-color: rgba(90, 190, 171, 0.9);
  color: #0b1d33;
}

.chat-widget {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: calc(clamp(16px, 3vw, 28px) + env(safe-area-inset-bottom));
  z-index: 999;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
}

.chat-widget__triggers {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-widget__whatsapp {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-widget__whatsapp svg {
  width: 22px;
  height: 22px;
  display: block;
}

.chat-widget__whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.chat-widget__toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--blue-800), rgba(90, 190, 171, 1));
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-widget__toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.chat-widget__toggle:focus-visible,
.chat-widget__whatsapp:focus-visible,
.chat-widget__close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.chat-widget__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  color: var(--blue-800);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.chat-widget__icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.chat-widget__label {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.chat-widget__panel {
  width: min(380px, 92vw);
  max-height: min(620px, calc(100vh - 120px));
  max-height: min(620px, calc(100dvh - 120px));
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(11, 29, 51, 0.12);
  box-shadow: 0 30px 70px rgba(5, 20, 46, 0.25);
  overflow: hidden;
  display: none;
  grid-template-rows: auto 1fr;
}

.chat-widget.is-open .chat-widget__panel {
  display: grid;
}

.chat-widget__header {
  background: linear-gradient(135deg, var(--blue-800), rgba(90, 190, 171, 1));
  color: #ffffff;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.chat-widget__title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.chat-widget__subtitle {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.chat-widget__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.chat-widget__body {
  padding: 16px;
  display: grid;
  gap: 12px;
  background: #f7f9fc;
  overflow: auto;
}

.chat-widget__form {
  background: #ffffff;
  border: 1px solid rgba(11, 29, 51, 0.08);
  border-radius: 16px;
  padding: 14px;
}

.chat-widget .reassure__input {
  min-height: 88px;
}

.chat-widget__actions {
  margin-top: 2px;
}

.chat-widget__response {
  background: #ffffff;
  border: 1px solid rgba(90, 190, 171, 0.22);
}

.chat-widget__accordion {
  box-shadow: none;
  background: #ffffff;
}

.chat-widget .reassure__chip {
  font-size: 0.82rem;
  padding: 6px 10px;
}

@media (max-width: 640px) {
  .chat-widget {
    left: 12px;
    right: 12px;
    align-items: stretch;
  }

  .chat-widget__triggers {
    justify-content: center;
    gap: 10px;
  }

  .chat-widget__whatsapp {
    width: 44px;
    height: 44px;
  }

  .chat-widget__panel {
    width: 100%;
    max-height: min(620px, calc(100vh - 150px));
    max-height: min(620px, calc(100dvh - 150px));
  }

  .chat-widget__toggle {
    width: 100%;
    justify-content: center;
  }
}

.services {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--blue-800);
}

.services__inner {
  display: grid;
  gap: clamp(26px, 4vw, 40px);
}

.services__header {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.services__header p {
  color: rgba(255, 255, 255, 0.78);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 26px);
}

.services__featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 3vw, 26px);
}

.services__card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
  display: grid;
  gap: 12px;
}

.services__card--featured {
  background: linear-gradient(140deg, rgba(90, 190, 171, 0.28), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.services__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.45);
  width: fit-content;
}

.services__card h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #ffffff;
}

.services__card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 6px;
}

.services .eyebrow,
.services h2 {
  color: #ffffff;
}

@media (max-width: 900px) {
  .reassure__intro {
    max-width: none;
  }

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

.support-steps {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(60px, 10vw, 120px) 0;
  background: #ffffff;
}

.support-steps__inner {
  display: grid;
  gap: clamp(30px, 6vw, 50px);
}

.support-steps__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.support-steps__header p {
  color: #818181;
}

.support-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 24px);
}

.support-steps__card {
  border: 1px solid rgba(11, 29, 51, 0.08);
  border-radius: 16px;
  padding: 22px 20px;
  display: grid;
  gap: 12px;
  text-align: left;
  background: #ffffff;
}

.support-steps__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(var(--blue-rgb), 0.08);
  color: var(--blue-800);
}

.support-steps__icon svg {
  width: 26px;
  height: 26px;
}

.support-steps__card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink);
}

.support-steps__card p {
  margin: 0;
  color: #5f6c7d;
}

.support-steps__cta {
  display: flex;
  justify-content: center;
}

.support-mosaic {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #5abeab;
}

.support-mosaic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('media/banner2.png') center/cover no-repeat;
  filter: blur(8px);
  transform: scale(1.08);
  opacity: 0.85;
  z-index: 0;
}

.support-mosaic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.2));
  z-index: 1;
}

.support-mosaic__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.support-mosaic__content {
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.support-mosaic__content p {
  color: #4a5b73;
}

.support-mosaic__tiles {
  display: grid;
  gap: 16px;
}

.support-mosaic__tile {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(11, 29, 51, 0.08);
  box-shadow: 0 12px 28px rgba(5, 20, 46, 0.08);
  display: grid;
  gap: 6px;
}

.support-mosaic__tile:nth-child(2) {
  transform: translateX(24px);
}

.support-mosaic__tile:nth-child(3) {
  transform: translateX(6px);
}

.support-mosaic__tile h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--blue-800);
}

.support-mosaic__tile p {
  margin: 0;
  color: #5f6c7d;
}

.support-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(60px, 10vw, 120px) 0;
  background: #ffffff;
}

.support-band__inner {
  display: grid;
  gap: clamp(24px, 5vw, 36px);
  text-align: center;
}

.support-band__content {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.support-band__content p {
  color: #818181;
}

.support-band__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.support-band__pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(var(--blue-rgb), 0.25);
  color: var(--blue-800);
  background: rgba(var(--blue-rgb), 0.06);
  font-weight: 600;
  font-size: 0.9rem;
}

.brands {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(80px, 12vw, 150px) clamp(18px, 5vw, 42px);
  background: var(--blue-800);
  filter: blur(0);
  overflow: hidden;
}

.brands__inner {
  display: grid;
  gap: clamp(28px, 5vw, 52px);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(6px);
  padding-top: 20px;
  padding-bottom: 20px;
}

.brands__header {
  display: grid;
  gap: 12px;
  max-width: 840px;
}

.brands__header p {
  color: rgba(255, 255, 255, 0.78);
}

.brands__header h2 {
  color: #ffffff;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.brand-card {
  position: relative;
  padding: 28px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(11, 29, 51, 0.08);
  box-shadow: 0 20px 60px rgba(5, 20, 46, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 97px;
  overflow: hidden;
  isolation: isolate;
  animation: floatLogos 7s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  backdrop-filter: blur(6px);
}

.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.brand-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(var(--blue-rgb), 0.18) 50%, transparent 100%);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 0;
}

.brand-card__name {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-800);
  position: relative;
  z-index: 1;
}

.brand-card__logo {
  position: relative;
  z-index: 1;
  max-height: 90px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
}

.brand-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 26px 80px rgba(5, 20, 46, 0.16);
  border-color: rgba(var(--blue-rgb), 0.25);
  animation-play-state: paused;
}

.brand-card:hover::before {
  opacity: 1;
}

.brand-card:hover .brand-card__shine {
  transform: translateX(120%);
  opacity: 1;
}

@keyframes floatLogos {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-card {
    animation: none;
  }
}

.testimonials {
  background: #ffffff;
  padding: clamp(80px, 10vw, 140px) 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.testimonials__inner {
  display: grid;
  gap: clamp(32px, 6vw, 60px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.testimonials__header {
  display: grid;
  gap: 12px;
  max-width: 780px;
  text-align: center;
  margin: 0 auto;
}

.testimonials__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(22px, 5vw, 36px);
  align-items: stretch;
}

.testimonials__viewport {
  overflow: hidden;
  width: 100%;
  padding: clamp(12px, 2vw, 18px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(var(--blue-rgb), 0.02), rgba(var(--blue-rgb), 0.06));
  box-shadow: 0 24px 80px rgba(5, 20, 46, 0.08);
}

.testimonials__track {
  --testi-gap: clamp(18px, 3vw, 26px);
  display: flex;
  gap: var(--testi-gap);
  transition: transform 0.7s ease;
  will-change: transform;
  padding: 4px;
}

.testimonial-slide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--testi-gap);
  flex: 0 0 100%;
}

.testimonials__media {
  border-radius: 0;
  overflow: hidden;
  position: relative;
  min-height: clamp(420px, 52vw, 640px);
  box-shadow: 0 24px 80px rgba(5, 20, 46, 0.1);
}

.testimonials__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(var(--blue-rgb), 0.18), rgba(var(--blue-rgb), 0));
  pointer-events: none;
  border-radius: inherit;
}

.testimonials__photo {
  width: 100%;
  height: 100%;
  background: url('media/foto3.jpg') center/cover no-repeat;
  border-radius: inherit;
}

.testimonial-card {
  border: 1px solid rgba(11, 29, 51, 0.08);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 26px);
  background: linear-gradient(180deg, rgba(246, 248, 253, 0.9) 0%, #ffffff 100%);
  box-shadow: 0 20px 60px rgba(5, 20, 46, 0.1);
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(var(--blue-rgb), 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2.4rem;
  color: rgba(var(--blue-rgb), 0.12);
  font-family: 'Playfair Display', 'Times New Roman', serif;
}

.testimonial-card__meta h3 {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.testimonial-card__meta p {
  color: #818181;
  font-size: 0.95rem;
  margin-top: 2px;
}

.testimonial-card__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(var(--blue-rgb), 0.9), rgba(var(--blue-rgb), 0.72));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  box-shadow: 0 10px 28px rgba(5, 20, 46, 0.22);
}

.testimonial-card__text {
  color: #2f3e52;
  line-height: 1.6;
}

.testimonial-card.is-clone {
  opacity: 0.4;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(5, 20, 46, 0.12);
  border-color: rgba(var(--blue-rgb), 0.22);
}

.testimonial-card:hover::after {
  opacity: 1;
}

@media (max-width: 900px) {
  .testimonials__viewport {
    width: 100%;
  }

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

  .testimonials__media {
    min-height: 340px;
  }

  .testimonial-slide {
    grid-template-columns: 1fr;
  }
}

.contact {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--blue-800);
  padding: clamp(90px, 12vw, 140px) clamp(18px, 5vw, 42px);
  overflow: hidden;
}

.contact--light {
  background: linear-gradient(135deg, rgba(var(--blue-rgb), 0.04), rgba(var(--blue-rgb), 0.08));
}

.contact--light h3 {
  color: var(--ink);
}

.contact--light p {
  color: #5f6b7a;
}

.contact--light .eyebrow {
  color: var(--blue-800);
}

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

.contact--light .contact__label {
  color: rgba(11, 29, 51, 0.6);
}

.contact--light .contact__detail p {
  color: var(--ink);
}

.contact--light .contact__info a {
  color: var(--ink);
}

.contact--light .contact__icon {
  background: rgba(255, 255, 255, 0.7);
  color: var(--blue-800);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.contact--light .contact__icon::before {
  background: var(--blue-800);
}

.contact--light .chip {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border-color: rgba(11, 29, 51, 0.12);
}

.contact--light .form__field label {
  color: rgba(11, 29, 51, 0.75);
}

.contact--light .form__field input,
.contact--light .form__field textarea,
.contact--light .form__field select {
  border-bottom: 2px solid rgba(11, 29, 51, 0.4);
  color: var(--ink);
}

.form-message {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  line-height: 1.5;
}

.form-message.is-visible {
  display: block;
}

.form-message--success {
  background: rgba(90, 190, 171, 0.18);
  border-color: rgba(90, 190, 171, 0.34);
  color: #ffffff;
}

.form-message--error {
  background: rgba(255, 94, 94, 0.16);
  border-color: rgba(255, 94, 94, 0.28);
  color: #ffffff;
}

.contact--light .form-message--success {
  background: rgba(90, 190, 171, 0.14);
  border-color: rgba(90, 190, 171, 0.28);
  color: var(--ink);
}

.contact--light .form-message--error {
  background: rgba(255, 94, 94, 0.1);
  border-color: rgba(255, 94, 94, 0.2);
  color: var(--ink);
}

.contact--light .form__field input::placeholder,
.contact--light .form__field textarea::placeholder {
  color: rgba(11, 29, 51, 0.45);
}

.contact--light .form__field input:focus,
.contact--light .form__field textarea:focus,
.contact--light .form__field select:focus {
  border-color: var(--blue-800);
}

.contact--light .form__hint {
  color: rgba(11, 29, 51, 0.7);
}

.contact__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(26px, 4vw, 48px);
  align-items: start;
}

.contact h3 {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  margin-bottom: 6px;
  color: #ffffff;
}

.contact p {
  color: rgba(255, 255, 255, 0.78);
}

.contact--light h3.contact__primary-text,
.contact--light p.contact__primary-text {
  color: var(--blue-800);
}

.contact__halo {
  display: none;
}

.contact__halo--one {
  top: -160px;
  left: -140px;
  animation: floatWhy 18s ease-in-out infinite alternate;
}

.contact__halo--two {
  bottom: -200px;
  right: -160px;
  animation: floatWhy 22s ease-in-out infinite alternate;
}

.contact__info {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.contact__lead {
  max-width: 540px;
}

.contact__details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.contact__detail {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.contact__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 14, 28, 0.32);
  font-size: 1rem;
}

.contact__icon::before {
  content: '';
  width: 16px;
  height: 16px;
  mask-size: cover;
  mask-repeat: no-repeat;
  background: #ffffff;
}

.contact__icon--mail::before {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000e1c" viewBox="0 0 24 24"><path d="M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V5Zm2 0v.217l7 4.2 7-4.2V5H5Zm14 2.783-6.553 3.934a1 1 0 0 1-.894 0L5 7.783V19h14V7.783Z"/></svg>');
}

.contact__icon--phone::before {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000e1c" viewBox="0 0 24 24"><path d="M7.75 3A2.75 2.75 0 0 0 5 5.75v12.5A2.75 2.75 0 0 0 7.75 21h8.5A2.75 2.75 0 0 0 19 18.25V5.75A2.75 2.75 0 0 0 16.25 3h-8.5ZM6.5 5.75c0-.69.56-1.25 1.25-1.25h8.5c.69 0 1.25.56 1.25 1.25v12.5c0 .69-.56 1.25-1.25 1.25h-8.5c-.69 0-1.25-.56-1.25-1.25V5.75Zm2.75 10a.75.75 0 0 1 .75-.75h3.5a.75.75 0 0 1 0 1.5h-3.5a.75.75 0 0 1-.75-.75Z"/></svg>');
}

.contact__icon--pin::before {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000e1c" viewBox="0 0 24 24"><path d="M12 2a7 7 0 0 0-7 7c0 4.182 3.828 8.805 6.046 11.009a1.5 1.5 0 0 0 2.108 0C15.172 17.805 19 13.182 19 9a7 7 0 0 0-7-7Zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Z"/></svg>');
}

.contact__icon--clock::before {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000e1c" viewBox="0 0 24 24"><path d="M12 2a10 10 0 1 0 10 10A10.011 10.011 0 0 0 12 2Zm0 18.5a8.5 8.5 0 1 1 8.5-8.5 8.51 8.51 0 0 1-8.5 8.5Zm.75-13h-1.5v5.06l3.72 2.24.78-1.28-3-1.8Z"/></svg>');
}

.contact__label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

.contact__info a {
  color: #ffffff;
  font-weight: 700;
}

.contact__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.contact__form-wrap {
  position: relative;
  z-index: 1;
}

.contact__form {
  display: grid;
  gap: 18px;
  padding: clamp(6px, 2vw, 10px) 2px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.form__field {
  display: grid;
  gap: 6px;
}

.form__field--checkbox {
  gap: 10px;
}

.form__field label {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.01em;
}

.form__field input,
.form__field textarea,
.form__field select {
  width: 100%;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #ffffff;
  padding: 12px 2px;
  font-size: 1.08rem;
  outline: none;
  transition: border-color 0.2s ease, color 0.2s ease;
  backdrop-filter: none;
}

.form__field input::placeholder,
.form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
  border-color: #ffffff;
  box-shadow: none;
  background: transparent;
}

.form__field textarea {
  min-height: 140px;
  resize: vertical;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  line-height: 1.5;
}

.form__checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #5abeab;
  flex: 0 0 auto;
}

.contact--light .form__checkbox {
  color: rgba(11, 29, 51, 0.75);
}

.form__checkbox a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact--light .form__checkbox a {
  color: var(--blue-800);
}

.form__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.form__hint {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.iso {
  background: #ffffff;
  padding: clamp(40px, 7vw, 20px) 0;
}

.iso__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 4vw, 28px);
  align-items: center;
  padding: clamp(18px, 4vw, 28px);
  border: 1px solid rgba(11, 29, 51, 0.08);
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(5, 20, 46, 0.08);
  background: linear-gradient(135deg, rgba(var(--blue-rgb), 0.04), rgba(var(--blue-rgb), 0.01));
}

.iso__logo {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(11, 29, 51, 0.06);
}

.iso__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.iso__content {
  display: grid;
  gap: 10px;
}

.iso__content h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.iso__content p {
  color: #818181;
}

.iso__content .iso__subtitle {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
}

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-800);
  text-decoration: none;
  border-bottom: 2px solid var(--blue-800);
  padding-bottom: 4px;
  width: fit-content;
}

.site-footer {
  background: var(--white);
  color: var(--ink);
  padding: 32px 0;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px 18px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__brand-text {
  display: grid;
  gap: 2px;
}

.footer__brand-text strong {
  font-size: 1rem;
  color: var(--ink);
}

.footer__brand-text span {
  font-size: 0.9rem;
  color: #818181;
  font-weight: 500;
}

.footer__logo {
  height: 52px;
  width: auto;
  display: block;
}

.footer__logo--secondary {
  height: 70px;
}

.footer__partner {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.footer__info {
  display: grid;
  gap: 6px;
  min-width: 180px;
}

.footer__info h4 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.footer__info p {
  margin: 0;
  color: #818181;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer__legal {
  flex: 1 1 280px;
  display: grid;
  gap: 8px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.footer__social a {
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(11, 29, 51, 0.18);
  background: rgba(255, 255, 255, 0.32);
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.footer__social a:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.footer__icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__copy {
  font-size: 0.92rem;
  opacity: 0.9;
  line-height: 1.45;
}

.footer__copy a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 8px 14px;
  flex-wrap: wrap;
}

.footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: rgba(17, 30, 48, 0.76);
  font-weight: 600;
  font-size: 0.84rem;
  text-decoration: none;
  opacity: 0.92;
}

.footer__links a:hover {
  opacity: 1;
  color: var(--blue-800);
}

.footer__links--primary {
  gap: 6px 12px;
}

.footer__links--primary a {
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer__links--primary a:not(:last-child)::after {
  content: "/";
  margin-left: 12px;
  color: rgba(var(--blue-rgb), 0.32);
}

.footer__links--secondary {
  gap: 6px 14px;
}

.footer__links--secondary a {
  font-size: 0.78rem;
  color: rgba(17, 30, 48, 0.56);
}

.policy-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 72px) clamp(18px, 4vw, 28px) clamp(80px, 10vw, 120px);
  display: grid;
  gap: 24px;
}

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

.policy-grid--stacked {
  grid-template-columns: 1.2fr 0.8fr;
}

.policy-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 24px;
  border: 1px solid rgba(var(--blue-rgb), 0.08);
  background: linear-gradient(180deg, #ffffff 0%, rgba(var(--blue-rgb), 0.02) 100%);
  box-shadow: 0 18px 60px rgba(5, 20, 46, 0.08);
}

.policy-card h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
}

.policy-card p,
.policy-card li,
.policy-card td,
.policy-card th {
  color: #4a5b73;
}

.policy-card code {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(var(--blue-rgb), 0.08);
  color: var(--blue-800);
  font-size: 0.92rem;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 700;
}

.policy-meta {
  display: grid;
  gap: 8px;
}

.policy-meta a,
.policy-card a {
  color: var(--blue-800);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.policy-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.policy-note {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(var(--blue-rgb), 0.92), rgba(90, 190, 171, 0.92));
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(var(--blue-rgb), 0.2);
}

.policy-note strong,
.policy-note p {
  color: #ffffff;
}

.policy-table-wrap {
  overflow-x: auto;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.policy-table th,
.policy-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(var(--blue-rgb), 0.1);
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-800);
}

.policy-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.policy-actions a {
  text-decoration: none;
}

.policy-actions .ghost-btn {
  color: var(--blue-800);
  border-color: rgba(var(--blue-rgb), 0.22);
  background: rgba(var(--blue-rgb), 0.03);
}

.policy-actions .ghost-btn:hover {
  color: var(--blue-800);
  background: rgba(var(--blue-rgb), 0.08);
}

@media (max-width: 720px) {
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .policy-grid,
  .policy-grid--stacked {
    grid-template-columns: 1fr;
  }
}
[data-parallax] {
  will-change: transform;
  transition: transform 0.35s ease-out;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  filter: blur(12px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.7s ease;
}

.is-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0px) !important;
}

.why {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #ffffff;
  padding: clamp(40px, 8vw, 90px) clamp(18px, 5vw, 42px);
  text-align: center;
}

.why--light {
  background: linear-gradient(135deg, rgba(var(--blue-rgb), 0.04), rgba(var(--blue-rgb), 0.08));
}

.why--light .why__item {
  border-color: rgba(11, 29, 51, 0.16);
  background: rgba(255, 255, 255, 0.7);
}

.why--light .why__circle {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(11, 29, 51, 0.2);
}

.why--light .why__icon {
  color: var(--blue-800);
}

.why--light .why__item:hover {
  border-color: rgba(11, 29, 51, 0.25);
}

.why--light .why__item:hover .why__circle {
  border-color: rgba(11, 29, 51, 0.3);
}
.why__header {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin: 0 auto clamp(36px, 6vw, 60px);
  position: relative;
  z-index: 1;
}

.why__header .eyebrow {
  color: var(--blue-800);
}

.why__header h2 {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  color: var(--ink);
}

.why__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(14px, 3vw, 24px);
  width: min(100%, 960px);
  margin: 0 auto clamp(34px, 6vw, 46px);
  position: relative;
  z-index: 1;
}

.metric {
  background: #ffffff;
  border: 1px solid rgba(11, 29, 51, 0.08);
  border-radius: 18px;
  padding: clamp(14px, 3vw, 18px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  backdrop-filter: none;
  display: grid;
  gap: 6px;
}

.metric__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(var(--blue-rgb), 0.12);
  color: var(--blue-800);
  width: fit-content;
}

.metric__badge--accent {
  background: rgba(var(--blue-rgb), 0.18);
  color: var(--blue-800);
}

.metric__value {
  font-size: clamp(1.9rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.metric__label {
  color: #818181;
  font-size: 0.97rem;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(16px, 3vw, 22px);
  position: relative;
  z-index: 1;
}

.why__grid::before {
  display: none;
}

.why__item {
  display: grid;
  gap: 10px;
  align-content: start;
  text-align: center;
  padding: clamp(18px, 3vw, 24px);
  transition: border-color 0.2s ease, color 0.2s ease;
  background: transparent;
  border-radius: 16px;
  border: 1px solid rgba(11, 29, 51, 0.08);
  backdrop-filter: none;
}

.why__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto;
  border: 1px solid rgba(var(--blue-rgb), 0.25);
  display: grid;
  place-items: center;
  background: rgba(var(--blue-rgb), 0.08);
  position: relative;
  z-index: 1;
  transition: border-color 0.2s ease;
}

.why__icon {
  width: 26px;
  height: 26px;
  color: var(--blue-800);
  display: block;
}

.why__circle span {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 1.5rem;
  color: var(--ink);
}

.why__circle::after {
  display: none;
}

.why__item:hover {
  border-color: rgba(var(--blue-rgb), 0.35);
}

.why__item:hover .why__circle {
  border-color: rgba(var(--blue-rgb), 0.4);
}

.why__item:hover .why__circle::after {
  display: none;
}

.why__item:hover h3 {
  color: var(--blue-800);
}

.why__item:hover p {
  color: var(--blue-800);
}

.why__grid.is-visible .why__item {
  animation: none;
}
.why__item h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--ink);
}

.why__item p {
  color: #818181;
}

.why__note {
  margin-top: 50px;
  color: #818181;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  font-size: 1rem;
}

@keyframes whyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ringPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.92);
  }
  60% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@media (max-width: 1080px) {
  header.glass-nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  header.glass-nav nav {
    display: flex;
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  header.glass-nav nav::-webkit-scrollbar {
    display: none;
  }

  header.glass-nav nav a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-height: 42px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(var(--blue-rgb), 0.1);
    background: rgba(var(--blue-rgb), 0.04);
    white-space: nowrap;
  }

  header.glass-nav nav > a:not(:first-child),
  header.glass-nav nav > .nav-item:not(:first-child) > a {
    padding-left: 14px;
  }

  header.glass-nav nav > a:not(:first-child)::before,
  header.glass-nav nav > .nav-item:not(:first-child) > a::before {
    display: none;
  }

  .nav-actions {
    order: 2;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    width: 100%;
    margin: 0;
  }

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

  .features__card + .features__card {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .support-steps__grid {
    grid-template-columns: 1fr;
  }

  .support-mosaic__tile:nth-child(2),
  .support-mosaic__tile:nth-child(3) {
    transform: none;
  }

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

  .about__media {
    order: 2;
  }

  .why__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }

  .service-detail__inner {
    grid-template-columns: 1fr;
    gap: clamp(20px, 5vw, 40px);
  }
}

@media (max-width: 720px) {
  header.glass-nav {
    border-radius: 0;
    padding: 12px 16px;
  }

  .nav-actions .cta {
    display: none;
  }

  .hero {
    padding-top: 0;
  }

  .hero__kicker {
    padding-left: 0;
  }

  .hero__content {
    min-height: 90vh;
    padding-top: 140px;
    padding-bottom: 120px;
  }

  .hero__dots {
    bottom: 18px;
  }

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

  .service-detail,
  .service-list {
    padding: clamp(40px, 10vw, 70px) clamp(16px, 6vw, 24px);
  }

  .service-list__item {
    padding-left: 40px;
  }
}

@media (max-width: 520px) {
  body {
    line-height: 1.6;
  }

  .hero-card {
    min-height: 320px;
  }

  .about__photo {
    height: 280px;
  }

  .personale__photo {
    height: 280px;
  }

  .brands__grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .brand-card {
    height: 120px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }
}

@media (max-width: 900px) {
  .team__grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .team-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .team-card__photo {
    min-height: 320px;
  }
}

/* === Mobile optimizations === */
@media (max-width: 900px) {
  header.glass-nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  header.glass-nav nav {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  header.glass-nav nav::-webkit-scrollbar {
    display: none;
  }

  header.glass-nav nav a {
    font-size: 0.84rem;
    white-space: nowrap;
  }

  header.glass-nav nav > a:not(:first-child)::before,
  header.glass-nav nav > .nav-item:not(:first-child) > a::before {
    display: none;
  }

  .nav-actions {
    order: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .nav-actions .pill {
    padding: 6px 10px;
    font-size: 0.82rem;
  }

  .hero {
    max-height: none;
  }

  .hero__content {
    min-height: auto;
    padding-top: clamp(110px, 18vw, 140px);
    padding-bottom: clamp(80px, 14vw, 120px);
  }

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

  .page-hero__actions,
  .policy-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 420px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions .cta,
  .hero__actions .ghost-btn,
  .page-hero__actions .cta,
  .page-hero__actions .ghost-btn,
  .policy-actions .cta,
  .policy-actions .ghost-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .services__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .brands__grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .hero__grid {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .hero__inner {
    min-height: auto;
  }

  .hero-card__content {
    padding: clamp(140px, 28vw, 200px) 18px;
  }

  .hero-card__text {
    max-width: 380px;
  }

  .page-hero {
    padding: clamp(58px, 11vw, 72px) 0 clamp(28px, 6vw, 40px);
    min-height: auto;
  }

  .page-hero--chi-siamo {
    padding: clamp(54px, 10vw, 68px) 0 clamp(24px, 5vw, 36px);
  }

  .page-hero__lead {
    font-size: 1.02rem;
  }

  .page-hero--compact .page-hero__content {
    margin-top: 90px;
  }

  .services-focus {
    padding: clamp(32px, 8vw, 56px);
  }

  .services-focus::after {
    height: 120px;
  }

  .service-card__image {
    height: 260px;
  }

  .contact {
    padding: clamp(70px, 12vw, 110px) clamp(16px, 5vw, 28px);
  }

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

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

  .form__actions .cta,
  .form__actions .pill {
    width: 100%;
    text-align: center;
  }

  .iso__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .iso__logo {
    width: 110px;
    height: 110px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  header.glass-nav {
    padding: 10px 14px;
  }

  header.glass-nav nav {
    gap: 8px;
  }

  .brand-logo {
    width: 150px;
    height: auto;
  }

  .hero__content h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

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

  .features__card {
    padding: 24px 20px;
    min-height: 240px;
  }

  .reviews__grid {
    gap: 14px;
  }

  .page-intro {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .team-card__photo {
    min-height: 240px;
  }

  .photo-gallery {
    padding: clamp(40px, 10vw, 80px) clamp(16px, 6vw, 28px);
  }

  .support-mosaic__tile {
    padding: 16px;
  }

  .contact__info,
  .contact__form-wrap {
    width: 100%;
  }

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

  .footer__links--primary a:not(:last-child)::after {
    margin-left: 10px;
  }

  .footer__social {
    order: 3;
  }
}

@media (max-width: 520px) {
  .hero__content {
    padding-top: 96px;
    padding-bottom: 80px;
  }

  .nav-actions {
    width: 100%;
    gap: 8px;
  }

  .nav-actions .pill {
    width: 100%;
    text-align: center;
  }

  .hero-card__content {
    padding: 120px 16px;
  }

  .service-card__image {
    height: 220px;
  }

  .page-hero--compact .page-hero__content {
    margin-top: 70px;
  }

  .brands {
    padding: clamp(60px, 12vw, 110px) clamp(16px, 5vw, 28px);
  }

  .brands__grid {
    gap: 12px;
  }

  .iso__content h3 {
    font-size: 1.4rem;
  }
}
