:root {
  --ink: #000000;
  --muted: #686868;
  --soft: #dddddd;
  --line: #dddddd;
  --paper: #ffffff;
  --white: #ffffff;
  --accent: #cb1e50;
  --wash: #f7f7f7;
  --rose-wash: #fbf1f4;
  --ink-wash: #f2f2f2;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.6;
}

@media (pointer: fine) {
  body.cursor-ready,
  body.cursor-ready a,
  body.cursor-ready button,
  body.cursor-ready input,
  body.cursor-ready textarea,
  body.cursor-ready select,
  body.cursor-ready label,
  body.cursor-ready summary {
    cursor: none;
  }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.18s ease, width 0.2s ease, height 0.2s ease, transform 0.08s ease;
}

.cursor-dot {
  width: 42px;
  height: 42px;
  border: 2px solid #000000;
  border-radius: 999px;
  background:
    #ffffff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M12.7 15.4V7.3a2.1 2.1 0 0 1 4.2 0v7.4m0-2.5a2.1 2.1 0 0 1 4.2 0v3.1m0-2a2.05 2.05 0 0 1 4.1.1v3.6m-12.5-1.6-1.7-1.8a2.2 2.2 0 0 0-3.2 3l6.2 7.2c1.2 1.4 2.9 2.2 4.8 2.2h.9c3.4 0 6.2-2.8 6.2-6.2v-4.6' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16.9 14.7v2.8M21.1 15.3v2.6' stroke='%23000' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E")
    center / 28px 28px no-repeat;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.cursor-ring {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08);
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}

body.cursor-active .cursor-ring {
  width: 68px;
  height: 68px;
  border-color: rgba(0, 0, 0, 0.36);
  background: rgba(255, 255, 255, 0.34);
}

body.cursor-active .cursor-dot {
  width: 46px;
  height: 46px;
  transform: translate3d(-50%, -50%, 0) scale(0.96);
  background-color: #ffffff;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(203, 30, 80, 0.10), transparent 30%),
    rgba(255, 255, 255, 0.96);
  color: var(--ink);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.62s ease, visibility 0.62s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  animation: loaderReveal 0.65s ease both;
}

.loader-logo {
  width: min(210px, 58vw);
  height: auto;
  filter: none;
}

.loader-mark i {
  position: relative;
  display: block;
  width: min(210px, 58vw);
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(203, 30, 80, 0.12);
}

.loader-mark i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: inherit;
  background: var(--accent);
  transform-origin: left center;
  animation: loaderBar 1.75s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

body.is-leaving .page-loader {
  opacity: 1;
  visibility: visible;
}

@keyframes loaderReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes loaderBar {
  0% {
    transform: scaleX(0);
  }

  58% {
    transform: scaleX(0.82);
  }

  100% {
    transform: scaleX(1);
  }
}

img {
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.1));
}

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

.js .reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2.2vw, 28px);
  min-height: 90px;
  padding: 14px clamp(20px, 4vw, 58px);
  color: var(--white);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(203, 30, 80, 0.98) 0%, rgba(176, 28, 73, 0.98) 44%, rgba(30, 25, 28, 0.96) 100%);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, box-shadow 0.25s ease, min-height 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 78px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(23, 21, 23, 0.95) 0%, rgba(150, 28, 65, 0.96) 54%, rgba(203, 30, 80, 0.96) 100%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  width: clamp(138px, 13vw, 162px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: capitalize;
}

.site-nav > a,
.nav-group > a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 11px;
  border: 0;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-group > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.68;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.nav-group:hover > a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.nav-group:hover > a::after,
.nav-group:focus-within > a::after {
  opacity: 1;
  transform: translateY(1px) rotate(225deg);
}

.nav-cta {
  margin-left: 6px;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 6px !important;
  color: var(--accent);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.site-nav .nav-cta:hover {
  color: var(--accent);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(255, 255, 255, 0.18);
}

.nav-group {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 306px;
  padding: 8px;
  border: 1px solid rgba(221, 221, 221, 0.72);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.submenu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  border-left: 1px solid rgba(221, 221, 221, 0.72);
  border-top: 1px solid rgba(221, 221, 221, 0.72);
  background: rgba(255, 255, 255, 0.98);
  transform: translateX(-50%) rotate(45deg);
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.submenu a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 11px 12px;
  border-radius: 9px;
  text-transform: capitalize;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.submenu a:hover {
  background: rgba(203, 30, 80, 0.1);
  color: var(--accent);
  transform: translateX(2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
}

.slides,
.slide {
  min-height: 100vh;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 122px clamp(20px, 7vw, 96px) 92px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.5)), var(--slide-image);
  background-size: cover;
  background-position: center;
  transform: translateY(var(--hero-offset, 0)) scale(1.04);
  transition: transform 6s ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
}

.slide.is-active::before {
  transform: translateY(var(--hero-offset, 0)) scale(1);
}

.slide-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--rose-wash);
  color: var(--accent);
  font-size: 13px;
  font-weight: 880;
  letter-spacing: 0;
  text-transform: none;
}

.slide h1,
.slide h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.slide p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.button.primary {
  background: var(--accent);
  color: var(--white);
}

