:root {
  --color-primary: #8c8dc7;
  --color-secondary: #a5acd9;
  --color-tertiary: #c3c8ed;
  --color-quaternary: #fff4e2;
  --color-accent: #6f70b8;
  --color-white: #ffffff;
  --color-gray-light: #f9fafb;
  --color-gray: #6c757d;
  --color-dark: #1a1b2e;
  --font-primary: 'Space Grotesk', sans-serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-dark);
  background: var(--color-white);
  overflow-x: hidden;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary);
}

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

.navbar-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(140, 141, 199, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--color-dark);
  padding: 0.5rem 1rem;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent);
}

.btn-primary {
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
  color: var(--color-white);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(111, 112, 184, 0.3);
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: var(--transition);
}

.btn-outline-primary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-secondary {
  background: transparent;
  border: 2px solid var(--color-gray);
  color: var(--color-gray);
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: var(--transition);
}

.btn-outline-secondary:hover {
  background: var(--color-gray);
  color: var(--color-white);
}

.btn-cta {
  margin-left: 1rem;
}

.hero-flipbook {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, rgba(195, 200, 237, 0.08) 0%, rgba(165, 172, 217, 0.12) 100%);
}

.hero-content {
  margin-bottom: 3rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray);
  max-width: 800px;
  margin: 0 auto;
}

.flipbook-tabs {
  background: var(--color-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--color-gray-light);
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gray);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.tab-btn.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

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

.flipbook-spread {
  align-items: center;
}

.pagina-left {
  padding: 2rem;
}

.pagina-left h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.goal-text {
  font-size: 1.125rem;
  color: var(--color-gray);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.key-points {
  list-style: none;
  padding: 0;
}

.key-points li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--color-dark);
}

.key-points li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

.pagina-right {
  padding: 2rem;
}

.flipbook-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.image-captions {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--color-gray);
  font-weight: 500;
}

.hero-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

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

.storie-panels {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.panel-horizontal {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--color-gray-light);
  border-radius: 16px;
  padding: 3rem;
  transition: var(--transition);
}

.panel-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.panel-image {
  flex: 1;
}

.panel-image img {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.panel-content {
  flex: 1;
}

.panel-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
}

.panel-bullets {
  list-style: none;
  padding: 0;
}

.panel-bullets li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.0625rem;
}

.panel-bullets li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.25rem;
}

.metodo-section {
  background: linear-gradient(135deg, var(--color-quaternary) 0%, var(--color-white) 100%);
}

.metodo-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.metodo-step {
  flex: 1;
  text-align: center;
  padding: 2rem;
  min-width: 250px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.metodo-step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}

.step-output {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.timeline-connector {
  width: 60px;
  height: 2px;
  background: var(--color-secondary);
}

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

.percorso-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.percorso-timeline:before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-tertiary);
}

.timeline-module {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.module-marker {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  z-index: 1;
}

.module-content {
  flex: 1;
  background: var(--color-gray-light);
  padding: 2rem;
  border-radius: 12px;
}

.module-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}

.module-output {
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 1rem;
}

.progetti-section {
  background: var(--color-gray-light);
}

.progetti-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.progetto-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.progetto-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.progetto-item img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.progetto-item:hover img {
  transform: scale(1.05);
}

.progetto-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 27, 46, 0.9) 0%, transparent 100%);
  color: var(--color-white);
  padding: 2rem;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

.progetto-item:hover .progetto-overlay {
  transform: translateY(0);
  opacity: 1;
}

.progetto-overlay h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.progetto-overlay p {
  font-size: 0.9375rem;
}

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

.lezione-case {
  max-width: 900px;
  margin: 0 auto;
}

.lezione-steps {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.lezione-step {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.lezione-step h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.lezione-step img {
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.error-list,
.quality-list {
  list-style: none;
  padding: 0;
}

.error-list li,
.quality-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.error-list li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: 700;
}

.quality-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: 700;
}

.strumenti-section {
  background: var(--color-gray-light);
}

.strumenti-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.tool-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  padding: 1rem 2rem;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.perchi-list {
  list-style: none;
  padding: 0;
}

.perchi-list li {
  padding: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  font-size: 1.0625rem;
}

.perchi-list.positive li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: 700;
  font-size: 1.5rem;
}

.perchi-list.negative li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: 700;
  font-size: 1.5rem;
}

.faq-section {
  background: var(--color-gray-light);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--color-gray-light);
}

.faq-question h4 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-dark);
}

.faq-question i {
  transition: var(--transition);
  color: var(--color-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--color-gray);
}

.orientamento-section {
  background: var(--color-quaternary);
}

