:root {
  --ink: #393157;
  --muted: #393157;
  --soft: #f1f1f1;
  --line: #f1f1f1;
  --paper: #ffffff;
  --white: #ffffff;
  --accent: #cb1e54;
  --wash: #f1f1f1;
  --rose-wash: #f1f1f1;
  --ink-wash: #f1f1f1;
  --shadow: 0 24px 60px rgba(57, 49, 87, 0.12);
  --header-height: 84px;
}

@property --service-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  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;
  }
}

.footer-about img {
  width: min(330px, 100%);
  height: auto;
  padding: 0;
  border-radius: 4px;
  background: transparent;
  filter: brightness(0) invert(1);
}

.cursor-dot,
.cursor-ring,
.cursor-trail {
  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.18s ease, height 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.cursor-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(203, 30, 84, 0.14), 0 0 18px rgba(203, 30, 84, 0.42);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(203, 30, 84, 0.58);
  border-radius: 999px;
  background: rgba(203, 30, 84, 0.055);
  backdrop-filter: blur(2px);
}

.cursor-trail {
  width: var(--trail-size, 7px);
  height: var(--trail-size, 7px);
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(203, 30, 84, 0.32);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.cursor-trail.is-star {
  border-radius: 0;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(203, 30, 84, 0.22), 0 0 16px rgba(203, 30, 84, 0.38);
  clip-path: polygon(50% 0%, 61% 34%, 98% 35%, 68% 55%, 79% 91%, 50% 70%, 21% 91%, 32% 55%, 2% 35%, 39% 34%);
}

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

body.cursor-active .cursor-ring {
  width: 54px;
  height: 54px;
  border-color: rgba(203, 30, 84, 0.24);
  background: rgba(203, 30, 84, 0.12);
}

body.cursor-active .cursor-trail {
  background: var(--white);
}


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

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

.js .reveal-item {
  opacity: 1;
  transform: none;
  transition: none;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: auto;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 12px clamp(18px, 4vw, 58px);
  isolation: isolate;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(203, 30, 84, 0.12), transparent 24%, rgba(255, 255, 255, 0.06) 58%, transparent),
    linear-gradient(135deg, rgba(57, 49, 87, 0.96), rgba(203, 30, 84, 0.94));
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  box-shadow: 0 18px 48px rgba(57, 49, 87, 0.15);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, box-shadow 0.25s ease, min-height 0.25s ease, transform 0.25s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 58px);
  right: clamp(18px, 4vw, 58px);
  bottom: 0;
  z-index: -1;
  height: 2px;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(203, 30, 84, 0.86), transparent);
  pointer-events: none;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 72px;
  background:
    linear-gradient(90deg, rgba(203, 30, 84, 0.1), transparent 26%, rgba(255, 255, 255, 0.05) 58%, transparent),
    linear-gradient(135deg, rgba(57, 49, 87, 0.96), rgba(203, 30, 84, 0.94));
  box-shadow: 0 20px 54px rgba(57, 49, 87, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  width: auto;
  max-width: 430px;
  flex: 0 0 auto;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
}

.brand img {
  display: block;
  width: clamp(250px, 20vw, 330px);
  height: auto;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
}

.brand span {
  max-width: 138px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: capitalize;
}

.site-nav > a,
.nav-group > a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

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

.nav-cta {
  border-color: rgba(255, 255, 255, 0.72) !important;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-group {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 278px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border: 1px solid rgba(203, 30, 84, 0.12);
  border-radius: 16px;
  box-shadow: 0 22px 55px rgba(57, 49, 87, 0.16);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

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

.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-transform: capitalize;
}

.submenu a:hover {
  background: #f1f1f1;
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
  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);
}

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

.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: 3;
  color: rgba(57, 49, 87, 0.74);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.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(1000px, 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, 84, 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(241, 241, 241, 0.7);
}

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

.services-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, var(--wash), #ffffff);
}

