/* ============================================
   UNICÒVERSO - CLEAN MINIMAL CSS
   Based on KIMU CSS with UnicòVerso theme
   ============================================ */

/* ===== CSS RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background-color: var(--bg-light);
  overflow-x: hidden;
  padding-top: 80px; /* Navbar height */
}

/* ===== ANCHOR LINK OFFSET ===== */
/* Compensazione per navbar fissa - crea spazio sopra le sezioni anchor */
.section-title-minimal[id] {
  scroll-margin-top: 100px; /* Altezza navbar + spazio aggiuntivo */
}

/* Fallback per browser più vecchi */
.section-title-minimal[id]::before {
  content: '';
  display: block;
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
}

/* ===== CSS VARIABLES ===== */
:root {
  --bg-primary: #f5f6f7;
  --bg-white: #ffffff;
  --bg-light: #FFFAF6;
  --bg-light-rgb: 250, 246, 246;
  --text-dark: #2c2c2c;
  --text-medium: #666666;
  --text-light: #999999;
  --unicoverso-dark: #3a3a3a;
  --unicoverso-medium: #5a5a5a;
  --unicoverso-light: #8a8a8a;
  --border-light: rgba(58, 58, 58, 0.15);
  --shadow-light: rgba(58, 58, 58, 0.1);
  
  /* Brand Accent Colors */
  --brand-accent: #6366f1;
  --brand-accent-light: rgba(99, 102, 241, 0.1);
  --brand-accent-soft: rgba(99, 102, 241, 0.05);
  
  /* Section Background */
  --section-bg: #f8f9fa;
  --section-bg-gradient: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
  
  /* Footer - Grigio cemento moderno */
  --footer-bg-dark: #2a2a2a;
  --footer-bg-darker: #1f1f1f;
  --footer-text: #e0e0e0;
  --footer-text-muted: #b0b0b0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
  background: transparent;
}

p {
  margin-bottom: 1em;
}

ul, ol {
  list-style: none;
}

a {
  color: var(--unicoverso-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--unicoverso-medium);
}

img {
  max-width: 100%;
  height: auto;
}

strong {
  font-weight: 600;
}

/* ===== LAYOUT CONTAINERS ===== */
.container-minimal {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(var(--bg-light-rgb), 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  height: 80px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand .brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-dark);
}

