:root {
  --ink: #111514;
  --ink-soft: #323b38;
  --muted: #68716e;
  --paper: #ffffff;
  --paper-soft: #f5f7f4;
  --line: #dce2de;
  --forest: #151515;
  --forest-2: #e2602c;
  --signal: #e2602c;
  --signal-dark: #b9471e;
  --sky: #dcebf0;
  --night: #0b1110;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(9, 17, 15, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 16px 38px;
  color: #fff;
  background: rgba(8, 12, 11, 0.36);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 12, 11, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

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

.brand img {
  width: 104px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.88);
}

.main-nav a:hover {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  color: #fff;
  background: var(--signal);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.whatsapp-nav,
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: #1f9d58;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-weight: 800;
}

.whatsapp-nav {
  min-height: 38px;
  padding: 0 13px;
}

.whatsapp-nav:hover,
.whatsapp-button:hover {
  color: #fff;
  background: #178348;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}

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

.hero-bg {
  background-image: url("assets/hero-team-metafora-sportiva.png");
  background-position: center 42%;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 9, 8, 0.84) 0%, rgba(4, 9, 8, 0.58) 44%, rgba(4, 9, 8, 0.28) 100%),
    linear-gradient(0deg, rgba(4, 9, 8, 0.78) 0%, rgba(4, 9, 8, 0.12) 34%, rgba(4, 9, 8, 0.34) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 172px;
  padding-bottom: 190px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff9a68;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 890px;
  margin-bottom: 26px;
  font-size: 58px;
  line-height: 1.03;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: 40px;
  line-height: 1.12;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-text {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-text strong {
  color: #ff9a68;
  font-weight: 800;
}

.hero-actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: var(--signal);
  border-color: var(--signal);
}

.button-primary:hover {
  background: var(--signal-dark);
  border-color: var(--signal-dark);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: rgba(17, 21, 20, 0.12);
}

.hero .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), calc(100% - 48px));
  transform: translateX(-50%);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(4, 9, 8, 0.54);
  backdrop-filter: blur(14px);
}

.hero-bottom div {
  min-height: 118px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-bottom div:last-child {
  border-right: 0;
}

.hero-bottom strong,
.hero-bottom span {
  display: block;
}

.hero-bottom strong {
  margin-bottom: 6px;
  color: #ff9a68;
  font-size: 16px;
}

.hero-bottom span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.section {
  padding: 92px 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

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

.section-heading.narrow {
  max-width: 720px;
}

.section-heading p,
.copy-panel p,
.resources-copy p,
.contact-copy p,
.ai-intro p {
  color: var(--muted);
  font-size: 18px;
}

.problem-section {
  background: var(--paper);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.problem-grid article,
.method-steps article,
.resource-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.problem-grid article {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.problem-grid article::after,
.method-steps article::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: rgba(226, 96, 44, 0.08);
}

.problem-grid article:hover,
.method-steps article:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 96, 44, 0.4);
  box-shadow: 0 20px 44px rgba(9, 17, 15, 0.1);
}

.problem-grid article > span:not(.card-icon),
.method-steps span,
.path-copy span,
.result-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--forest-2);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.card-icon,
.step-icon,
.sport-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  margin-bottom: 18px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    var(--signal);
  border: 1px solid rgba(226, 96, 44, 0.5);
  border-radius: 24px;
  box-shadow: 0 18px 34px rgba(226, 96, 44, 0.22);
}

.card-icon svg,
.step-icon svg,
.sport-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon svg,
.step-icon svg {
  width: 50px;
  height: 50px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.media-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.copy-panel {
  max-width: 600px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--signal);
}

.origin-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 17, 16, 0.96), rgba(11, 17, 16, 0.88)),
    var(--night);
}

.origin-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: center;
}

.origin-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.origin-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 17, 16, 0.28), rgba(226, 96, 44, 0.08));
}

.origin-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.origin-copy {
  max-width: 720px;
}

.origin-copy .eyebrow {
  color: #ff9a68;
}

.origin-copy h2 {
  max-width: 680px;
}

.origin-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.origin-copy .origin-lead {
  color: #fff;
  font-size: 22px;
  line-height: 1.45;
}

.origin-copy strong {
  color: #ff9a68;
  font-weight: 800;
}

.origin-copy .button {
  margin-top: 12px;
}

.inline-link {
  color: var(--signal);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

.difference-section,
.paths-section,
.resources-section {
  background: var(--paper-soft);
}

.system-section {
  color: #fff;
  background: var(--night);
}

.system-section .eyebrow {
  color: #ff9a68;
}

.system-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.system-section .section-heading .button {
  margin-top: 12px;
}

.system-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

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

.system-map article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.system-map span,
.insight-preview-grid span,
.topic-grid span,
.article-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.system-map h3 {
  color: #fff;
}

.system-map p {
  color: rgba(255, 255, 255, 0.72);
}

.champions-section {
  background: #fff;
}

.champions-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.champions-layout > div:first-child p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.champions-cards {
  display: grid;
  gap: 14px;
}

.champions-cards article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.champions-cards strong,
.champions-cards span {
  display: block;
}

.champions-cards strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
}

.champions-cards span {
  color: var(--muted);
}

.difference-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  align-items: stretch;
}

.quote-block {
  display: flex;
  align-items: flex-end;
  min-height: 500px;
  padding: 34px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(226, 96, 44, 0.12), rgba(255, 255, 255, 0)),
    #fff;
  border: 1px solid rgba(226, 96, 44, 0.22);
  border-radius: var(--radius);
}