.services-section::before,
.services-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.services-section::before {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(203, 30, 84, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(203, 30, 84, 0.07) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: 0.38;
  animation: servicesGridDrift 22s linear infinite;
}

.services-section::after {
  inset: 8% -12%;
  z-index: -1;
  background:
    radial-gradient(circle, rgba(203, 30, 84, 0.26) 0 2px, transparent 3px 100%),
    radial-gradient(circle, transparent 0 18px, rgba(203, 30, 84, 0.18) 19px 20px, transparent 21px 100%),
    radial-gradient(circle, transparent 0 10px, rgba(57, 49, 87, 0.12) 11px 12px, transparent 13px 100%),
    radial-gradient(circle, transparent 0 28px, rgba(203, 30, 84, 0.12) 29px 30px, transparent 31px 100%);
  background-size: 150px 150px, 260px 260px, 190px 190px, 340px 340px;
  background-position: 0 0, 40px 60px, 120px 20px, 180px 120px;
  opacity: 0.72;
  mask-image: linear-gradient(90deg, transparent, #393157 12%, #393157 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #393157 12%, #393157 88%, transparent);
  animation: bubblesDrift 24s linear infinite;
}

.services-section .section-heading,
.services-section .service-grid {
  position: relative;
  z-index: 1;
}

@keyframes servicesGridDrift {
  to {
    background-position: 78px 78px, 78px 78px;
  }
}

@keyframes bubblesDrift {
  to {
    background-position: 150px -150px, 300px -200px, 310px -170px, 520px -220px;
  }
}

.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, 84, 0.42);
  box-shadow: 0 18px 42px rgba(57, 49, 87, 0.08);
  transform: translateY(-4px);
}

.service-card {
  position: relative;
  min-height: 268px;
  padding: 24px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 70px;
  height: 73px;
  background: var(--service-icon) center / contain no-repeat;
  opacity: 0.92;
  transform: translateY(0) scale(1);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    conic-gradient(from var(--service-angle), rgba(203, 30, 84, 0), rgba(203, 30, 84, 0.62), rgba(203, 30, 84, 0.22), rgba(203, 30, 84, 0)) border-box;
  opacity: 0;
  transition: opacity 0.24s ease;
}

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

.service-card h3,
.service-card p,
.service-card .text-link {
  position: relative;
  z-index: 2;
}

.service-card:hover::before {
  opacity: 1;
  transform: translateY(-3px) scale(1.06);
}

.service-card:hover::after {
  opacity: 1;
  animation: serviceBorderSpin 3.4s linear infinite;
}

.service-card:nth-child(1),
.service-card:nth-child(5) {
  --service-icon: url("assets/developo-old/9-1.webp");
}

.service-card:nth-child(2),
.service-card:nth-child(6) {
  --service-icon: url("assets/developo-old/8-2.webp");
}

.service-card:nth-child(3) {
  --service-icon: url("assets/developo-old/10-1.webp");
}

.service-card:nth-child(4) {
  --service-icon: url("assets/developo-old/5-1.webp");
}

.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;
}

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

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

.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;
}

.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:hover .specialty-marquee-track {
  animation-play-state: paused;
}

.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 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(132px, 15vw, 180px);
  padding-bottom: clamp(56px, 8vw, 92px);
  background: linear-gradient(180deg, var(--rose-wash), #ffffff);
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 18% -12%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(203, 30, 84, 0.22) 0 2px, transparent 3px 100%),
    radial-gradient(circle, transparent 0 20px, rgba(203, 30, 84, 0.12) 21px 22px, transparent 23px 100%),
    radial-gradient(circle, transparent 0 12px, rgba(57, 49, 87, 0.1) 13px 14px, transparent 15px 100%);
  background-size: 150px 150px, 280px 280px, 210px 210px;
  background-position: 0 0, 60px 80px, 140px 30px;
  opacity: 0.42;
  mask-image: linear-gradient(90deg, transparent, #393157 16%, #393157 84%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #393157 16%, #393157 84%, transparent);
  animation: bubblesDrift 30s linear infinite;
}

.blog-hero > * {
  position: relative;
  z-index: 1;
}