.brand-logo {
  height: 35px;
  width: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item {
  transition: all 0.3s ease;
  border-radius: 6px;
}

.nav-link {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: block;
  text-align: center;
}

.nav-item:hover {
  background: rgba(58, 58, 58, 0.05);
  border-radius: 6px;
}

.nav-item.active {
  background: rgba(58, 58, 58, 0.08);
  border-radius: 6px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--unicoverso-medium);
  background: transparent;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background: var(--unicoverso-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
  margin-left: 16px;
  position: relative;
}

.language-toggle {
  position: relative;
  cursor: pointer;
}

.current-language {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  user-select: none;
}

.current-language::after {
  content: '▼';
  margin-left: 8px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.language-toggle:hover .current-language {
  background: var(--bg-light);
  border-color: var(--accent);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.language-toggle:hover .current-language::after {
  transform: rotate(180deg);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 140px;
  margin-top: 4px;
}

.language-toggle:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-link {
  display: block;
  padding: 10px 12px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  border-radius: 4px;
  margin: 2px;
}

.language-link:hover {
  background: var(--bg-light);
  color: var(--accent);
  transform: translateX(2px);
}

.language-link.current {
  background: var(--accent);
  color: var(--text-white);
  font-weight: 500;
}

.language-link.current:hover {
  background: var(--accent);
  color: var(--text-white);
  transform: none;
}

/* ===== SECTIONS ===== */
section {
  margin-bottom: 1rem; /* Ultra-minimal spacing */
}

/* Content Cards */
.hero-content-minimal,
.features-content-minimal,
.philosophy-content-minimal,
.description-content-minimal {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px var(--shadow-light);
  border: 1px solid var(--border-light);
  position: relative;
}

/* Status Content - Transparent */
.status-content-minimal {
  padding: 30px;
}

/* ===== HERO SECTION ===== */
.kimu-hero {
  padding: 0; /* No padding for ultra-compact layout */
  position: relative;
}

/* ===== HERO SECTION FULL WIDTH ===== */
/* Full Width Hero Section */
.kimu-hero-fullwidth {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

/* Hero Content Centered */
.hero-content-centered {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 900px;
  padding: 60px 24px;
  z-index: 2;
}

/* Hero Typography */
.hero-title-main {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 600;
  color: var(--unicoverso-dark);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-quote-main {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1rem);
  color: var(--unicoverso-medium);
  text-align: center;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
}

/* ===== DECORATIVE BACKGROUND ELEMENT ===== */
.bg-decorative-element {
  position: absolute;
  top: 60%;
  right: -120px;
  transform: translateY(-50%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.bg-decorative-image {
  max-width: 250px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%) opacity(0.8);
}

.logo-wrapper-minimal {
  text-align: center;
  margin-bottom: 32px;
}

.kimu-logo-minimal {
  height: 265px;
  width: auto;
}

.kimu-title-minimal {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--unicoverso-medium);
  text-align: center;
  margin-bottom: 20px;
}

.kimu-subtitle-minimal {
  font-size: 1.3rem;
  color: var(--unicoverso-dark);
  text-align: center;
  margin-bottom: 28px;
  font-style: italic;
  line-height: 1.4;
}

.kimu-quote-minimal {
  font-size: 1.2rem;
  color: var(--unicoverso-dark);
  text-align: center;
  font-style: italic;
  margin: 36px 0;
  line-height: 1.7;
}

/* ===== KIMU MAIN CONTENT SECTION (Two Columns) ===== */
.kimu-main-content-section {
  padding: 0; /* No padding for ultra-compact layout */
  position: relative;
}

.main-content-minimal {
  background: var(--bg-white);
  padding: 40px;
  box-shadow: 0 2px 8px var(--shadow-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
  position: relative;
}

/* ===== DECORATIVE BACKGROUND ELEMENT - LEFT SIDE ===== */
.bg-decorative-element-left {
  position: absolute;
  bottom: -58px;
  left: -45px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}

.bg-decorative-image-left {
  max-width: 300px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Description Column (Left) */
.description-column-minimal {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: justify;
  width: 83%;
}

.technical-description {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.philosophy-description {
  font-size: 1rem;
  color: var(--unicoverso-dark);
  font-style: italic;
  margin-bottom: 0;
  line-height: 1.7;
}

/* Features Column (Right) */
.features-column-minimal {
  padding: 0;
}

.features-title-minimal {
  font-size: 1.4rem;
  color: var(--unicoverso-medium);
  text-align: left;
  font-weight: 600;
}

.features-list-minimal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 100%;
  margin: 0;
}

.feature-item-minimal {
  padding: 6px 0;
  transition: all 0.2s ease;
}

.feature-item-minimal:hover {
  background: rgba(58, 58, 58, 0.02);
  padding-left: 8px;
  padding-right: 8px;
}

/* New structured layout for features */
.feature-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  font-size: 1.2rem;
  min-width: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.feature-title {
  font-weight: 600;
  color: var(--unicoverso-dark);
  font-size: 1rem;
  line-height: 1.3;
}

.feature-description {
  font-weight: 400;
  color: var(--unicoverso-medium);
  font-size: 0.9rem;
  line-height: 1;
  margin-left: 16px; /* Indent the secondary text */
  font-style: italic;
}

/* Legacy support - remove old p styles */
.feature-item-minimal p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy-minimal {
  padding: 20px 0 20px 0; /* Increased padding for decorative elements */
  position: relative;
}

.philosophy-content-minimal {
  position: relative;
}

/* Decorative Elements */
.philosophy-decorative-top {
  text-align: center;
  margin-bottom: 30px;
}

.philosophy-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--unicoverso-medium);
  opacity: 0.7;
  animation: pulse 2s ease-in-out infinite;
}

.dot-2 {
  animation-delay: 0.3s;
  background: var(--unicoverso-dark);
}

.dot-3 {
  animation-delay: 0.6s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
}

.philosophy-text-minimal {
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 36px;
  color: var(--unicoverso-dark);
  font-weight: 500;
}

/* Visual Separator */
.philosophy-separator {
  text-align: center;
  margin: 40px 0 35px 0;
}

.philosophy-wave {
  width: 120px;
  height: 20px;
}

/* Enhanced Poetry Section */
.poetry-section-minimal {
  text-align: center;
  position: relative;
}

/* Main philosophy statement - larger text */
.poetry-section-minimal strong {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--unicoverso-dark);
  line-height: 1.4;
  display: block;
  letter-spacing: 0.5px;
}

.quote-mark {
  font-size: 3rem;
  color: var(--unicoverso-light);
  font-family: Georgia, serif;
  line-height: 1;
  display: block;
  margin-bottom: -10px;
}

.quote-end {
  margin-top: -15px;
  margin-bottom: 0;
}

.poetry-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--unicoverso-dark);
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* Inspiration Text */
.philosophy-inspiration {
  text-align: center;
  margin: 45px 0 35px 0;
}

.inspiration-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--unicoverso-medium);
  font-weight: 400;
}