.orientamento-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.form-label {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid var(--color-tertiary);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(111, 112, 184, 0.1);
  outline: none;
}

.error-message {
  color: #e74c3c;
  font-size: 0.875rem;
  display: block;
  margin-top: 0.25rem;
}

.footer {
  background: var(--color-dark);
  color: var(--color-white);
}

.footer h5 {
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

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

.footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer i {
  margin-right: 0.5rem;
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}

.cookie-notice {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 400px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  animation: slideUp 0.3s ease;
}

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

.cookie-notice.show {
  display: block;
}

.cookie-notice.hide {
  animation: slideDown 0.3s ease;
}

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

.cookie-content {
  padding: 2rem;
}

.cookie-content h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.cookie-content p {
  font-size: 0.9375rem;
  color: var(--color-gray);
  margin-bottom: 1.5rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-buttons .btn {
  flex: 1;
  padding: 0.75rem;
  font-size: 0.9375rem;
}

.cookie-link {
  font-size: 0.875rem;
  color: var(--color-accent);
  text-decoration: underline;
}

.page-hero {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background: linear-gradient(135deg, var(--color-tertiary) 0%, var(--color-quaternary) 100%);
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-dark);
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray);
}

.manifesto-section {
  background: var(--color-gray-light);
}

.manifesto-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-block h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-accent);
}

.manifesto-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

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

.feedback-list {
  list-style: none;
  padding: 0;
}

.feedback-list li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.0625rem;
}

.feedback-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.25rem;
}

.feedback-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.processo-section {
  background: var(--color-gray-light);
}

.processo-timeline {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 2rem;
}

.processo-stage {
  min-width: 250px;
  flex: 1;
  text-align: center;
}

.stage-number {
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.stage-content img {
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stage-content h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

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

.standard-table {
  max-width: 800px;
  margin: 0 auto;
}

.standard-row {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-tertiary);
}

.standard-row:first-child {
  border-bottom: 2px solid var(--color-accent);
}

.standard-col {
  flex: 1;
}

.standard-col h4 {
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.standard-col i {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.tools-philosophy {
  background: var(--color-gray-light);
}

.tools-list {
  list-style: none;
  padding: 0;
}

.tools-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.tools-list li i {
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.cta-section {
  background: var(--color-quaternary);
}

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

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.25rem;
}

.contact-details h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.contact-details a {
  color: var(--color-accent);
}

.faq-contact {
  background: var(--color-gray-light);
}

.faq-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-card h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, var(--color-quaternary) 0%, var(--color-white) 100%);
}

.thanks-content {
  max-width: 600px;
  margin: 0 auto;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: #27ae60;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thanks-icon i {
  font-size: 3rem;
}

.thanks-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.thanks-message {
  font-size: 1.25rem;
  color: var(--color-gray);
  margin-bottom: 1rem;
}

.thanks-submessage {
  font-size: 1.0625rem;
  color: var(--color-gray);
  margin-bottom: 2rem;
}

.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.policy-hero {
  padding-top: 10rem;
  padding-bottom: 3rem;
  background: var(--color-gray-light);
}

.policy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
}

.policy-date {
  text-align: center;
  color: var(--color-gray);
  font-size: 1rem;
}

.policy-content {
  background: var(--color-white);
}

.policy-section {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.policy-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.policy-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}

.policy-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-section ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.cookie-table thead {
  background: var(--color-gray-light);
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-tertiary);
}

.cookie-table th {
  font-weight: 700;
  color: var(--color-accent);
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .panel-horizontal {
    flex-direction: column;
  }

  .metodo-timeline,
  .processo-timeline {
    flex-direction: column;
  }

  .timeline-connector {
    width: 2px;
    height: 40px;
    margin: 1rem auto;
  }

  .progetti-masonry {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .lezione-steps {
    flex-direction: column;
  }

  .cookie-notice {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .navbar-fixed {
    padding: 0.75rem 0;
  }

  .hero-flipbook {
    padding: 8rem 0 4rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.0625rem;
  }

  .flipbook-tabs {
    padding: 1.5rem;
  }

  .tabs-nav {
    flex-wrap: wrap;
  }

  .tab-btn {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .panel-horizontal {
    padding: 2rem;
  }

  .orientamento-wrapper {
    padding: 2rem;
  }

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

  .btn-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .manifesto-block h2 {
    font-size: 2rem;
  }

  .standard-row {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-section .row {
    flex-direction: column-reverse;
  }

  .thanks-icon {
    width: 80px;
    height: 80px;
  }

  .thanks-icon i {
    font-size: 2rem;
  }

  .thanks-content h1 {
    font-size: 2rem;
  }
}