.button.primary:hover {
  box-shadow: 0 14px 34px rgba(203, 30, 80, 0.24);
}

.button.ghost {
  border-color: var(--ink);
  color: var(--ink);
}

.button.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.page-hero .button.ghost {
  border-color: rgba(255, 255, 255, 0.76);
  color: var(--white);
}

.page-hero .button.ghost:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.slider-controls {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 7vw, 96px);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.slide-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.slide-dots {
  display: flex;
  gap: 8px;
}

.slide-dot {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  cursor: pointer;
}

.slide-dot.is-active {
  background: var(--accent);
}

section:not(.hero) {
  padding: clamp(68px, 9vw, 124px) clamp(20px, 6vw, 82px);
  border-top: 1px solid rgba(221, 221, 221, 0.7);
}

.intro-section {
  background: var(--white);
}

.services-section {
  background: linear-gradient(180deg, var(--wash), #ffffff);
}

.clients-section {
  background: var(--ink-wash);
}

.news-section {
  background: linear-gradient(180deg, #ffffff, var(--wash));
}

.intro-grid,
.marketing-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

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

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 36px;
}

.section-heading h2 {
  max-width: 860px;
}

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

.service-card,
.marketing-list article,
.why-grid div,
.news-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.service-card:hover,
.marketing-list article:hover,
.why-grid div:hover,
.news-grid article:hover {
  border-color: rgba(203, 30, 80, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-card {
  min-height: 268px;
  padding: 24px;
}

.service-card span {
  display: block;
  margin-bottom: 54px;
  color: var(--accent);
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.marketing-section {
  background: var(--rose-wash);
}

.marketing-section > div:first-child p {
  max-width: 610px;
  font-size: 18px;
}

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

.marketing-list article {
  padding: 24px;
}

.clients-section h2 {
  max-width: 850px;
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.client-strip span {
  display: grid;
  place-items: center;
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
  transition: color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.client-strip span:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.why-section {
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, var(--rose-wash));
}

.why-section h2,
.why-section strong {
  color: var(--ink);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.why-grid div {
  padding: 24px;
  background: var(--white);
  border-color: var(--line);
}

.news-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.text-link {
  color: var(--accent);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.news-grid article {
  min-height: 190px;
  padding: 24px;
  display: grid;
  align-content: start;
}

.news-grid article p {
  margin-top: 0;
  color: var(--accent);
  font-weight: 900;
}

.news-grid article p + p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.news-grid article h3 {
  margin-bottom: 0;
}

.news-grid article .text-link {
  margin-top: 22px;
}

.marketing-news-page .news-grid article {
  min-height: 300px;
}

.blog-page {
  background: linear-gradient(180deg, #ffffff, var(--wash));
}

.blog-hero {
  padding-top: clamp(132px, 15vw, 180px);
  padding-bottom: clamp(56px, 8vw, 92px);
  background: linear-gradient(180deg, var(--rose-wash), #ffffff);
}

.blog-hero h1 {
  max-width: 1030px;
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.blog-hero .lead {
  max-width: 820px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 650;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.blog-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(203, 30, 80, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.blog-content {
  display: grid;
  gap: 28px;
}

.blog-content section {
  padding: 0;
  border: 0;
}

.blog-content h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.5vw, 42px);
}

.blog-content p {
  margin: 0 0 16px;
  font-size: 18px;
}

.blog-content ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.blog-content li {
  padding-left: 20px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  font-size: 17px;
  font-weight: 720;
}

.blog-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
}

.blog-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.blog-box h3 {
  margin-bottom: 14px;
}

.blog-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-box a {
  color: var(--muted);
  font-weight: 800;
}

.blog-box a:hover {
  color: var(--accent);
}

.blog-cta {
  background: var(--ink);
  color: var(--white);
}

.blog-cta p,
.blog-cta a {
  color: var(--white);
}

.blog-cta p {
  opacity: 0.84;
}

.contact-page-main {
  background: linear-gradient(180deg, #ffffff, var(--wash));
}

.legal-page {
  padding-top: 84px;
  background: linear-gradient(180deg, #ffffff, var(--wash));
}

.legal-hero {
  padding: clamp(96px, 12vw, 156px) clamp(20px, 7vw, 96px) clamp(54px, 8vw, 86px);
  background: linear-gradient(180deg, var(--rose-wash), #ffffff);
}

.legal-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.legal-hero p:not(.section-kicker) {
  max-width: 780px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.legal-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(203, 30, 80, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
}

.legal-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.055);
}

.legal-toc strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-toc a {
  color: var(--muted);
  font-weight: 800;
}

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

.legal-document {
  display: grid;
  gap: 18px;
}

.legal-block {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.045);
}

.legal-block h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3.4vw, 40px);
}

.legal-block h3 {
  margin-top: 20px;
}

.legal-block p {
  margin: 0 0 14px;
  font-size: 17px;
}

.legal-block ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.legal-block li {
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  font-weight: 700;
}

.legal-note {
  border-color: rgba(203, 30, 80, 0.26);
  background: var(--rose-wash);
}

.legal-note p {
  color: var(--ink);
  font-weight: 800;
}

.legal-updated {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-hero {
  padding-top: clamp(132px, 15vw, 178px);
  background: radial-gradient(circle at 84% 12%, rgba(203, 30, 80, 0.14), transparent 34%), linear-gradient(180deg, var(--rose-wash), #ffffff 86%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: end;
}

.contact-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.contact-hero p:not(.section-kicker) {
  max-width: 760px;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 650;
}

.contact-quick-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(203, 30, 80, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.08);
}

.contact-quick-card strong {
  font-size: 22px;
  line-height: 1.15;
}

.contact-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-quick-actions a {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.contact-quick-actions a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.contact-page-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.07);
}

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

.contact-page-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 15px 16px;
  color: var(--ink);
  background: #fbfbfb;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
  border-color: rgba(203, 30, 80, 0.72);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(203, 30, 80, 0.1);
}

.contact-page-form textarea {
  min-height: 164px;
  resize: vertical;
}

.contact-page-form .acceptance {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  text-transform: none;
}

.contact-page-form .acceptance input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.contact-submit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-submit-row p {
  max-width: 470px;
  margin: 0;
  font-size: 14px;
}

.form-status {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(203, 30, 80, 0.24);
  border-radius: 6px;
  background: var(--rose-wash);
  color: var(--ink);
  font-weight: 800;
}

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

.form-status.is-success {
  border-color: rgba(27, 132, 83, 0.26);
  background: #edf9f3;
  color: #125436;
}

.form-status.is-error {
  border-color: rgba(203, 33, 80, 0.34);
  background: #fbecee;
  color: #7c1230;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

button:disabled,
input[type="submit"]:disabled {
  cursor: progress;
  opacity: 0.72;
}

.contact-info-panel {
  display: grid;
  gap: 14px;
}

.contact-info-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-info-card:hover {
  border-color: rgba(203, 30, 80, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.contact-info-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--rose-wash);
  color: var(--accent);
  font-weight: 900;
}

.contact-info-card p {
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--accent);
  font-weight: 900;
}

.contact-route {
  background: var(--rose-wash);
}

.contact-section {
  background: linear-gradient(180deg, var(--wash), #ffffff);
  color: var(--ink);
}

.contact-section h2,
.contact-section label {
  color: var(--ink);
}

.contact-section p {
  max-width: 600px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.about-page {
  padding-top: 84px;
}

.page-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(86px, 10vw, 138px) clamp(20px, 7vw, 96px);
  border-top: 0;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: 0;
  z-index: 1;
  width: 2px;
  height: 72px;
  overflow: hidden;
  border-radius: 999px;
  background:
    linear-gradient(180deg, transparent, var(--white), transparent),
    rgba(255, 255, 255, 0.28);
  background-repeat: no-repeat;
  background-size: 100% 30px, 100% 100%;
  background-position: 0 -34px, 0 0;
  animation: scrollCue 1.55s ease-in-out infinite;
}

.page-hero::after {
  content: "Scorri giù";
  position: absolute;
  right: calc(clamp(22px, 5vw, 72px) + 16px);
  bottom: max(0px, calc(clamp(50px, 5.8vw, 78px) - 50px));
  z-index: 1;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@keyframes scrollCue {
  0% {
    background-position: 0 -34px, 0 0;
  }

  100% {
    background-position: 0 78px, 0 0;
  }
}

.about-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.34)), url("assets/slide-design-sviluppo.jpg");
}

.websites-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.32)), url("assets/slide-sviluppo-marketing.jpg");
}

.ecommerce-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.32)), url("assets/slide-ecommerce.jpg");
}