.highlight-word {
  color: var(--unicoverso-dark);
  font-weight: 600;
  position: relative;
}

.highlight-word::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--unicoverso-light), transparent);
  opacity: 0.6;
}

/* Decorative Bottom - Constellation */
.philosophy-decorative-bottom {
  text-align: center;
  margin-top: 40px;
}

.constellation {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 40px;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--unicoverso-medium);
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 3s ease-in-out infinite;
}

.star-1 { top: 10px; left: 20px; animation-delay: 0s; }
.star-2 { top: 5px; left: 50px; animation-delay: 0.5s; }
.star-3 { top: 25px; left: 15px; animation-delay: 1s; }
.star-4 { top: 20px; left: 75px; animation-delay: 1.5s; }
.star-5 { top: 35px; left: 45px; animation-delay: 2s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .philosophy-text-minimal {
    font-size: 1.1rem;
  }
  
  .poetry-text {
    font-size: 1.1rem;
  }
  
  .poetry-section-minimal strong {
    font-size: 1.3rem;
    letter-spacing: 0.3px;
  }
  
  .quote-mark {
    font-size: 2.5rem;
  }
  
  .inspiration-text {
    font-size: 1rem;
  }
  
  .philosophy-wave {
    width: 100px;
  }
}

/* ===== SECTION TITLES - Ultra Minimal ===== */
.section-title-minimal {
  padding-top: 90px;
  padding-bottom: 40px;
  margin-top: 0;
  background: transparent;
}

/* Section Background Style */
.section-with-bg {
  background: transparent;
  position: relative;
}

.section-subtitle-minimal {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--unicoverso-medium);
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.5;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PARTICIPATION SECTION ===== */
.participation-minimal {
  background: transparent;
}

.participation-content {
  text-align: center;
  background: transparent;
}

.participation-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  color: var(--unicoverso-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  background: transparent;
}

.participation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.participation-item {
  text-align: center;
  padding: 24px 26px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.participation-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.participation-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.participation-item h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--unicoverso-dark);
  margin-bottom: 12px;
}

.participation-item p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-medium);
  margin: 0;
}

.participation-cta {
  text-align: center;
  margin-bottom: 40px;
}

.participation-invite {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: var(--unicoverso-medium);
  margin-bottom: 24px;
  font-weight: 500;
}

.participation-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-community {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--unicoverso-dark);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-community:hover {
  background: var(--unicoverso-medium);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-community-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--unicoverso-dark);
  text-decoration: none;
  border: 2px solid var(--unicoverso-light);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-community-secondary:hover {
  background: var(--unicoverso-light);
  color: #f5f5f5;
  border-color: var(--unicoverso-medium);
  transform: translateY(-2px);
}

/* Collaboration Hero Section */
.collaboration-hero {
  margin-bottom: 35px;
}

/* ===== PROJECT LINKS ===== */
.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px 0;
  padding: 0 20px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--bg-white);
  color: var(--unicoverso-dark);
  text-decoration: none;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.project-link:hover {
  background: var(--unicoverso-dark);
  color: white;
  border-color: var(--unicoverso-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-link.primary {
  background: var(--unicoverso-dark);
  color: white;
  border-color: var(--unicoverso-dark);
}

.project-link.primary:hover {
  background: var(--unicoverso-medium);
  border-color: var(--unicoverso-medium);
}

/* Community Stats */
.community-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 3px 0;
  padding: 24px 0;
}

.stat-item {
  text-align: center;
  padding: 16px;
}

.stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--unicoverso-dark);
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--text-medium);
  font-style: italic;
}