.quote-block p {
  margin: 0;
  font-size: 26px;
  line-height: 1.28;
}

.quote-block strong {
  color: var(--signal);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.role-grid article,
.path-card,
.lead-magnet,
.check-form,
.check-result,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.role-grid article {
  overflow: hidden;
}

.role-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.role-grid h3,
.role-grid p {
  padding: 0 22px;
}

.role-grid h3 {
  padding-top: 22px;
}

.role-grid p {
  padding-bottom: 24px;
  color: var(--muted);
}

.method-section {
  background: #fbfcfb;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.method-steps article {
  position: relative;
  min-height: 226px;
  padding: 26px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.method-steps p {
  color: var(--muted);
}

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

.section-cta {
  margin-top: 28px;
}

.section-heading .button,
.sport-layout .button,
.tb-dark-panel .button {
  margin-top: 16px;
}

.path-card {
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
}

.path-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.75fr 1fr;
}

.path-image {
  min-height: 240px;
  background: var(--line);
}

.path-image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.path-copy {
  padding: 24px;
}

.path-copy p {
  color: var(--muted);
}

.compact-paths .path-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--signal);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

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

.six-paths .path-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  min-height: 0;
  padding: 18px;
  align-items: stretch;
}

.six-paths .path-card img {
  width: 112px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius);
}

.six-paths .path-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
}

.six-paths .path-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.six-paths .path-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.compact-paths .path-card p {
  color: var(--muted);
}

.path-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  margin-top: 14px;
  padding: 0 12px;
  color: #fff;
  background: var(--signal);
  border: 1px solid var(--signal);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.path-card-button:hover {
  background: var(--signal-dark);
  border-color: var(--signal-dark);
}

.compact-paths .path-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.compact-paths .path-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 14px;
}

.compact-paths .path-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--signal);
  border-radius: 50%;
}

.sport-section {
  color: #fff;
  background: var(--night);
}

.sport-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: start;
}

.sport-layout .eyebrow {
  color: #ff9a68;
}

.sport-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.sport-points div {
  min-height: 152px;
  padding: 22px;
  background: #101b19;
}

.sport-points strong,
.sport-points span {
  display: block;
}

.sport-points .sport-icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: #ff9a68;
  background: linear-gradient(145deg, rgba(226, 96, 44, 0.22), rgba(226, 96, 44, 0.06));
  border-color: rgba(226, 96, 44, 0.4);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.sport-points strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
}

.sport-points span {
  color: rgba(255, 255, 255, 0.7);
}

.gallery-section {
  overflow: hidden;
  background: #fff;
}

.insights-section {
  background: var(--paper-soft);
}

.insights-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.insight-preview-grid,
.topic-grid,
.article-grid {
  display: grid;
  gap: 16px;
}

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

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

.insight-preview-grid article,
.topic-grid article,
.article-grid article {
  overflow: hidden;
  padding: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

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

.insight-preview-grid article > span,
.insight-preview-grid article > h3,
.insight-preview-grid article > p,
.insight-preview-grid article > a,
.article-grid article > span,
.article-grid article > h3,
.article-grid article > p,
.article-grid article > a {
  margin-left: 24px;
  margin-right: 24px;
}

.article-card-image {
  width: 100%;
  height: 178px;
  margin-bottom: 22px;
  object-fit: cover;
  background: var(--line);
}

.contact-copy .whatsapp-button {
  margin-top: 24px;
}

.insight-preview-grid p,
.topic-grid p,
.article-grid p {
  color: var(--muted);
}

.insights-page {
  background: var(--paper-soft);
}

.insights-hero {
  padding: 140px 0 78px;
  color: #fff;
  background: var(--night);
}

.insights-hero-layout {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 42px;
  align-items: center;
}

.insights-hero .eyebrow {
  color: #ffb18a;
}

.insights-hero h1 {
  max-width: 820px;
  font-size: 52px;
}

.insights-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.insights-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.topic-section {
  background: #fff;
}

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

.article-section {
  background: var(--paper-soft);
}

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

.article-page {
  background: #fff;
}

.article-hero {
  padding: 140px 0 78px;
  color: #fff;
  background: var(--night);
}

.article-hero-layout {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 42px;
  align-items: center;
}

.article-hero .eyebrow {
  color: #ffb18a;
}

.article-hero h1 {
  max-width: 840px;
  font-size: 52px;
}

.article-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.article-hero img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-content {
  background: #fff;
}

.article-body {
  max-width: 850px;
}

.article-body h2 {
  margin-top: 42px;
  font-size: 30px;
}

.article-body p,
.article-list li {
  color: var(--ink-soft);
  font-size: 18px;
}

.article-lead {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.5;
}

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

.article-list li {
  position: relative;
  padding-left: 30px;
}

.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--signal);
}

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

.article-image-grid img,
.article-wide-image img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(9, 17, 15, 0.12);
}

.article-image-grid img {
  height: 220px;
}

.article-wide-image {
  margin: 36px 0;
}

.article-wide-image img {
  height: 390px;
}

.article-callout {
  margin: 42px 0 30px;
  padding: 30px;
  color: #fff;
  background: var(--night);
  border-radius: var(--radius);
}

.article-callout h3 {
  color: #ffb18a;
}

.article-callout p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.gallery-section .section-heading {
  margin-bottom: 30px;
}

.gallery-cta {
  padding-bottom: 54px;
}

.gallery-marquee {
  width: 100%;
  overflow: hidden;
  padding: 54px 0;
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 0 18px 8px;
  animation: gallery-scroll 46s linear infinite;
}