.ads-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.32)), url("assets/slide-sviluppo-marketing.jpg");
}

.seo-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.32)), url("assets/slide-design-sviluppo.jpg");
}

.software-ai-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.34)), url("assets/slide-software-ai.jpg");
}

.portfolio-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.34)), url("assets/slide-design-sviluppo.jpg");
}

.configurator-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.32)), url("assets/slide-ecommerce.jpg");
}

.meta-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.34)), url("assets/slide-sviluppo-marketing.jpg");
}

.why-hero {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.32)), url("assets/web-agency-blimago-team.jpeg");
}

.page-hero > div {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p:not(.section-kicker) {
  max-width: 630px;
  margin: 24px 0 34px;
  color: #dddddd;
  font-size: clamp(20px, 2.2vw, 28px);
}

.about-intro,
.websites-intro,
.name-story,
.numbers-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.about-intro {
  background: var(--white);
}

.websites-intro {
  background: var(--white);
}

.about-copy p {
  margin-top: 0;
  font-size: 18px;
}

.about-services {
  background: var(--rose-wash);
}

.about-services-heading {
  margin-bottom: 34px;
}

.about-services-heading > div {
  max-width: 880px;
}

.about-services-heading p:not(.section-kicker) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 770;
}

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

.about-service-list article,
.approach-grid article,
.competence-grid article,
.numbers-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.045);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.about-service-list article {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.about-service-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 990;
}

.about-service-list p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 770;
}