/* Value proposition styling */
.kimu-value-prop {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--unicoverso-medium);
  text-align: center;
  margin: 16px 0;
  letter-spacing: 0.3px;
}

/* ===== STATUS SECTION ===== */
.status-minimal {
  padding: 0; /* No padding for ultra-compact layout */
}

.status-title-minimal {
  font-size: 1.3rem;
  color: var(--unicoverso-dark);
  text-align: center;
  margin-bottom: 24px;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.status-title-icon {
  height: 4.5rem;
  width: auto;
  opacity: 1;
}

.status-description-minimal {
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
}

.status-description-minimal .status-title-icon {
  height: 7.5rem;
  width: auto;
  margin-top: 6px;
  flex-shrink: 0;
}

.status-description-text {
  flex: 1;
  text-align: justify;
  max-width: 500px;
}

/* Status Actions Container - Desktop */
.status-actions-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.status-action-left {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--unicoverso-medium);
  text-align: center;
  flex: 1;
}

.status-action-right {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--unicoverso-medium);
  text-align: center;
  flex: 1;
}

/* ===== GROWING SECTION ===== */
.growing-minimal {
  padding: 0; /* No padding for ultra-compact layout */
}

.growing-content-minimal {
  background: var(--bg-white);
  padding: 32px 40px;
  text-align: center;
  box-shadow: 0 2px 8px var(--shadow-light);
  border: 1px solid var(--border-light);
  border-radius: 8px;
}

.growing-text-minimal {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--unicoverso-medium);
  margin: 0;
  font-style: italic;
}

/* ===== FINAL SECTION ===== */
.final-minimal {
  padding: 0; /* No padding for ultra-compact layout */
}

/* Social call to action section */
.social-cta-minimal {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}

.social-cta-minimal h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--unicoverso-dark);
  margin-bottom: 12px;
  margin-top: 0;
}

.social-cta-minimal p {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.social-links-minimal {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  margin-top: 32px;
}

.social-links-minimal a {
  color: var(--unicoverso-dark);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links-minimal a:hover {
  color: var(--unicoverso-medium);
  transform: translateY(-2px);
}

.credits-text-minimal {
  text-align: center;
  font-style: italic;
  color: var(--text-medium);
}

/* Status Actions Container - Desktop */
.status-actions-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.status-action-left {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--unicoverso-medium);
  text-align: center;
  flex: 1;
}

.status-action-right {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--unicoverso-medium);
  text-align: center;
  flex: 1;
}

/* ===== CONTACT MINIMAL SECTION ===== */

/* ===== CONTACT MINIMAL SECTION ===== */
.contact-minimal {
    padding: 3rem 0 4rem;
    background: var(--bg-light);
}

.contact-info-minimal {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: white;
    padding: 1.1rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-width: 200px;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon-minimal {
    flex-shrink: 0;
}

.contact-icon-minimal img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.contact-method:hover .contact-icon-minimal img {
    opacity: 1;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-secondary);
}

/* Social Links from KIMU style */
.social-links-minimal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-links-minimal a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: var(--text-medium);
}