.gallery-track img {
  width: 250px;
  height: 330px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(9, 17, 15, 0.14);
}

.sport-academy-gallery-section {
  overflow: hidden;
  background: var(--paper-soft);
}

.sport-academy-gallery-section .section-heading {
  margin-bottom: 0;
}

.sport-academy-gallery {
  padding: 30px 0 58px;
}

.sport-academy-gallery .gallery-track {
  animation-duration: 70s;
}

.sport-academy-gallery .gallery-track img {
  width: 360px;
  height: 240px;
}

.sport-academy-page .img-focus-aula {
  object-position: center 58%;
}

.sport-academy-page .img-focus-speaker {
  object-position: 58% 56%;
}

.sport-academy-page .img-focus-group {
  object-position: center 50%;
}

.sport-academy-page .img-focus-center-high {
  object-position: center 36%;
}

.sport-academy-page .img-focus-right {
  object-position: 62% center;
}

@keyframes gallery-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ai-section {
  background: var(--paper);
}

.ai-cta {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  color: #fff;
  background: var(--forest);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ai-cta .eyebrow {
  color: #ffb18a;
}

.ai-cta-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.ai-cta-media {
  overflow: hidden;
  border-radius: var(--radius);
}

.ai-cta-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.ai-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.ai-intro img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ai-tool {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
  align-items: start;
}

.check-form,
.check-result,
.check-side-panel,
.report-main-card,
.report-lead-card,
.report-method-card,
.report-actions-panel,
.area-card,
.answers-detail {
  padding: 28px;
}

.form-row {
  display: grid;
  gap: 14px;
}

.form-row.two {
  grid-template-columns: repeat(2, 1fr);
}

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

.optional-field {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5d0;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

input,
select {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  padding: 12px;
  resize: vertical;
}

.consent-group {
  display: grid;
  gap: 10px;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--signal);
}

.checkbox-field a {
  color: var(--signal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-box {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(226, 96, 44, 0.22);
  border-radius: var(--radius);
  background: rgba(226, 96, 44, 0.07);
}

.privacy-box h3,
.privacy-box p {
  margin: 0;
}

.privacy-box p {
  color: var(--muted);
  font-size: 14px;
}

.check-perception-box {
  margin-top: 22px;
  border-color: rgba(226, 96, 44, 0.3);
  background: rgba(226, 96, 44, 0.08);
}

.check-perception-box h3 {
  color: var(--signal-dark);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(226, 96, 44, 0.2);
  border-color: var(--forest-2);
}

.question-list {
  display: grid;
  gap: 18px;
  margin: 26px 0;
}

.range-question {
  gap: 12px;
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--line);
}

.range-question input[type="range"] {
  --range-progress: 44.444%;
  -webkit-appearance: none;
  appearance: none;
  min-height: 0;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--signal) var(--range-progress), #d8e1dc var(--range-progress));
  cursor: pointer;
}

.range-question input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 999px;
  background: transparent;
}

.range-question input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  margin-top: -8px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 6px 18px rgba(226, 96, 44, 0.36);
}

.range-question input[type="range"]::-moz-range-track {
  height: 8px;
  border-radius: 999px;
  background: #d8e1dc;
}

.range-question input[type="range"]::-moz-range-progress {
  height: 8px;
  border-radius: 999px;
  background: var(--signal);
}

.range-question input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 6px 18px rgba(226, 96, 44, 0.36);
}

.range-question input[type="range"]:focus-visible {
  outline: 3px solid rgba(226, 96, 44, 0.22);
  outline-offset: 7px;
}

.range-scale {
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.range-scale span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.range-scale span.is-active {
  color: var(--signal-dark);
}

.range-scale span.is-current {
  color: #fff;
  background: var(--signal);
  box-shadow: 0 4px 12px rgba(226, 96, 44, 0.28);
}

.range-question > [data-range-label] {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border: 1px solid rgba(226, 96, 44, 0.22);
  border-radius: 999px;
  background: rgba(226, 96, 44, 0.08);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.range-question > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.check-result {
  position: sticky;
  top: 98px;
  min-height: 430px;
  background: var(--forest);
  color: #fff;
}

.check-result p {
  color: rgba(255, 255, 255, 0.78);
}

.check-result .result-label {
  color: #ffb18a;
}

.result-meter {
  height: 12px;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.result-meter span {
  display: block;
  width: 46%;
  height: 100%;
  background: var(--signal);
  transition: width 240ms ease;
}

.check-result .button-secondary {
  color: var(--ink);
}

.check-result .inline-link {
  color: #fff;
}

.check-page {
  background: var(--paper-soft);
}

.legal-page {
  background: var(--paper-soft);
}

.legal-hero {
  padding: 150px 0 70px;
  color: #fff;
  background: var(--night);
}

.legal-hero h1 {
  max-width: 880px;
}

.legal-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.76);
}

.legal-content {
  max-width: 920px;
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin: 20px 0 0;
  font-size: 26px;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
}

.check-hero {
  padding: 140px 0 74px;
  color: #fff;
  background: var(--night);
}

.check-hero-layout {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: 42px;
  align-items: center;
}

.check-hero h1 {
  max-width: 760px;
  font-size: 50px;
}

.check-hero p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.check-hero .eyebrow {
  color: #ffb18a;
}

.check-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-tool-section {
  background: var(--paper-soft);
}

.ai-tool-page {
  align-items: start;
}

.check-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}

.check-form-wide {
  min-width: 0;
}

.form-block {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.form-block h3 {
  margin: 0;
}

.optional-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.scale-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
}