.about-service-list article:hover,
.approach-grid article:hover,
.competence-grid article:hover,
.numbers-grid div:hover {
  border-color: rgba(203, 30, 80, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.name-story {
  background: linear-gradient(180deg, #ffffff, var(--wash));
}

.story-card {
  padding: 28px;
  border-left: 4px solid var(--accent);
  background: var(--white);
}

.story-card p:first-child {
  margin-top: 0;
}

.story-card p:last-child {
  margin-bottom: 0;
}

.approach-section {
  background: var(--white);
}

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

.approach-grid article {
  padding: 28px;
}

.approach-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  font-weight: 900;
}

.competence-section {
  background: var(--ink-wash);
}

.competence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.competence-grid article {
  padding: 24px;
}

.competence-grid h3 {
  color: var(--accent);
}

.competence-grid ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.competence-grid li {
  color: var(--muted);
  font-weight: 700;
}

.websites-highlight {
  background: var(--rose-wash);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.highlight-grid article,
.websites-card-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.045);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.highlight-grid article {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.highlight-grid span {
  color: var(--accent);
  font-weight: 900;
}

.highlight-grid h3,
.websites-card-grid h3 {
  margin-bottom: 0;
}

.highlight-grid p,
.websites-card-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 730;
}

.websites-services {
  border-top-color: rgba(0, 0, 0, 0.08);
  color: var(--ink);
  background: #ffffff;
}

.websites-services h2,
.websites-services h3 {
  color: var(--ink);
}

.websites-services p:not(.section-kicker),
.websites-services li,
.websites-services .section-heading > p,
.websites-services .websites-card-grid p {
  color: var(--muted);
}

.websites-services .section-kicker {
  color: var(--accent);
  background: var(--rose-wash);
}

.websites-services .websites-card-grid article {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.045);
}

.websites-services .websites-card-grid article:hover {
  border-color: rgba(203, 32, 81, 0.32);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.07);
}

.software-solution-section {
  border-top-color: rgba(0, 0, 0, 0.08);
  color: var(--ink);
  background: #ffffff;
}

.software-solution-section h2,
.software-solution-section h3,
.software-process-section h2,
.software-process-section h3 {
  color: var(--ink);
}

.software-solution-section p:not(.section-kicker),
.software-solution-section .section-heading > p,
.software-solution-section .highlight-grid p,
.software-process-section p:not(.section-kicker),
.software-process-section .section-heading > p,
.software-process-section .process-step p {
  color: var(--muted);
}

.software-solution-section .section-kicker,
.software-process-section .section-kicker {
  color: #cb2150;
  background: #fbecee;
}

.software-solution-section .highlight-grid article {
  border-color: rgba(203, 33, 80, 0.14);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.055);
}

.software-solution-section .highlight-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  color: #cb2150;
  background: #fbecee;
}

.software-process-section {
  border-top-color: rgba(0, 0, 0, 0.08);
  color: var(--ink);
  background: #f2f2f2;
}

.software-process-section .process-step {
  border-color: rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.055);
}

.software-process-section .process-step span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #ffffff;
  background: #cb2150;
  font-size: 22px;
  line-height: 1;
}

.software-case-study-section .section-kicker {
  color: #cb2150;
  background: #372929;
}

.software-case-study-section {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: #000000;
}

.software-case-study-section h2,
.software-case-study-section h3,
.software-case-study-section p:not(.section-kicker),
.software-case-study-section .section-heading > p {
  color: var(--white);
}

.software-case-study-section .case-study-card {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: #393939;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.software-case-study-section .case-study-card h3 {
  color: var(--white);
}

.software-case-study-section .case-study-card p {
  color: rgba(255, 255, 255, 0.82);
}

.software-case-study-section .case-metrics div {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: #242424;
}

.software-case-study-section .case-metrics span {
  color: #dddddd;
}

.local-pages-section {
  background: var(--rose-wash);
}

.local-links-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
  gap: 18px;
}

.local-links-grid article {
  padding: 26px;
  border: 1px solid rgba(203, 30, 80, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.055);
}

.local-links-grid h3 {
  margin-top: 0;
}

.local-links-grid ul {
  columns: 2;
  column-gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-links-grid li {
  break-inside: avoid;
  margin-bottom: 9px;
}

.local-links-grid a {
  color: var(--ink);
  font-weight: 820;
  text-decoration: none;
}

.local-links-grid a:hover {
  color: var(--accent);
}

.websites-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.websites-card-grid article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.highlight-grid article:hover,
.websites-card-grid article:hover {
  border-color: rgba(203, 30, 80, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.web-marketing-detail {
  background: var(--ink-wash);
}

.web-marketing-detail .story-card {
  margin-bottom: 28px;
}

.websites-card-grid.compact article {
  min-height: 190px;
}

.portfolio-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: var(--rose-wash);
}

.portfolio-summary div {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(203, 30, 80, 0.16);
  border-radius: 8px;
  background: var(--white);
}

.portfolio-summary strong {
  color: var(--accent);
  font-size: 24px;
  line-height: 1.1;
}

.portfolio-summary span {
  color: var(--muted);
  font-weight: 760;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.portfolio-tags span,
.portfolio-services span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--rose-wash);
  color: var(--accent);
  font-size: 13px;
  font-weight: 860;
}

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

.portfolio-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.055);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.portfolio-card:hover {
  border-color: rgba(203, 30, 80, 0.42);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 463 / 339;
  object-fit: cover;
  background: var(--ink-wash);
  filter: none;
}

