:root {
  --ink: #101820;
  --ink-soft: #263342;
  --muted: #667587;
  --line: #dbe4ea;
  --paper: #f7f9f7;
  --white: #ffffff;
  --teal: #126b6f;
  --teal-dark: #0e4e52;
  --gold: #c99a45;
  --green-soft: #dfeee7;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 190px;
  min-width: 150px;
}

.brand-logo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 650;
}

.nav a,
.header-action {
  opacity: 0.92;
}

.nav-item {
  position: relative;
  padding: 22px 0;
}

.dropdown {
  position: absolute;
  top: 58px;
  left: 50%;
  min-width: 292px;
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  backdrop-filter: blur(14px);
}

.dropdown a {
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 750;
}

.dropdown a:hover {
  background: #eef5f2;
  color: var(--teal-dark);
}

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

.service-page .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
  backdrop-filter: blur(14px);
}

.header-action {
  padding: 12px 16px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("/assets/hero-consulenza-strategica.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.94) 0%, rgba(16, 24, 32, 0.78) 45%, rgba(16, 24, 32, 0.38) 100%),
    linear-gradient(0deg, rgba(16, 24, 32, 0.92) 0%, rgba(16, 24, 32, 0) 46%);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.diagnosis h2 {
  margin: 0;
  font-weight: 800;
  line-height: 1.02;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(46px, 8vw, 96px);
}

.hero-copy {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

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

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.hero-proof span {
  min-width: 104px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.positioning {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.positioning-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0;
}

.positioning p {
  max-width: 990px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
  font-weight: 750;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.metrics-copy h2,
.proof-copy h2,
.founder-copy h2,
.diagnosis h2 {
  font-size: clamp(34px, 5vw, 60px);
}

.section-copy p:not(.eyebrow),
.metrics-copy p,
.proof-copy p,
.founder-copy p,
.diagnosis p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.method-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 8px 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.method-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step {
  color: var(--teal);
  font-weight: 800;
}

.method-list strong {
  font-size: 22px;
}

.method-list p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.metrics-band {
  width: 100%;
  margin: 0;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(440px, 1fr);
  gap: clamp(42px, 8vw, 98px);
  align-items: center;
  background: #eaf1ed;
}

.dashboard {
  min-height: 430px;
  padding: clamp(20px, 4vw, 36px);
  border: 1px solid #cddbd3;
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.dash-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.dash-head span,
.dash-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.dash-grid div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfcfb;
}

.dash-grid strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(28px, 5vw, 44px);
  color: var(--teal-dark);
}

.chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 12px;
  height: 118px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.chart span {
  display: block;
  min-height: 24px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--gold), var(--teal));
}

.section-heading {
  max-width: 820px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.services-preview {
  padding-bottom: clamp(54px, 8vw, 98px);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.service-card-grid article {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.service-card-grid h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.12;
}

.service-card-grid p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.service-card-grid a {
  color: var(--teal-dark);
  font-weight: 800;
}

.service-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 156px 0 78px;
}

.service-hero-inner {
  max-width: 940px;
}

.service-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.02;
  font-weight: 800;
}

.service-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.service-layout {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(70px, 9vw, 116px);
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(34px, 7vw, 88px);
  padding: clamp(42px, 7vw, 76px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-intro h2,
.content-block h2,
.service-cta h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
}

.service-intro p,
.content-block p,
.service-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: clamp(48px, 7vw, 80px);
}

.content-block {
  min-height: 286px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.content-block h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.content-block p {
  margin-top: 18px;
}

.content-block ul,
.service-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.content-block li,
.service-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.content-block li::before,
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.service-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 48px;
}

.service-index-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.service-index-card h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.service-index-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-index-card .button {
  width: fit-content;
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: clamp(48px, 7vw, 80px);
  padding: clamp(28px, 5vw, 48px);
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
}

.service-cta p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.objective-section {
  padding-bottom: clamp(42px, 7vw, 82px);
}

.objective-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.objective-grid a {
  min-height: 118px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 24, 32, 0.06);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.12;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.objective-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  color: var(--teal-dark);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pillars article {
  min-height: 292px;
  padding: 28px;
  background: var(--white);
}

.icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  font-size: 22px;
}

.pillars h3 {
  margin: 28px 0 12px;
  font-size: 24px;
}

.pillars p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.win-section {
  width: 100%;
  margin: 0;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: var(--white);
}

.win-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.win-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.win-grid article {
  min-height: 360px;
  padding: 28px;
  background: #142331;
}

.win-grid h3 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.18;
}

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

.win-grid li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.win-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.proof-rows {
  display: grid;
  gap: 12px;
}

.proof-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.proof-row:last-child {
  border-bottom: 1px solid var(--line);
}

.proof-row span {
  color: var(--muted);
  font-size: 18px;
}

.proof-row strong {
  color: var(--teal-dark);
  font-size: clamp(20px, 3vw, 30px);
  text-align: right;
}