.scale-guide span {
  padding: 8px 10px;
  border: 1px solid rgba(226, 96, 44, 0.24);
  border-radius: var(--radius);
  color: var(--signal-dark);
  background: rgba(226, 96, 44, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.question-list-extended {
  gap: 20px;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.check-side-panel {
  position: sticky;
  top: 98px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: #fff;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.check-side-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.check-side-panel .result-label {
  color: #ffb18a;
}

.side-panel-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.side-panel-list span {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.form-intro {
  margin-bottom: 20px;
  color: var(--muted);
}

.report-page {
  background: var(--paper-soft);
}

.report-hero {
  padding: 140px 0 70px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 17, 16, 0.94), rgba(11, 17, 16, 0.76)),
    url("assets/ai-check.jpg") center/cover;
}

.report-hero-inner {
  max-width: var(--max);
}

.report-hero h1 {
  max-width: 760px;
  font-size: 54px;
}

.report-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.report-section {
  background: var(--paper-soft);
}

.report-empty {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: stretch;
}

.report-main-card,
.report-lead-card,
.report-method-card,
.report-actions-panel,
.area-card,
.answers-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.report-main-card {
  color: #fff;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.report-main-card p {
  color: rgba(255, 255, 255, 0.78);
}

.report-main-card .result-label {
  color: #ffb18a;
}

.report-score {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
}

.report-score span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.report-score strong {
  color: #fff;
  font-size: 54px;
  line-height: 1;
}

.report-meter {
  margin-top: 16px;
}

.report-lead-card dl {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.report-lead-card dl div {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.report-lead-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.report-lead-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.report-block {
  margin-top: 34px;
}

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

.area-card {
  display: grid;
  gap: 14px;
}

.area-card strong {
  color: var(--signal);
  font-size: 30px;
}

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

.area-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf1ee;
}

.area-meter span {
  display: block;
  height: 100%;
  background: var(--signal);
}

.report-two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.report-perception-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 22px;
  align-items: stretch;
  border-color: rgba(226, 96, 44, 0.28);
  background: rgba(226, 96, 44, 0.08);
}

.report-perception-card > div:first-child p:not(.eyebrow) {
  color: var(--ink-soft);
}

.report-recommendations {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.report-recommendations li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.report-recommendations li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--signal);
}

.answers-detail summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
}

.answer-list {
  display: grid;
  gap: 1px;
  margin-top: 20px;
  background: var(--line);
}

.answer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px;
  background: #fff;
}

.answer-row span {
  color: var(--ink-soft);
}

.answer-row strong {
  white-space: nowrap;
  color: var(--signal);
}

.report-actions-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
}

.resources-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 28px;
  align-items: start;
}

.resource-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.resource-list article {
  padding: 22px;
}

.resource-list p {
  color: var(--muted);
}

.lead-magnet {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lead-magnet img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.lead-magnet > div {
  padding: 28px;
}

.partners-section {
  overflow: hidden;
  background: var(--paper-soft);
}

.partners-section .section-heading {
  margin-bottom: 28px;
}

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logo-scroll 58s linear infinite;
}

.logo-set {
  display: flex;
  gap: 20px;
  padding: 28px 10px;
}

.logo-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 148px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 38px rgba(12, 14, 18, 0.08);
}

.logo-track img {
  display: block;
  max-width: 100%;
  max-height: 102px;
  object-fit: contain;
}

.landing-partners-section {
  background: var(--paper-soft);
}

.landing-partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.landing-partner-logos span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 38px rgba(12, 14, 18, 0.08);
}

.landing-partner-logos img {
  display: block;
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.mini-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-section {
  color: #fff;
  background: var(--night);
}

.contact-section .eyebrow {
  color: #ff9a68;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.quick-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.quick-choices span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--forest-2);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #070b0a;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-inner img {
  width: 92px;
}

.footer-inner p {
  margin: 0;
}

.footer-company {
  display: grid;
  gap: 6px;
}

.footer-company p:last-child {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
}

.footer-legal-links span {
  color: rgba(255, 255, 255, 0.28);
}

.footer-partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.footer-partner-logos span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 44px;
  padding: 7px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
}

.footer-partner-logos img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 30px;
  object-fit: contain;
}

.footer-inner a {
  color: #fff;
  font-weight: 700;
}

.path-card-link {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.path-card-link:hover {
  border-color: rgba(226, 96, 44, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.teambuilding-page .hero-bg {
  background-image: url("assets/team-building-video/web/hero-aula-metafora-sportiva-web.jpg");
  background-position: center;
}

.teambuilding-page .hero-content {
  max-width: 980px;
}

.teambuilding-page .hero-text {
  max-width: 900px;
}

.speech-page .hero-bg {
  background-image: url("assets/percorsi/percorso-speech.jpg");
  background-position: center 42%;
}

.speech-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 9, 8, 0.9) 0%, rgba(4, 9, 8, 0.64) 48%, rgba(4, 9, 8, 0.25) 100%),
    linear-gradient(0deg, rgba(4, 9, 8, 0.8) 0%, rgba(4, 9, 8, 0.14) 36%, rgba(4, 9, 8, 0.36) 100%);
}

.speech-page .hero-content {
  max-width: 1040px;
}

.speech-page .hero-text {
  max-width: 940px;
}

.formazione-page .hero-bg {
  background-image: url("assets/sport-academy-gallery/sport-academy-rossi-aula-01-web.webp");
  background-position: center 46%;
}

.autodifesa-page .hero-bg {
  background-image: url("assets/percorsi/percorso-autodifesa-in-rosa.jpg");
  background-position: center 38%;
}