.portfolio-card > div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.portfolio-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
}

.portfolio-card p {
  margin: 0;
}

.portfolio-category {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-card p:not(.portfolio-category) {
  color: var(--muted);
  font-weight: 730;
}

.portfolio-services {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

.portfolio-services span {
  min-height: 30px;
  padding: 6px 10px;
  background: var(--ink-wash);
  color: var(--ink);
  font-size: 12px;
}

.image-split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background: var(--white);
}

.image-split-section p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  font-weight: 720;
}

.image-split-section img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.13);
}

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

.software-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.software-hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 900;
}

.software-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: var(--white);
}

.software-metric {
  min-height: 180px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, var(--rose-wash));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.055);
}

.software-metric strong {
  color: var(--accent);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.software-metric span {
  color: var(--muted);
  font-weight: 760;
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: stretch;
  background: var(--ink-wash);
}

.problem-list,
.progress-panel,
.process-step,
.case-study-card,
.faq-list details,
.project-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.055);
}

.problem-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.problem-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  color: var(--muted);
  font-weight: 760;
}

.problem-list li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.progress-panel {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
}

.progress-panel h3 {
  margin: 0;
}

.progress-item {
  display: grid;
  gap: 8px;
}

.progress-item span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 840;
}

.progress-bar {
  height: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9e9e9;
}

.progress-bar i {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.software-problem-grid {
  position: relative;
  overflow: hidden;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.028) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.022) 1px, transparent 1px),
    linear-gradient(135deg, #f7f7f7 0%, #ffffff 48%, #fff5f8 100%);
  background-size: 86px 86px, 86px 86px, auto;
}

.software-problem-grid .problem-copy {
  position: relative;
  display: grid;
  align-content: center;
}

.software-problem-grid .problem-copy > p:not(.section-kicker) {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 720;
  line-height: 1.65;
}

.software-problem-grid .problem-list {
  gap: 10px;
  padding: 8px;
  border-color: rgba(203, 32, 81, 0.16);
  background: rgba(255, 255, 255, 0.82);
}

.software-problem-grid .problem-list li {
  min-height: 92px;
  padding: 18px 18px 18px 52px;
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: 8px;
  background: #ffffff;
}

.software-problem-grid .problem-list li::before {
  top: 22px;
  left: 20px;
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 6px rgba(203, 32, 81, 0.11);
}

.software-problem-grid .problem-list strong,
.solution-flow strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 920;
  text-transform: uppercase;
}

.software-problem-grid .problem-list span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.software-solution-panel {
  gap: 18px;
  align-content: stretch;
  border-color: rgba(203, 32, 81, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, #fff8fa 100%);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.09);
}

.software-solution-panel > p:not(.section-kicker) {
  margin: -6px 0 2px;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.6;
}

.solution-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 2px;
}

.solution-flow div {
  min-height: 126px;
  padding: 15px;
  border: 1px solid rgba(203, 32, 81, 0.16);
  border-radius: 8px;
  background: #ffffff;
}

.solution-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 26px;
  border-radius: 999px;
  background: rgba(203, 32, 81, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
}

.solution-flow strong {
  margin-top: 11px;
}

.solution-flow small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.38;
}

.software-solution-panel .progress-item {
  padding-top: 13px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.software-solution-panel .progress-item span {
  color: var(--ink);
  font-size: 14px;
}

.marquee-section {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(38px, 5vw, 62px) 0;
  background: var(--accent);
}

section.marquee-section[aria-label="Clienti"],
section.marquee-section[aria-label="Partner tecnologici"] {
  padding-top: clamp(20px, calc(1.6vw + 20px), 46px);
  padding-bottom: clamp(20px, calc(1.6vw + 20px), 46px);
}

.marquee-label {
  display: block;
  width: fit-content;
  margin: 0 clamp(20px, 6vw, 82px) clamp(24px, 3vw, 34px);
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.marquee-row {
  position: relative;
  overflow: hidden;
  width: 100vw;
}

.marquee-row + .marquee-row {
  margin-top: clamp(24px, 4vw, 46px);
}

.marquee-row::before,
.marquee-row::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(74px, 12vw, 180px);
  pointer-events: none;
}

.marquee-row::before {
  left: 0;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(203, 32, 81, 0) 100%);
}

.marquee-row::after {
  right: 0;
  background: linear-gradient(270deg, var(--accent) 0%, rgba(203, 32, 81, 0) 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-left 28s linear infinite;
}

.marquee-track.reverse {
  animation-name: marquee-right;
}

.marquee-track span {
  flex: 0 0 auto;
  margin: 0 clamp(30px, 4vw, 64px);
  color: var(--white);
  font-size: clamp(16px, 1.3vw, 21px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.specialty-marquee {
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  border-top: 0 !important;
  background: var(--ink);
}

.specialty-marquee::before,
.specialty-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(70px, 10vw, 160px);
  pointer-events: none;
}

.specialty-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink), rgba(47, 47, 47, 0));
}

.specialty-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink), rgba(47, 47, 47, 0));
}