.social-links-minimal a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: white;
    color: var(--accent-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info-minimal {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .contact-method {
        width: 100%;
        max-width: 300px;
    }
    
    .social-links-minimal {
        gap: 1.5rem;
    }
    
    .social-links-minimal a {
        width: 60px;
        height: 60px;
    }
    
    .social-links-minimal svg {
        width: 40px;
        height: 40px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-enhanced {
        padding: 3rem 0 4rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-cta {
        padding: 2.5rem 1.5rem;
        margin: 2rem 0;
    }
    
    .contact-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-contact,
    .btn-secondary-contact {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .contact-quick-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quick-link-item {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .quick-link-item span:not(.quick-icon) {
        text-align: center;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* ===== FOOTER ===== */
.footer-minimal {
  background: linear-gradient(135deg, var(--footer-bg-dark) 0%, var(--footer-bg-darker) 100%);
  color: var(--footer-text);
  padding: 48px 0 24px;
  margin-top: 0.1rem; /* Ultra-minimal spacing */
  position: relative;
}

/* Texture cemento subtle */
.footer-minimal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.footer-main-minimal {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  margin-bottom: 32px;
  align-items: center;
}

.footer-brand-left {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 180px !important;
  max-width: 200px !important;
  padding-right: 20px !important;
  text-align: center !important;
  overflow: visible !important;
}

.footer-brand-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.footer-logo-minimal {
  height: 93px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

/* Footer Logo Link */
.footer-logo-link {
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-logo-link:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.footer-logo-link:hover .footer-logo-minimal {
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(255, 255, 255, 0.2));
}

.footer-tagline-minimal {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--footer-text-muted);
  margin: 0;
}

/* UnicòVerso Logo in Footer */
.footer-brand-left .footer-unicoverso-logo {
  height: 120px !important;
  width: auto !important;
  filter: brightness(0) invert(1) !important;
  display: block !important;
  margin: 0 auto !important;
  max-height: none !important;
  max-width: 100% !important;
}

.footer-unicoverso-logo {
  height: 120px !important;
  width: auto !important;
  filter: brightness(0) invert(1) !important;
  display: block !important;
  margin: 0 auto !important;
}

/* Social links nel footer - compatti sotto il logo UnicòVerso */
.footer-social-minimal {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.footer-social-minimal a {
  color: var(--footer-text);
  opacity: 0.8;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.footer-social-minimal a:hover {
  opacity: 1;
  transform: translateY(-1px);
  color: var(--footer-text);
}

.footer-social-minimal svg {
  width: 20px;
  height: 20px;
}

/* Assicuriamo che la sezione sinistra del footer sia in colonna */
.footer-brand-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.footer-links-minimal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-column-minimal h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--footer-text);
}

.footer-column-minimal ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column-minimal a {
  color: var(--footer-text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column-minimal a:hover {
  color: var(--footer-text);
}

.footer-bottom-minimal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(224, 224, 224, 0.2);
}

.footer-legal-minimal p,
.footer-zen-minimal p {
  font-size: 0.9rem;
  color: var(--footer-text-muted);
  margin: 0;
}

.footer-zen-minimal p {
  font-style: italic;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 767px) {
  body {
    padding-top: 70px; /* Mobile navbar height */
  }
  
  .navbar {
    height: 70px;
  }
  
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-light);
    background: rgba(var(--bg-light-rgb), 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px var(--shadow-light);
    flex-direction: column;
    padding: 20px;
    gap: 12px;
    z-index: 1000;
  }
  
  .nav-list.active {
    display: flex;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .nav-link {
    padding: 12px 0;
    text-align: center;
    width: 100%;
    border-radius: 8px;
  }
  
  .container-minimal {
    padding: 0 16px;
  }
  
  .hero-content-minimal,
  .hero-content-centered,
  .features-content-minimal,
  .philosophy-content-minimal,
  .description-content-minimal {
    padding: 24px;
  }
  
  /* Hero Full Width Mobile */
  .kimu-hero-fullwidth {
    min-height: 100vh;
  }
  
  .hero-content-centered {
    padding: 40px 16px;
  }
  
  .logo-wrapper-minimal {
    margin-bottom: 24px;
  }
  
  .kimu-logo-minimal {
    height: 180px;
  }
  
  .hero-title-main {
    margin-bottom: 24px;
  }
  
  /* Section spacing mobile */
  .section-title-minimal {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  
  .status-content-minimal {
    padding: 24px;
  }
  
  /* Status section responsive styles */
  .kimu-title-minimal {
    font-size: 1.8rem;
  }
  
  .kimu-subtitle-minimal {
    font-size: 1rem;
  }
  
  .kimu-logo-minimal {
    height: 150px;
  }
  
  .main-content-minimal {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px;
  }
  
  .description-column-minimal {
    justify-content: flex-start;
  }
  
  .bg-decorative-element {
    right: -80px;
    top: 70%;
    opacity: 0.4;
  }
  
  .bg-decorative-image {
    max-width: 150px;
  }
  
  .bg-decorative-element-left {
    right: -20px;
    left: auto;
    bottom: -20px;
  }
  
  .bg-decorative-image-left {
    max-width: 200px;
  }
  
  .features-title-minimal {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .feature-item-minimal {
    padding: 6px 0;
  }
  
  .feature-content {
    gap: 10px;
  }
  
  .feature-icon {
    font-size: 1.1rem;
    min-width: 22px;
  }
  
  .feature-title {
    font-size: 0.9rem;
  }
  
  .feature-description {
    font-size: 0.8rem;
    margin-left: 12px;
    padding-left: 8px;
  }
  
  .feature-item-minimal p {
    font-size: 0.8rem;
    line-height: 1.2;
  }
  
  .footer-main-minimal {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-brand-left {
    justify-content: center;
    margin-bottom: 20px;
    min-width: auto;
  }
  
  .footer-brand-right {
    align-items: center;
    text-align: center;
    margin-top: 20px;
    min-width: auto;
  }
  
  .footer-links-minimal {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-bottom-minimal {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  /* Footer social responsive */
  .footer-social-minimal {
    gap: 12px;
    margin-top: 6px;
  }
  
  .footer-social-minimal svg {
    width: 18px;
    height: 18px;
  }
  
  /* Participation section responsive */
  .participation-minimal {
    padding: 32px 0;
    margin: 20px 0;
  }
  
  .participation-title {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }
  
  .participation-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }
  
  .participation-item {
    padding: 24px 16px;
  }
  
  .participation-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-community,
  .btn-community-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .community-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  /* Project links responsive */
  .project-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0 10px;
  }
  
  .project-link {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    font-size: 0.85rem;
    padding: 12px 16px;
  }
}

@media (max-width: 480px) {
  .hero-content-minimal,
  .features-content-minimal,
  .philosophy-content-minimal,
  .growing-content-minimal,
  .description-content-minimal {
    padding: 20px;
  }
  
  .status-content-minimal {
    padding: 20px;
  }
  
  .kimu-title-minimal {
    font-size: 1.8rem;
  }
  
  .bg-decorative-element {
    right: -10px;
    top: 70%;
  }
  
  .bg-decorative-image {
    max-width: 150px;
  }
  
  .bg-decorative-element-left {
    right: -10px;
    left: auto;
    bottom: -15px;
  }
  
  .bg-decorative-image-left {
    max-width: 150px;
  }
  
  section {
    margin-bottom: 1rem; /* Same ultra-minimal spacing on mobile */
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-16 {
  margin-top: 16px;
}

.mt-32 {
  margin-top: 32px;
}

@media (min-width: 768px) {
  .status-action-left,
  .status-action-right {
    font-size: 1.2rem;
  }
  
  /* Hero Section Desktop Optimizations */
  .kimu-hero-fullwidth {
    min-height: 100vh;
  }
  
  .hero-content-centered {
    padding: 80px 40px;
  }
  
  .logo-wrapper-minimal {
    margin-bottom: 40px;
  }
  
  .kimu-logo-minimal {
    height: 265px;
  }
  
  .hero-title-main {
    margin-bottom: 36px;
  }
  
  /* Section spacing desktop */
  .section-title-minimal {
    padding-top: 90px;
    padding-bottom: 50px;
  }
  
  /* Decorative element desktop */
  .bg-decorative-element {
    right: -215px;
    top: 65%;
    opacity: 0.98;
  }
  
  .bg-decorative-image {
    max-width: 280px;
  }
  
  /* Forza dimensioni logo UnicòVerso per desktop */
  .footer-unicoverso-logo,
  .footer-brand-left .footer-unicoverso-logo {
    height: 120px !important;
    width: auto !important;
    min-height: 120px !important;
    max-width: 100% !important;
  }
  
  .footer-brand-left {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-width: 180px !important;
    max-width: 200px !important;
  }
}

/* ===== LARGE DESKTOP OPTIMIZATIONS ===== */
@media (min-width: 1200px) {
  .kimu-hero-fullwidth {
    min-height: 100vh;
  }
  
  .hero-content-centered {
    padding: 100px 60px;
    max-width: 1000px;
  }
  
  .section-title-minimal {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  
  /* Decorative element large desktop */
  .bg-decorative-element {
    right: -200px;
    top: 60%;
    opacity: 0.98;
  }
  
  .bg-decorative-image {
    max-width: 320px;
  }
}