.autodifesa-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 9, 8, 0.9) 0%, rgba(4, 9, 8, 0.66) 48%, rgba(4, 9, 8, 0.28) 100%),
    linear-gradient(0deg, rgba(4, 9, 8, 0.8) 0%, rgba(4, 9, 8, 0.16) 36%, rgba(4, 9, 8, 0.38) 100%);
}

.autodifesa-page .hero-content {
  max-width: 1040px;
}

.autodifesa-page .hero-text {
  max-width: 940px;
}

.sport-academy-page .hero-bg {
  background-image: url("assets/sport-academy-gallery/sport-academy-10-web.webp");
  background-position: center 42%;
}

.sport-academy-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 9, 8, 0.9) 0%, rgba(4, 9, 8, 0.64) 48%, rgba(4, 9, 8, 0.24) 100%),
    linear-gradient(0deg, rgba(4, 9, 8, 0.8) 0%, rgba(4, 9, 8, 0.14) 36%, rgba(4, 9, 8, 0.36) 100%);
}

.sport-academy-page .hero-content {
  max-width: 1040px;
}

.sport-academy-page .hero-text {
  max-width: 940px;
}

.sport-in-azienda-page .hero-bg {
  background-image: url("assets/percorsi/percorso-sport-in-azienda.jpg");
  background-position: center 46%;
}

.sport-in-azienda-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 9, 8, 0.9) 0%, rgba(4, 9, 8, 0.62) 48%, rgba(4, 9, 8, 0.22) 100%),
    linear-gradient(0deg, rgba(4, 9, 8, 0.76) 0%, rgba(4, 9, 8, 0.12) 36%, rgba(4, 9, 8, 0.3) 100%);
}

.sport-in-azienda-page .hero-content {
  max-width: 1040px;
}

.sport-in-azienda-page .hero-text {
  max-width: 940px;
}

.luca-page .hero-bg {
  background-image: url("assets/luca-rigoldi-split-beox.png");
  background-position: center 24%;
}

.luca-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.92) 0%, rgba(18, 18, 18, 0.74) 42%, rgba(18, 18, 18, 0.36) 100%),
    linear-gradient(0deg, rgba(18, 18, 18, 0.68), rgba(18, 18, 18, 0.08));
}

.luca-page .hero-content {
  max-width: 920px;
}

.luca-page .hero-text {
  max-width: 830px;
}

.autodifesa-page .hero-bottom {
  grid-template-columns: repeat(4, 1fr);
}

.air-proof-strip {
  padding: 24px 0;
  color: #fff;
  background: var(--night);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.air-proof-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.air-proof-inner div,
.air-trainers-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.air-proof-inner strong,
.air-proof-inner span {
  display: block;
}

.air-proof-inner strong {
  margin-bottom: 6px;
  color: #ff9a68;
}

.air-proof-inner span {
  color: rgba(255, 255, 255, 0.74);
}

.air-audience-section,
.air-trainers-section,
.air-benefits-section {
  background: var(--paper-soft);
}

.air-relaction-section {
  background: #fff;
}

.air-relaction-grid,
.air-benefit-grid {
  display: grid;
  gap: 18px;
}

.air-relaction-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.air-relaction-grid article,
.air-benefit-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.air-relaction-grid article {
  min-height: 280px;
}

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

.air-trainers-grid article {
  color: #fff;
  background: var(--night);
}

.air-problem-grid .card-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(226, 96, 44, 0.16);
}

.air-problem-grid .card-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 3.4;
}

.tb-audience-grid .tb-audience-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  border-radius: var(--radius);
}

.tb-audience-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.air-trainer-photo {
  width: 100%;
  height: 190px;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: var(--radius);
}

.air-trainers-grid span,
.air-relaction-grid span,
.air-training-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--signal);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.air-trainers-grid h3 {
  color: #fff;
}

.air-trainers-grid p {
  color: rgba(255, 255, 255, 0.74);
}

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

.air-benefit-grid li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}

.air-benefit-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--signal);
  border-radius: 50%;
}

.air-conversion-strip {
  background: #29171b;
}

.air-positioning .tb-photo-stack img:first-child {
  object-position: center 32%;
}

.air-training-grid article {
  position: relative;
  overflow: hidden;
}

.air-training-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--signal);
}

.air-reassurance .tb-dark-panel {
  background: #29171b;
}

.air-results-section {
  background: #29171b;
}

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

.tb-hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.tb-title-break {
  display: inline;
}

.tb-conversion-strip {
  padding: 34px 0;
  color: #fff;
  background: var(--night);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tb-conversion-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.tb-conversion-inner h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 28px;
}

.tb-conversion-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.tb-conversion-actions .inline-link {
  color: #ff9a68;
}

.tb-statement {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 22px;
  margin-top: 28px;
  padding: 28px;
  color: #fff;
  background: var(--night);
  border-radius: var(--radius);
}

.tb-statement strong {
  color: var(--signal);
  font-size: 22px;
  line-height: 1.25;
}

.tb-statement span,
.tb-dark-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.tb-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.tb-split p {
  color: var(--muted);
}

.tb-problem-intro {
  margin-bottom: 34px;
}

.tb-problem-intro .section-heading {
  margin-bottom: 0;
}

.tb-problem-image {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tb-photo-stack {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 14px;
  align-items: end;
}

.tb-photo-stack img,
.tb-media-split img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tb-photo-stack img:first-child {
  height: 380px;
}

.tb-photo-stack img:last-child {
  height: 300px;
}

.tb-method article span,
.tb-training-grid article span,
.tb-case-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--signal);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.tb-method .method-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tb-subsection-title {
  max-width: var(--max);
  margin: 34px 0 18px;
  color: var(--ink);
  font-size: 22px;
}