.audience-section {
  padding-top: 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.audience-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.audience-grid span {
  color: var(--teal);
  font-weight: 800;
}

.audience-grid h3 {
  margin: 52px 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.audience-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
  padding-top: 0;
}

.founder-image {
  min-height: 620px;
  border-radius: 6px;
  background:
    linear-gradient(0deg, rgba(16, 24, 32, 0.16), rgba(16, 24, 32, 0.16)),
    url("/assets/founder-consulenza-strategica.jpg") center / cover;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 800;
  border-bottom: 2px solid var(--gold);
}

.diagnosis {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  padding: clamp(34px, 6vw, 58px);
  border-radius: 6px;
  color: var(--white);
  background: var(--ink);
}

.diagnosis p {
  color: rgba(255, 255, 255, 0.72);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
  min-height: 118px;
  line-height: 1.5;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.lead-form select option {
  color: var(--ink);
}

.form-note {
  margin: 0;
  font-size: 12px;
}

.form-note.is-success {
  color: #c9f0d9;
}

.form-note.is-error {
  color: #ffd0c8;
}

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

.privacy-check {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.45;
}

.privacy-check input {
  width: auto;
  min-height: auto;
  margin-top: 2px;
  accent-color: var(--gold);
}

.privacy-check a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  margin-top: 24px;
  padding: clamp(48px, 7vw, 82px) max(18px, calc((100vw - 1180px) / 2)) 34px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, 1fr));
  gap: clamp(28px, 5vw, 62px);
}

.footer-logo {
  width: min(260px, 100%);
  border-radius: 2px;
}

.footer-brand p {
  max-width: 360px;
  margin: 22px 0;
  line-height: 1.6;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.legal-page {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 132px 0 72px;
}

.legal-hero {
  padding: clamp(34px, 6vw, 58px) 0;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.legal-content {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.legal-content h2 {
  margin: 20px 0 0;
  font-size: clamp(22px, 3vw, 30px);
}

.legal-content p,
.legal-content li {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.legal-content a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.95fr);
  gap: 18px;
  align-items: center;
  width: min(1120px, calc(100vw - 32px));
  padding: 20px;
  border: 1px solid rgba(18, 107, 111, 0.24);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 80px rgba(16, 24, 32, 0.22);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

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

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

.cookie-eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border: 1px solid rgba(18, 107, 111, 0.24);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(18, 107, 111, 0.08);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-banner strong {
  display: block;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.08;
}

.cookie-banner p {
  max-width: 66ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-policy-links a {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  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: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 70px;
  padding: 10px;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: 8px;
  background: #f2f6f4;
  cursor: pointer;
}

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

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

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

.cookie-toggle input:checked + .cookie-toggle-ui {
  border-color: rgba(18, 107, 111, 0.58);
  background: var(--teal);
}

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

.cookie-toggle input:focus-visible + .cookie-toggle-ui {
  outline: 3px solid rgba(18, 107, 111, 0.22);
  outline-offset: 3px;
}

.cookie-toggle b {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.1;
  text-transform: uppercase;
}

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

.cookie-toggle.is-required {
  cursor: not-allowed;
  background: rgba(18, 107, 111, 0.07);
}

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

.cookie-actions button,
.cookie-reopen {
  font: inherit;
  cursor: pointer;
}

.cookie-actions button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(16, 24, 32, 0.14);
  border-radius: 6px;
  color: var(--ink);
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  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(18, 107, 111, 0.52);
  color: var(--teal-dark);
  transform: translateY(-1px);
}

.cookie-actions .accept {
  border-color: var(--teal);
  color: #ffffff;
  background: var(--teal);
}

.cookie-actions .accept:hover {
  color: #ffffff;
  background: var(--teal-dark);
}

.cookie-reopen {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 79;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(18, 107, 111, 0.24);
  border-radius: 50%;
  color: var(--teal-dark);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-reopen:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(18, 107, 111, 0.22);
}

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

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .split,
  .metrics-band,
  .proof-section,
  .founder-section,
  .diagnosis,
  .service-intro,
  .service-cta {
    grid-template-columns: 1fr;
  }

  .metrics-band {
    padding-inline: 18px;
  }

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

  .objective-grid,
  .win-grid,
  .audience-grid,
  .service-card-grid,
  .service-index-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .objective-grid a,
  .win-grid article,
  .audience-grid article {
    min-height: auto;
  }

  .founder-image {
    min-height: 420px;
  }

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

  .cookie-banner {
    grid-template-columns: 1fr;
    width: min(680px, calc(100vw - 28px));
    max-height: calc(100dvh - 28px);
    overflow-y: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    gap: 12px;
  }

  .brand {
    width: 132px;
  }

  .header-action {
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-inner {
    padding-bottom: 46px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .pillars,
  .dash-grid {
    grid-template-columns: 1fr;
  }

  .pillars article {
    min-height: auto;
  }

  .proof-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .proof-row strong {
    text-align: left;
  }

  .diagnosis {
    width: calc(100% - 24px);
    padding: 24px;
  }

  .service-hero {
    padding-top: 122px;
  }

  .service-cta .button {
    width: 100%;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .cookie-banner {
    bottom: 14px;
    gap: 12px;
    padding: 14px;
  }

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

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

  .cookie-actions button {
    min-height: 42px;
  }

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