.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, 84, 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(57, 49, 87, 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, 84, 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(57, 49, 87, 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(57, 49, 87, 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, 84, 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, 84, 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, 84, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 58px rgba(57, 49, 87, 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(57, 49, 87, 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: #f1f1f1;
  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, 84, 0.72);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(203, 30, 84, 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, 84, 0.24);
  border-radius: 6px;
  background: var(--rose-wash);
  color: var(--ink);
  font-weight: 800;
}

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

.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, 84, 0.42);
  box-shadow: 0 18px 42px rgba(57, 49, 87, 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-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

.contact-action {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 122px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(57, 49, 87, 0.14);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(57, 49, 87, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-action::after {
  content: "";
  position: absolute;
  inset: auto -28px -38px auto;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(203, 30, 84, 0.1);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.contact-action:hover {
  transform: translateY(-3px);
  border-color: rgba(203, 30, 84, 0.46);
  box-shadow: 0 20px 44px rgba(57, 49, 87, 0.13);
}

.contact-action:hover::after {
  transform: scale(1.16);
}

.contact-action-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: var(--rose-wash);
  color: var(--accent);
}

.contact-action-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.contact-action-text,
.contact-action strong,
.contact-action span {
  position: relative;
  z-index: 1;
  display: block;
}

.contact-action strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
}

.contact-action-text span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.contact-action-whatsapp {
  border-color: rgba(37, 211, 102, 0.32);
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.24);
}

.contact-action-whatsapp::after {
  background: rgba(255, 255, 255, 0.16);
}

.contact-action-whatsapp .contact-action-icon {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.contact-action-whatsapp strong,
.contact-action-whatsapp .contact-action-text span {
  color: var(--white);
}

.contact-action-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.72);
  box-shadow: 0 22px 48px rgba(37, 211, 102, 0.3);
}

.contact-action-call .contact-action-icon {
  background: rgba(57, 49, 87, 0.1);
  color: var(--ink);
}

.contact-form,
.contact-page-form {
  position: relative;
}

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

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

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

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: stretch;
  padding: var(--header-height) clamp(20px, 7vw, 96px) 0;
  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(57, 49, 87, 0.74), rgba(57, 49, 87, 0.58), rgba(57, 49, 87, 0.34)), url("assets/developo-old/white-label12-1.webp");
}

.websites-hero {
  background-image: linear-gradient(90deg, rgba(57, 49, 87, 0.78), rgba(57, 49, 87, 0.58), rgba(57, 49, 87, 0.32)), url("assets/developo-old/intro-banner-home-developo-doppio.webp");
}

.ecommerce-hero {
  background-image: linear-gradient(90deg, rgba(57, 49, 87, 0.78), rgba(57, 49, 87, 0.58), rgba(57, 49, 87, 0.32)), url("assets/developo-old/macchia-blu.webp");
}

.ads-hero {
  background-image: linear-gradient(90deg, rgba(57, 49, 87, 0.78), rgba(57, 49, 87, 0.58), rgba(57, 49, 87, 0.32)), url("assets/developo-old/intro-banner-home-developo-doppio.webp");
}

.seo-hero {
  background-image: linear-gradient(90deg, rgba(57, 49, 87, 0.78), rgba(57, 49, 87, 0.58), rgba(57, 49, 87, 0.32)), url("assets/developo-old/white-label12-1.webp");
}

.software-ai-hero {
  background-image: linear-gradient(90deg, rgba(57, 49, 87, 0.8), rgba(57, 49, 87, 0.6), rgba(57, 49, 87, 0.34)), url("assets/developo-old/intro-banner-home-developo-doppio.webp");
}

.portfolio-hero {
  background-image: linear-gradient(90deg, rgba(57, 49, 87, 0.8), rgba(57, 49, 87, 0.6), rgba(57, 49, 87, 0.34)), url("assets/developo-old/white-label12-1.webp");
}

.configurator-hero {
  background-image: linear-gradient(90deg, rgba(57, 49, 87, 0.8), rgba(57, 49, 87, 0.58), rgba(57, 49, 87, 0.32)), url("assets/developo-old/macchia-blu.webp");
}

.meta-hero {
  background-image: linear-gradient(90deg, rgba(57, 49, 87, 0.8), rgba(57, 49, 87, 0.6), rgba(57, 49, 87, 0.34)), url("assets/developo-old/intro-banner-home-developo-doppio.webp");
}

.why-hero {
  background-image: linear-gradient(90deg, rgba(57, 49, 87, 0.78), rgba(57, 49, 87, 0.58), rgba(57, 49, 87, 0.32)), url("assets/developo-old/intro-banner-home-developo-doppio.webp");
}

.page-hero > div {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1000px;
  padding-block: clamp(64px, 9vh, 118px);
}

.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: #f1f1f1;
  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 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--white);
}

.websites-intro::before,
.websites-highlight::before,
.websites-services::before {
  content: "";
  position: absolute;
  inset: 10% -12%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(203, 30, 84, 0.22) 0 2px, transparent 3px 100%),
    radial-gradient(circle, transparent 0 20px, rgba(203, 30, 84, 0.12) 21px 22px, transparent 23px 100%),
    radial-gradient(circle, transparent 0 12px, rgba(57, 49, 87, 0.1) 13px 14px, transparent 15px 100%);
  background-size: 150px 150px, 280px 280px, 210px 210px;
  background-position: 0 0, 60px 80px, 140px 30px;
  opacity: 0.38;
  mask-image: linear-gradient(90deg, transparent, #393157 16%, #393157 84%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #393157 16%, #393157 84%, transparent);
  animation: bubblesDrift 28s linear infinite;
}