.tb-limits-grid .card-icon {
  width: 50px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(226, 96, 44, 0.16);
}

.tb-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tb-audience-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.tb-audience-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 36px;
  margin-bottom: 18px;
  padding: 0 12px;
  color: #fff;
  background: var(--signal);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tb-audience-grid p {
  color: var(--muted);
}

.tb-training-grid .tb-area-icon {
  width: 58px;
  height: 58px;
}

.tb-area-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tb-training-grid,
.tb-output-grid,
.tb-case-grid {
  display: grid;
  gap: 16px;
}

.tb-training-grid,
.tb-output-grid {
  grid-template-columns: repeat(4, 1fr);
}

.tb-case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tb-training-grid article,
.tb-output-grid article,
.tb-case-grid article,
.tb-faq-grid details {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.tb-training-grid h3,
.tb-output-grid h3,
.tb-case-grid h3 {
  margin-top: 0;
}

.tb-training-grid p,
.tb-output-grid p,
.tb-case-grid p,
.tb-faq-grid p {
  color: var(--muted);
}

.tb-results-section {
  color: #fff;
  background: var(--night);
}

.tb-results-section .eyebrow {
  color: #ff9a68;
}

.tb-results-heading h2 {
  color: #fff;
}

.tb-results-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.tb-results-section .tb-output-grid article {
  position: relative;
  min-height: 260px;
  padding: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.tb-results-section .tb-output-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--signal);
}

.tb-results-section .tb-output-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--signal);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.tb-results-section .tb-output-grid h3 {
  color: #fff;
}

.tb-results-section .tb-output-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.tb-media-split img {
  min-height: 480px;
}

.tb-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tb-pill-row span {
  display: inline-flex;
  padding: 10px 14px;
  color: #fff;
  background: var(--signal);
  border-radius: var(--radius);
  font-weight: 800;
}

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

.tb-format-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.tb-format-card img {
  width: 220px;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  border-radius: var(--radius);
}

.tb-format-card h3 {
  margin-bottom: 8px;
}

.tb-format-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: #fff;
  background: var(--signal);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tb-format-card p,
.tb-format-card dd {
  color: var(--muted);
}