.specialty-marquee-track {
  display: flex;
  width: max-content;
  gap: 32px;
  padding: 18px 0;
  animation: specialtyMarquee 44s linear infinite;
  will-change: transform;
}

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

.specialty-marquee a {
  position: relative;
  flex: 0 0 auto;
  color: var(--white);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.specialty-marquee a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.specialty-marquee a[aria-hidden="true"] {
  pointer-events: none;
}

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

.process-step {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.process-step span {
  color: var(--accent);
  font-size: 30px;
  font-weight: 950;
}

.case-study-grid {
  display: grid;
  gap: 16px;
}

.case-study-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 20px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-color: var(--line);
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.055);
}

.case-study-card h3 {
  margin-top: 0;
  color: var(--ink);
}

.case-study-card p {
  color: var(--muted);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.case-metrics div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(203, 32, 81, 0.14);
  border-radius: 8px;
  color: var(--ink);
  background: #f7f7f7;
}

.case-metrics strong {
  color: var(--accent);
  font-size: 26px;
  line-height: 1;
}

.case-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.faq-section {
  background: var(--ink-wash);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 720;
}

.project-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--rose-wash);
}

.project-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 36px);
}

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

.project-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.project-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 760;
}

.project-form .checkbox-label input {
  width: auto;
  margin-top: 4px;
}

.project-form button {
  cursor: pointer;
}

.configurator-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: var(--white);
}

.configurator-device {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #2f2f2f;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.configurator-stage {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f7dce5);
}

.configurator-stage::before {
  content: "";
  position: absolute;
  inset: 58px 54px 42px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(203, 30, 80, 0.98), rgba(47, 47, 47, 0.94));
  box-shadow: 28px 28px 0 rgba(0, 0, 0, 0.16);
  transform: skewY(-7deg) rotate(-2deg);
}

.configurator-stage::after {
  content: "2D / 3D";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.configurator-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.configurator-controls span {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #dddddd;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 840;
}

.meta-funnel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.meta-funnel-step {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.055);
}

.meta-funnel-step span {
  color: var(--accent);
  font-size: 30px;
  font-weight: 950;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

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

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

  to {
    transform: translateX(0);
  }
}

@keyframes specialtyMarquee {
  from {
    transform: translateX(0);
  }

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

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 80px);
  color: var(--white);
  background: #2f2f2f;
}

.cta-band > div {
  max-width: 820px;
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p:not(.section-kicker) {
  max-width: 680px;
  color: #dddddd;
  font-size: 18px;
}

.reviews-section {
  background: linear-gradient(180deg, #ffffff, var(--wash));
  overflow: hidden;
}

.reviews-heading {
  align-items: flex-end;
}

.reviews-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 740;
}

.reviews-heading strong {
  color: var(--ink);
  font-weight: 900;
}

.reviews-slider {
  display: grid;
  gap: 24px;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  transition: transform 0.5s ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-height: 320px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f1f1f1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.055);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.review-card:hover {
  border-color: rgba(203, 30, 80, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.review-card-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.review-source {
  width: 40px;
  height: auto;
  justify-self: end;
  display: block;
  filter: none;
}

.review-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.review-stars {
  margin-top: 9px;
  color: #cb2150;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.reviews-controls > button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--accent);
  background: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.reviews-controls > button:hover {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent);
}

.reviews-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.review-dot {
  width: 28px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--soft);
  cursor: pointer;
}

.review-dot.is-active {
  background: var(--accent);
}

.numbers-section {
  background: linear-gradient(180deg, var(--rose-wash), #ffffff);
  grid-template-columns: 1fr;
}

.numbers-section > div:first-child {
  max-width: 760px;
}

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

.numbers-grid div {
  min-height: 150px;
  display: grid;
  align-content: center;
  padding: 22px;
}

.numbers-grid strong {
  color: var(--accent);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
}

.numbers-grid span {
  margin-top: 12px;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.privacy-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #9a9a9a;
}

.site-footer {
  padding: 56px clamp(20px, 6vw, 82px) 0;
  color: var(--white);
  background: #2f2f2f;
  border-top: 1px solid #2f2f2f;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 58px);
}

.footer-column img {
  width: 132px;
  margin-bottom: 22px;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column p {
  margin: 0;
  color: #dddddd;
  font-size: 15px;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  list-style: disc;
}

.footer-column li {
  padding-left: 4px;
}

.footer-column li::marker {
  color: var(--accent);
}

.footer-column a {
  color: #dddddd;
  font-size: 15px;
  font-weight: 700;
}

.footer-column a:hover {
  color: var(--white);
}

.share-block {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.share-block strong,
.reserved-link {
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.share-links a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.share-links a:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.share-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.share-facebook:hover {
  background: #1877f2;
}

.share-x:hover {
  background: #000000;
}

.share-linkedin:hover {
  background: #0a66c2;
}

.share-tiktok:hover {
  background: #111111;
}

.share-email:hover {
  background: var(--accent);
}

.reserved-link {
  display: inline-flex;
  margin-top: 18px;
}

.footer-bottom {
  margin-top: 42px;
  padding: 20px 0;
  border-top: 1px solid rgba(221, 221, 221, 0.24);
}

.footer-bottom p {
  margin: 0;
  color: #dddddd;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 800;
}

.floating-contact {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 30;
}

.floating-contact-bubble {
  position: absolute;
  right: 0;
  bottom: calc(100% + 16px);
  width: min(330px, calc(100vw - 40px));
  min-height: 96px;
  padding: 18px 46px 18px 18px;
  border: 1px solid rgba(221, 221, 221, 0.82);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.floating-contact-bubble-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(203, 30, 80, 0.18);
  border-radius: 50%;
  color: var(--accent);
  background: var(--rose-wash);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.floating-contact-bubble-close:hover {
  color: var(--white);
  background: var(--accent);
  transform: rotate(90deg);
}

.floating-contact-bubble span::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  vertical-align: -0.12em;
  background: var(--accent);
  animation: typing-cursor 0.8s steps(1) infinite;
}

.floating-contact-bubble.is-complete span::after {
  display: none;
}

.floating-contact-bubble::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -9px;
  width: 18px;
  height: 18px;
  border-right: 1px solid rgba(221, 221, 221, 0.82);
  border-bottom: 1px solid rgba(221, 221, 221, 0.82);
  background: var(--white);
  transform: rotate(45deg);
}

.floating-contact.is-open .floating-contact-bubble {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}

.floating-contact-bubble.is-dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
}

.floating-contact-toggle {
  min-width: 142px;
  height: 64px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 22px 8px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.34);
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-contact-toggle strong {
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.floating-contact.is-open .floating-contact-toggle,
.floating-contact-toggle:hover {
  background: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.42);
}

.floating-contact-toggle:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.32);
  outline-offset: 3px;
}

.floating-contact-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  display: grid;
  gap: 8px;
  min-width: 190px;
  padding: 10px;
  border: 1px solid rgba(221, 221, 221, 0.7);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

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

.floating-contact-menu a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 14px;
  text-transform: uppercase;
}

.floating-contact-menu a:hover {
  color: var(--accent);
  background: var(--rose-wash);
}

.floating-contact-menu span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--white);
  background: var(--accent);
}