.websites-intro > *,
.websites-highlight > *,
.websites-services > * {
  position: relative;
  z-index: 1;
}

.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(57, 49, 87, 0.045);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

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

.about-service-list article::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
  width: 34px;
  height: 34px;
  color: var(--accent);
  background: currentColor;
  opacity: 0.9;
  transform: translateY(0) scale(1);
  transition: transform 0.24s ease, opacity 0.24s ease;
  mask: var(--service-icon) center / contain no-repeat;
  -webkit-mask: var(--service-icon) center / contain no-repeat;
}

.about-service-list article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    conic-gradient(from var(--service-angle, 0deg), rgba(203, 30, 84, 0), rgba(203, 30, 84, 0.72), rgba(203, 30, 84, 0.2), rgba(203, 30, 84, 0)) border-box;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.about-service-list article:nth-child(1) {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='13' rx='2'/%3E%3Cpath d='M8 21h8'/%3E%3Cpath d='M12 17v4'/%3E%3C/svg%3E");
}

.about-service-list article:nth-child(2) {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 4h12v5H6z'/%3E%3Cpath d='M6 15h12v5H6z'/%3E%3Cpath d='M12 9v6'/%3E%3Cpath d='M9 12h6'/%3E%3C/svg%3E");
}

.about-service-list article:nth-child(3) {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16'/%3E%3Cpath d='M4 17h16'/%3E%3Ccircle cx='8' cy='7' r='2'/%3E%3Ccircle cx='16' cy='17' r='2'/%3E%3C/svg%3E");
}

.about-service-list article:nth-child(4) {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='7'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 2v3'/%3E%3Cpath d='M12 19v3'/%3E%3Cpath d='M2 12h3'/%3E%3Cpath d='M19 12h3'/%3E%3C/svg%3E");
}

.about-service-list article:nth-child(5) {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6h16v12H4z'/%3E%3Cpath d='m4 8 8 5 8-5'/%3E%3Cpath d='M8 18v2'/%3E%3Cpath d='M16 18v2'/%3E%3C/svg%3E");
}

.about-service-list article:nth-child(6) {
  --service-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.45' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10.5' cy='10.5' r='5.5'/%3E%3Cpath d='m15 15 5 5'/%3E%3Cpath d='M8 10.5h5'/%3E%3Cpath d='M10.5 8v5'/%3E%3C/svg%3E");
}

.about-service-list h3,
.about-service-list p {
  position: relative;
  z-index: 2;
}

.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, 84, 0.42);
  box-shadow: 0 18px 42px rgba(57, 49, 87, 0.09);
  transform: translateY(-4px);
}

.about-service-list article:hover::before {
  opacity: 1;
  transform: translateY(-3px) scale(1.06);
}

.about-service-list article:hover::after {
  opacity: 1;
  animation: serviceBorderSpin 3.4s linear infinite;
}

@keyframes serviceBorderSpin {
  to {
    --service-angle: 360deg;
  }
}

.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 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--rose-wash);
}

.websites-highlight::before {
  opacity: 0.2;
  animation-duration: 28s;
}

.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(57, 49, 87, 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: 400;
}

.websites-services {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--white);
}

.websites-services::before {
  inset: 14% -12%;
  opacity: 0.14;
  animation-duration: 32s;
}

.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, 84, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(57, 49, 87, 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, 84, 0.42);
  box-shadow: 0 18px 42px rgba(57, 49, 87, 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, 84, 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(57, 49, 87, 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, 84, 0.42);
  box-shadow: 0 18px 44px rgba(57, 49, 87, 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(57, 49, 87, 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(57, 49, 87, 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(57, 49, 87, 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: #f1f1f1;
}

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

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

.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, 30, 84, 0) 100%);
}

.marquee-row::after {
  right: 0;
  background: linear-gradient(270deg, var(--accent) 0%, rgba(203, 30, 84, 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;
}

.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);
}

.case-study-card h3 {
  margin-top: 0;
}

.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-radius: 8px;
  color: var(--white);
  background: #393157;
}

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

.case-metrics span {
  color: #f1f1f1;
  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: #393157;
  box-shadow: 0 18px 48px rgba(57, 49, 87, 0.16);
}

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

.configurator-stage::before {
  content: "";
  position: absolute;
  inset: 58px 54px 42px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(203, 30, 84, 0.98), rgba(57, 49, 87, 0.94));
  box-shadow: 28px 28px 0 rgba(57, 49, 87, 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: #f1f1f1;
  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(57, 49, 87, 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);
  }
}

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

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

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