.tb-format-card dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.tb-format-card dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.tb-format-card dt {
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tb-format-card dd {
  margin: 0;
  font-size: 14px;
}

.tb-format-button {
  min-height: 40px;
  margin-top: 18px;
  padding: 0 14px;
  font-size: 14px;
}

.tb-dark-panel {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 42px;
  padding: 42px;
  color: #fff;
  background: var(--night);
  border-radius: var(--radius);
}

.tb-dark-panel .eyebrow {
  color: #ff9a68;
}

.tb-dark-panel .tb-check-list + .button {
  margin-top: 22px;
}

.tb-check-list {
  display: grid;
  gap: 10px;
}

.tb-check-list p {
  position: relative;
  margin: 0;
  padding: 16px 18px 16px 48px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.tb-check-list p::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 10px;
  height: 10px;
  background: var(--signal);
  border-radius: 50%;
}

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

.tb-faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.tb-faq-grid p {
  margin-bottom: 0;
}

@media (max-width: 1020px) {
  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .problem-grid,
  .method-steps,
  .paths-grid,
  .system-map,
  .topic-grid,
  .air-proof-inner,
  .air-relaction-grid,
  .air-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .difference-layout,
  .origin-layout,
  .system-layout,
  .champions-layout,
  .insights-layout,
  .insights-hero-layout,
  .article-hero-layout,
  .sport-layout,
  .ai-intro,
  .ai-cta,
  .ai-tool,
  .check-hero-layout,
  .check-layout,
  .report-grid,
  .report-two-columns,
  .report-perception-card,
  .resources-layout,
  .contact-layout,
  .split,
  .air-trainers-grid {
    grid-template-columns: 1fr;
  }

  .quote-block {
    min-height: auto;
  }

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

  .check-result {
    position: static;
  }

  .check-side-panel {
    position: static;
  }

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

  .insight-preview-grid,
  .article-grid,
  .article-image-grid {
    grid-template-columns: 1fr;
  }

  .report-actions-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 800px) {
  .site-header {
    min-height: 68px;
    padding: 12px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(8, 12, 11, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-bg {
    background-position: center center;
  }

  .hero-content {
    width: min(var(--max), calc(100% - 32px));
    padding-top: 122px;
    padding-bottom: 290px;
  }

  .autodifesa-page .hero-content {
    padding-bottom: 410px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .autodifesa-page .hero-bottom {
    grid-template-columns: 1fr;
  }

  .hero-bottom div {
    min-height: auto;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-bottom div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 0;
  }

  .section-inner {
    width: calc(100% - 32px);
  }

  .problem-grid,
  .method-steps,
  .paths-grid,
  .system-map,
  .role-grid,
  .sport-points,
  .topic-grid,
  .ai-cta,
  .insights-hero-layout,
  .insights-layout,
  .check-hero-layout,
  .check-layout,
  .report-grid,
  .report-two-columns,
  .report-perception-card,
  .area-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .path-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .media-panel img,
  .origin-media img,
  .ai-intro img,
  .ai-cta-media img,
  .insights-hero img,
  .article-hero img,
  .check-hero img,
  .lead-magnet img {
    height: 300px;
  }

  .gallery-track img {
    width: 210px;
    height: 280px;
  }

  .article-card-image {
    height: 220px;
  }

  .article-image-grid img,
  .article-wide-image img {
    height: 280px;
  }

  .logo-track span {
    width: 220px;
    height: 122px;
    padding: 20px;
  }

  .logo-track img {
    max-height: 84px;
  }

  .landing-partner-logos {
    grid-template-columns: 1fr;
  }

  .landing-partner-logos span {
    min-height: 138px;
    padding: 22px;
  }

  .landing-partner-logos img {
    max-height: 86px;
  }

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

@media (max-width: 460px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .button {
    width: 100%;
  }

  .six-paths .path-card {
    grid-template-columns: 1fr;
  }

  .six-paths .path-card img {
    width: 100%;
    height: 190px;
  }

  .hero-actions,
  .result-actions {
    align-items: stretch;
  }

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

  .report-actions-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1020px) {
  .tb-split,
  .tb-dark-panel {
    grid-template-columns: 1fr;
  }

  .tb-training-grid,
  .tb-audience-grid,
  .tb-output-grid,
  .tb-case-grid,
  .tb-format-grid,
  .tb-faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tb-format-card {
    grid-template-columns: 1fr;
  }

  .tb-format-card img {
    width: 100%;
    height: 280px;
    min-height: 0;
  }

  .tb-conversion-inner {
    grid-template-columns: 1fr;
  }

  .tb-conversion-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .teambuilding-page .hero-content {
    width: 330px;
    max-width: calc(100vw - 16px);
    margin-left: 8px;
    margin-right: 8px;
    padding-top: 156px;
  }

  .teambuilding-page h1 {
    width: 100%;
    max-width: 100%;
    font-size: 29px;
    line-height: 1.08;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .tb-title-break {
    display: block;
  }

  .teambuilding-page .hero-text {
    width: 330px;
    max-width: calc(100vw - 16px);
    font-size: 17px;
  }

  .teambuilding-page .hero-bottom {
    left: 8px;
    right: 8px;
    width: auto;
    transform: none;
  }

  .teambuilding-page .hero-bottom span {
    max-width: 315px;
  }

  .tb-statement,
  .tb-audience-grid,
  .tb-training-grid,
  .tb-output-grid,
  .tb-case-grid,
  .tb-format-grid,
  .tb-faq-grid,
  .air-proof-inner,
  .air-relaction-grid,
  .air-benefit-grid,
  .tb-photo-stack {
    grid-template-columns: 1fr;
  }

  .tb-statement,
  .tb-dark-panel {
    padding: 24px;
  }

  .tb-photo-stack img:first-child,
  .tb-photo-stack img:last-child,
  .tb-media-split img,
  .tb-problem-image {
    height: 260px;
    min-height: 0;
  }

  .sport-academy-gallery {
    padding: 24px 0 44px;
  }

  .sport-academy-gallery .gallery-track img {
    width: 270px;
    height: 180px;
  }
}

@media (max-width: 800px) {
  body {
    font-size: 16px;
  }

  .site-header {
    gap: 14px;
    min-height: 78px;
    padding: 8px 16px;
  }

  .brand,
  .brand img {
    width: 62px;
    min-width: 62px;
  }

  .menu-toggle {
    flex: 0 0 auto;
    padding: 0;
  }

  .main-nav {
    position: fixed;
    top: 80px;
    left: 12px;
    right: 12px;
    max-height: calc(100svh - 96px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 10px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  }

  .main-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav .nav-cta,
  .main-nav .whatsapp-nav {
    justify-content: center;
    margin-top: 10px;
    border-bottom: 0;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .hero-content,
  .teambuilding-page .hero-content,
  .autodifesa-page .hero-content {
    width: calc(100% - 32px);
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    padding-top: 102px;
    padding-bottom: 34px;
  }

  .teambuilding-page .hero-text {
    width: auto;
    max-width: none;
  }

  .hero-bottom,
  .teambuilding-page .hero-bottom,
  .autodifesa-page .hero-bottom {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100% - 32px);
    margin: 0 auto 24px;
    transform: none;
  }

  .hero-bottom span,
  .teambuilding-page .hero-bottom span {
    max-width: none;
  }

  .hero-text,
  h1,
  h2,
  h3,
  .section-heading p,
  .copy-panel p,
  .resources-copy p,
  .contact-copy p,
  .ai-intro p,
  .champions-layout > div:first-child p:not(.eyebrow),
  .origin-copy p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  h1,
  h2,
  h3 {
    text-wrap: balance;
  }

  .hero-text,
  .section-heading p,
  .copy-panel p,
  .resources-copy p,
  .contact-copy p,
  .ai-intro p,
  .champions-layout > div:first-child p:not(.eyebrow),
  .origin-copy p {
    font-size: 16px;
  }

  .origin-copy .origin-lead {
    font-size: 19px;
  }

  .insights-hero,
  .article-hero,
  .check-hero,
  .report-hero,
  .legal-hero {
    padding: 112px 0 54px;
  }

  .insights-hero h1,
  .article-hero h1,
  .check-hero h1,
  .report-hero h1,
  .legal-hero h1 {
    max-width: 100%;
    font-size: clamp(31px, 8.5vw, 38px);
    line-height: 1.07;
  }

  .insights-hero p:not(.eyebrow),
  .article-hero p:not(.eyebrow),
  .check-hero p:not(.eyebrow),
  .report-hero p:not(.eyebrow),
  .legal-hero p {
    font-size: 17px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .problem-grid article,
  .method-steps article,
  .path-card,
  .champions-cards article,
  .topic-grid article,
  .tb-audience-grid article,
  .tb-training-grid article,
  .tb-output-grid article,
  .tb-case-grid article,
  .tb-faq-grid details,
  .air-relaction-grid article,
  .air-benefit-grid article,
  .air-trainers-grid article {
    padding: 22px;
  }

  .problem-grid article,
  .method-steps article,
  .tb-results-section .tb-output-grid article,
  .air-relaction-grid article,
  .tb-audience-grid article {
    min-height: auto;
  }

  .quote-block {
    padding: 24px;
  }

  .quote-block p {
    font-size: 22px;
  }

  .tb-format-card {
    gap: 16px;
    padding: 16px;
  }

  .tb-format-card img {
    height: 230px;
    min-height: 0;
  }

  .tb-format-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .tb-format-button {
    width: 100%;
  }

  .tb-dark-panel,
  .ai-cta,
  .check-form,
  .check-result,
  .check-side-panel,
  .report-main-card,
  .report-lead-card,
  .report-method-card,
  .report-actions-panel,
  .area-card,
  .answers-detail,
  .contact-form,
  .legal-content {
    padding: 22px;
  }

  .tb-conversion-actions,
  .hero-actions,
  .result-actions,
  .article-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .tb-conversion-actions .button,
  .tb-conversion-actions .inline-link,
  .result-actions .button,
  .result-actions .inline-link,
  .article-actions .button,
  .article-actions .inline-link {
    width: 100%;
    text-align: center;
  }

  .range-question {
    padding: 20px 0 24px;
  }

  .range-question input[type="range"] {
    height: 12px;
  }

  .range-question input[type="range"]::-webkit-slider-runnable-track {
    height: 12px;
  }

  .range-question input[type="range"]::-webkit-slider-thumb {
    width: 30px;
    height: 30px;
    margin-top: -9px;
  }

  .range-question input[type="range"]::-moz-range-track,
  .range-question input[type="range"]::-moz-range-progress {
    height: 12px;
  }

  .range-question input[type="range"]::-moz-range-thumb {
    width: 26px;
    height: 26px;
  }

  .range-scale {
    padding: 0 4px;
    font-size: 11px;
  }

  .range-scale span {
    width: 24px;
    height: 24px;
  }

  .answer-row {
    flex-direction: column;
    gap: 6px;
  }

  .footer-legal-links {
    gap: 6px 10px;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 56px 0;
  }

  .hero-content,
  .teambuilding-page .hero-content,
  .autodifesa-page .hero-content {
    padding-top: 96px;
  }

  h1,
  .teambuilding-page h1 {
    font-size: clamp(28px, 7.5vw, 31px);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(25px, 6.8vw, 29px);
  }

  h3 {
    font-size: 19px;
  }

  .insights-hero h1,
  .article-hero h1,
  .check-hero h1,
  .report-hero h1,
  .legal-hero h1 {
    font-size: clamp(28px, 7.6vw, 31px);
  }

  .hero-actions,
  .button,
  .path-card-button {
    width: 100%;
  }

  .button,
  .path-card-button {
    min-height: 46px;
  }

  .card-icon,
  .step-icon,
  .sport-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius);
  }

  .card-icon svg,
  .step-icon svg,
  .sport-icon svg {
    width: 34px;
    height: 34px;
  }

  .media-panel img,
  .origin-media img,
  .ai-intro img,
  .ai-cta-media img,
  .insights-hero img,
  .article-hero img,
  .check-hero img,
  .lead-magnet img,
  .tb-photo-stack img:first-child,
  .tb-photo-stack img:last-child,
  .tb-media-split img,
  .tb-problem-image {
    height: 240px;
  }

  .gallery-track img {
    width: 190px;
    height: 250px;
  }

  .sport-academy-gallery .gallery-track img {
    width: 240px;
    height: 160px;
  }

  .logo-set {
    gap: 14px;
    padding: 22px 8px;
  }

  .logo-track span {
    width: 190px;
    height: 106px;
    padding: 16px;
  }

  .logo-track img {
    max-height: 72px;
  }

  .form-block,
  .privacy-box {
    padding: 16px;
  }

  .quick-choices span {
    width: 100%;
  }

  .footer-legal-links span {
    display: none;
  }
}

@media (max-width: 380px) {
  .section-inner,
  .hero-content,
  .hero-bottom,
  .teambuilding-page .hero-content,
  .teambuilding-page .hero-bottom,
  .autodifesa-page .hero-content,
  .autodifesa-page .hero-bottom {
    width: calc(100% - 24px);
  }

  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .main-nav {
    left: 8px;
    right: 8px;
  }

  .tb-format-card,
  .contact-form,
  .check-form,
  .tb-dark-panel,
  .ai-cta {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .gallery-track,
  .logo-track {
    animation: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .report-actions-panel,
  .button,
  .inline-link {
    display: none !important;
  }

  body,
  .report-page,
  .report-section {
    background: #fff !important;
  }

  .report-hero {
    padding: 0 0 24px;
    color: #111514;
    background: #fff;
  }

  .report-hero p:not(.eyebrow) {
    color: #323b38;
  }

  .section {
    padding: 24px 0;
  }

  .report-grid,
  .report-two-columns,
  .report-perception-card,
  .area-grid {
    grid-template-columns: 1fr 1fr;
  }

  .report-main-card {
    color: #111514;
    background: #fff;
    box-shadow: none;
  }

  .report-main-card p,
  .report-score span {
    color: #323b38;
  }

  .report-score strong {
    color: #111514;
  }
}