.floating-contact-menu svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.floating-contact-menu .whatsapp-action span {
  background: #25d366;
}

.floating-contact-menu .whatsapp-action:hover {
  color: #128c7e;
  background: rgba(37, 211, 102, 0.1);
}

.floating-contact-menu .floating-contact-write span {
  background: var(--ink);
}

@keyframes typing-cursor {
  50% {
    opacity: 0;
  }
}

.cookie-banner {
  position: fixed;
  left: 50%;
  top: 50%;
  bottom: auto;
  z-index: 42;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 14px;
  width: min(760px, calc(100vw - 40px));
  max-width: 760px;
  max-height: calc(100vh - 48px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 20px;
  border: 1px solid rgba(203, 32, 81, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transform: translate(-50%, -50%);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-reopen {
  position: fixed;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 28;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(221, 221, 221, 0.9);
  border-radius: 50%;
  color: var(--accent);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.cookie-reopen:hover {
  border-color: rgba(203, 30, 80, 0.42);
  box-shadow: 0 18px 42px rgba(203, 30, 80, 0.18);
  transform: translateY(-2px);
}

.cookie-reopen.is-hidden {
  display: none;
}

.cookie-reopen svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cookie-reopen circle {
  fill: currentColor;
  stroke: none;
}

.cookie-copy {
  display: block;
}

.cookie-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 6px 9px;
  border: 1px solid rgba(203, 32, 81, 0.2);
  border-radius: 999px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(203, 32, 81, 0.06);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 17px;
  text-transform: uppercase;
}

.cookie-banner p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.cookie-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-policy-links a {
  color: var(--accent);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.cookie-toggle {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 76px;
  padding: 10px;
  border: 1px solid rgba(221, 221, 221, 0.9);
  border-radius: 8px;
  background: rgba(248, 248, 248, 0.72);
  cursor: pointer;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-toggle-ui {
  position: relative;
  width: 44px;
  height: 24px;
  border: 1px solid rgba(26, 26, 26, 0.22);
  border-radius: 999px;
  background: #d7d7d7;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cookie-toggle-ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease;
}

.cookie-toggle input:checked + .cookie-toggle-ui {
  border-color: rgba(203, 32, 81, 0.56);
  background: var(--accent);
}

.cookie-toggle input:checked + .cookie-toggle-ui::after {
  transform: translateX(20px);
}

.cookie-toggle input:focus-visible + .cookie-toggle-ui {
  outline: 3px solid rgba(203, 32, 81, 0.22);
  outline-offset: 3px;
}

.cookie-toggle b {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.cookie-toggle small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.cookie-toggle.is-required {
  cursor: not-allowed;
  background: rgba(203, 32, 81, 0.05);
}

.cookie-toggle.is-required .cookie-toggle-ui {
  opacity: 0.8;
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-content: center;
  min-width: 0;
}

.cookie-actions button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.cookie-actions button:hover {
  border-color: rgba(203, 32, 81, 0.5);
  color: var(--accent);
  transform: translateY(-1px);
}

.cookie-actions .accept {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent);
}

.cookie-actions .accept:hover {
  color: var(--white);
  background: #a71842;
}

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

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

  .js .reveal-item {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .site-header {
    inset: 0 0 auto;
    min-height: 82px;
    padding: 12px 16px;
    border-radius: 0;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    max-height: calc(100vh - 96px);
    overflow-x: hidden;
    overflow-y: auto;
    align-items: stretch;
    justify-content: stretch;
    gap: 6px;
    padding: 12px;
    background: rgba(20, 20, 20, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

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

  .site-nav > a,
  .nav-group > a {
    min-height: 44px;
    padding: 0 12px;
  }

  .nav-group > a::after {
    margin-left: auto;
  }

  .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .submenu {
    position: static;
    display: grid;
    min-width: 0;
    margin: 0 0 8px;
    padding: 0 0 0 12px;
    border: 0;
    background: transparent;
    color: var(--white);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .submenu::before {
    display: none;
  }

  .submenu a {
    color: #dddddd;
  }

  .submenu a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
  }

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

  .about-service-list,
  .highlight-grid,
  .websites-card-grid,
  .portfolio-summary,
  .portfolio-grid,
  .why-values-grid,
  .software-metrics,
  .process-grid,
  .competence-grid,
  .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-solution-grid,
  .case-study-card,
  .project-form-section,
  .configurator-preview,
  .blog-layout,
  .contact-hero-grid,
  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .blog-aside {
    position: static;
  }

  .review-card {
    flex-basis: calc((100% - 20px) / 2);
  }

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

@media (max-width: 760px) {
  .brand {
    width: 132px;
  }

  .slide {
    padding-top: 112px;
  }

  .slide h1,
  .slide h2 {
    font-size: 42px;
  }

  .intro-grid,
  .about-intro,
  .websites-intro,
  .image-split-section,
  .name-story,
  .numbers-section,
  .marketing-section,
  .contact-section,
  .cta-band,
  .section-heading,
  .news-header {
    grid-template-columns: 1fr;
    display: grid;
  }

  .reviews-heading {
    align-items: start;
  }

  .service-grid,
  .about-service-list,
  .approach-grid,
  .competence-grid,
  .highlight-grid,
  .websites-card-grid,
  .local-links-grid,
  .portfolio-summary,
  .portfolio-grid,
  .why-values-grid,
  .software-metrics,
  .process-grid,
  .case-metrics,
  .meta-funnel,
  .numbers-grid,
  .why-grid,
  .client-strip,
  .news-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .highlight-grid article,
  .websites-card-grid article,
  .portfolio-summary div,
  .software-metric,
  .process-step,
  .meta-funnel-step,
  .case-study-card {
    min-height: auto;
  }

  .problem-solution-grid,
  .legal-layout,
  .project-form-section,
  .configurator-preview {
    grid-template-columns: 1fr;
  }

  .solution-flow {
    grid-template-columns: 1fr;
  }

  .solution-flow div,
  .software-problem-grid .problem-list li {
    min-height: auto;
  }

  .legal-toc {
    position: static;
  }

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

  .contact-page-form .form-row,
  .contact-quick-actions {
    grid-template-columns: 1fr;
  }

  .local-links-grid ul {
    columns: 1;
  }

  .service-card span {
    margin-bottom: 28px;
  }

  .review-card {
    flex-basis: 100%;
    min-height: auto;
  }

  .reviews-controls {
    gap: 10px;
  }

  .review-dot {
    width: 18px;
  }

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

  .floating-contact {
    right: 16px;
    bottom: 16px;
  }

  .floating-contact-bubble {
    width: min(300px, calc(100vw - 32px));
    min-height: 112px;
  }

  .floating-contact-toggle {
    min-width: 132px;
    height: 60px;
  }

  .cookie-banner {
    left: 50%;
    top: 50%;
    bottom: auto;
    width: calc(100vw - 32px);
    grid-template-columns: 1fr;
    max-height: calc(100vh - 32px);
    overflow: auto;
    transform: translate(-50%, -50%);
  }

  .cookie-reopen {
    left: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-preference-list {
    grid-template-columns: 1fr;
  }

.blog-meta {
    display: grid;
  }
}

.not-found-page {
  min-height: 100vh;
  background: #070707;
  color: #ffffff;
}

.not-found-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 82vh;
  margin: 0 auto;
  padding: 170px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(32px, 6vw, 84px);
}

.not-found-copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(56px, 9vw, 126px);
  line-height: 0.9;
  color: #ffffff;
}

.not-found-copy p:not(.section-kicker) {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.not-found-panel {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(203, 32, 81, 0.24), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.not-found-panel > span {
  position: absolute;
  right: -18px;
  top: -36px;
  font-size: clamp(110px, 15vw, 190px);
  line-height: 1;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.055);
}

.not-found-panel h2 {
  position: relative;
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 44px);
}

.not-found-panel ul {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.not-found-panel li {
  padding-left: 20px;
  position: relative;
}

.not-found-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cb2051;
}

.not-found-panel a {
  color: #ffffff;
  text-decoration: none;
}

.not-found-panel a:hover {
  color: #cb2051;
}

@media (max-width: 900px) {
  .not-found-hero {
    grid-template-columns: 1fr;
    padding-top: 140px;
  }
}