.cta-band p:not(.section-kicker) {
  max-width: 680px;
  color: #f1f1f1;
  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: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(57, 49, 87, 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, 84, 0.42);
  box-shadow: 0 18px 42px rgba(57, 49, 87, 0.09);
  transform: translateY(-4px);
}

.review-card-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 16px;
  align-items: center;
}

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

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

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

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

.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: #393157;
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: clamp(24px, 4vw, 56px);
  padding: clamp(42px, 6vw, 78px) clamp(20px, 6vw, 82px) 0;
  overflow: hidden;
  border-radius: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(203, 30, 84, 0.22), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(203, 30, 84, 0.24), transparent 32%),
    linear-gradient(135deg, #393157 0%, #393157 56%, #393157 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 -24px 70px rgba(57, 49, 87, 0.12);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, transparent, #393157 18%, transparent 92%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #393157 18%, transparent 92%);
  opacity: 0.34;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.footer-column img {
  width: 390px;
  max-width: 100%;
  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: rgba(255, 255, 255, 0.78);
  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: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
}

.footer-column a:hover {
  color: #cb1e54;
}

.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: #cb1e54;
}

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

.share-linkedin:hover {
  background: #cb1e54;
}

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

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

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

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  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(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  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, 84, 0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  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(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.78);
  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: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: #cb1e54;
  box-shadow: 0 16px 34px rgba(203, 30, 84, 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: #cb1e54;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(203, 30, 84, 0.42);
}

.floating-contact-toggle:focus-visible {
  outline: 3px solid rgba(203, 30, 84, 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(241, 241, 241, 0.7);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(57, 49, 87, 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 strong,
.floating-contact-menu small {
  display: block;
}

.floating-contact-menu small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  text-transform: none;
}

.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: #cb1e54;
}

.floating-contact-menu .whatsapp-action:hover {
  color: #cb1e54;
  background: rgba(203, 30, 84, 0.1);
}

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

.cookie-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 29;
  display: grid;
  gap: 14px;
  width: min(640px, calc(100vw - 32px));
  max-height: none;
  padding: clamp(18px, 3vw, 26px);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(57, 49, 87, 0.98), rgba(33, 28, 54, 0.98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(203, 30, 84, 0.34);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(14px);
}

.cookie-banner::before {
  content: "";
  position: fixed;
  inset: -100vh -100vw;
  z-index: -1;
  background: rgba(8, 7, 14, 0.62);
  pointer-events: none;
}

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

.cookie-reopen {
  background-image: url("assets/developo-old/cookies.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px 28px;
}

.cookie-reopen svg {
  opacity: 0;
}

.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(241, 241, 241, 0.9);
  border-radius: 50%;
  color: var(--accent);
  background: var(--white) url("assets/developo-old/cookies.png") center / 28px 28px no-repeat;
  box-shadow: 0 16px 34px rgba(57, 49, 87, 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, 84, 0.42);
  box-shadow: 0 18px 42px rgba(203, 30, 84, 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-banner strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 18px;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.cookie-banner a {
  color: #ff7aa1;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-preferences {
  display: grid;
  gap: 8px;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.cookie-option strong {
  margin: 0 0 2px;
  font-size: 14px;
  text-transform: none;
}

.cookie-option span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.cookie-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

.cookie-option input:disabled {
  opacity: 0.62;
}

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

.cookie-actions button {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 12px;
}

.cookie-actions button:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.18);
}

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

.cookie-actions .accept:hover {
  border-color: #e33a6d;
  background: #e33a6d;
}

@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) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    max-height: calc(100vh - 96px);
    overflow: auto;
    align-items: stretch;
    justify-content: stretch;
    padding: 12px;
    background: rgba(57, 49, 87, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    box-shadow: 0 22px 50px rgba(57, 49, 87, 0.22);
    backdrop-filter: blur(14px);
  }

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

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

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

  .submenu a {
    color: #f1f1f1;
  }

  .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) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    inset: 0 0 auto;
    min-height: 70px;
    padding: 9px 12px;
    border-radius: 0;
  }

  .brand {
    max-width: 190px;
    gap: 0;
  }

  .brand img {
    width: 178px;
  }

  .brand span {
    max-width: 92px;
    font-size: 10px;
  }

  .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;
  }

  .legal-toc {
    position: static;
  }

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

  .contact-page-form .form-row,
  .contact-quick-actions,
  .contact-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: 50px;
  }

  .cookie-banner {
    width: min(100vw - 24px, 640px);
    padding: 16px;
    gap: 12px;
  }

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

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

  .blog-meta {
    display: grid;
  }
}
