body {
  margin: 0;
  font-family: 'Barlow', Arial, sans-serif;
  background: #f4f6fa;
  color: #1a232b;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 36px 12px 36px;
  background: #232f3e;
  box-shadow: 0 2px 8px rgba(30,40,60,0.06);
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6a00;
  letter-spacing: 2px;
  text-decoration: none;
}
nav a {
  margin: 0 14px;
  text-decoration: none;
  color: #e0e6ed;
  font-weight: 500;
  font-size: 1.08rem;
  transition: color 0.2s;
}
nav a:hover {
  color: #ff6a00;
}
.cta-btn {
  background: #ff6a00;
  color: #fff;
  border: none;
  padding: 15px 36px;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,106,0,0.08);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.cta-btn.main-cta {
  background: #1a232b;
  color: #fff;
  border: 2px solid #ff6a00;
}
.cta-btn.main-cta:hover {
  background: #ff6a00;
  color: #fff;
}
.cta-btn.accent-cta {
  background: #ff6a00;
  color: #fff;
}
.cta-btn.accent-cta:hover {
  background: #d35400;
}
.hero {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 60vh;
  background: linear-gradient(120deg, #232f3e 60%, #ff6a00 100%);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 4px 32px rgba(30,40,60,0.08);
  margin-bottom: 36px;
}
.hero-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px 32px 64px;
}
.hero h1 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
  line-height: 1.1;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: #e0e6ed;
}
.hero-graphic {
  flex: 1 1 50%;
  background: linear-gradient(135deg, #ff6a00 0%, #232f3e 100%);
  border-radius: 0 0 36px 0;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-graphic::before {
  content: '';
  display: block;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 60% 40%, #fff2e0 0%, #ff6a00 80%, transparent 100%);
  border-radius: 50%;
  position: absolute;
  left: 50px;
  top: 60px;
  opacity: 0.7;
}
.hero-graphic::after {
  content: '';
  display: block;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 40% 60%, #e0e6ed 0%, #232f3e 80%, transparent 100%);
  border-radius: 50%;
  position: absolute;
  right: 60px;
  bottom: 40px;
  opacity: 0.5;
}
section {
  padding: 44px 36px;
  background: #fff;
  margin: 32px 0;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(30,40,60,0.04);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
section h2 {
  color: #232f3e;
  font-size: 2rem;
  margin-bottom: 18px;
}
section p, section ul {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
}
.legal {
  font-size: 0.98rem;
  color: #666;
  margin-top: 12px;
}
.legal a {
  color: #ff6a00;
  text-decoration: underline;
}
footer {
  text-align: center;
  padding: 24px 0;
  color: #e0e6ed;
  font-size: 1rem;
  background: #232f3e;
  margin-top: 32px;
  border-radius: 18px 18px 0 0;
}
.site-footer {
  background: #111;
  color: #fff;
  padding: 48px 0 0 0;
  border-radius: 0;
  margin-top: 0;
  box-shadow: none;
}
.footer-content {
  border-bottom: 1px solid #222;
  padding-bottom: 18px;
}
.footer-brand {
  flex: 1 1 220px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6a00;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}
.footer-nav {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #e0e6ed;
  text-decoration: none;
  font-size: 1.08rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #ff6a00;
}
.footer-contact {
  flex: 1 1 220px;
  font-size: 1rem;
}
.footer-contact a {
  color: #ff6a00;
  text-decoration: underline;
}
.footer-bottom {
  background: #111;
  color: #bbb;
  border-radius: 0;
  margin-top: 0;
  padding: 18px 0 12px 0;
}
.decor {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(30,40,60,0.10);
  margin-left: 24px;
  margin-top: 8px;
  margin-bottom: 8px;
  background: #fff;
  border: 2px solid #ff6a00;
}
.decor-hero {
  float: right;
  margin-top: 24px;
}
.decor-chisiamo {
  float: right;
}
.decor-privacy {
  float: right;
}
.decor-termini {
  float: right;
}
.pulse-cta {
  background: #ff6a00;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 22px 48px;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(255,106,0,0.18);
  animation: pulse 1.2s infinite;
  border: none;
  outline: none;
  display: inline-block;
  margin: 32px auto 0 auto;
  transition: background 0.2s, color 0.2s;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,106,0,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(255,106,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,106,0,0); }
}
.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(30,40,60,0.04);
  margin: 32px 0;
}
.animated-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.shape1 {
  left: 5vw; top: 10vh;
  animation: move1 12s ease-in-out infinite alternate;
}
.shape2 {
  right: 10vw; top: 20vh;
  animation: move2 14s ease-in-out infinite alternate;
}
.shape3 {
  left: 0; bottom: 0;
  animation: move3 18s ease-in-out infinite alternate;
}
.shape4 {
  right: 0; bottom: 0;
  animation: move4 16s ease-in-out infinite alternate;
}
@keyframes move1 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(40px) scale(1.08); }
}
@keyframes move2 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.12); }
}
@keyframes move3 {
  0% { transform: translateX(0) scale(1); }
  100% { transform: translateX(40px) scale(1.04); }
}
@keyframes move4 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.09); }
}
.icon-move {
  position: absolute;
  font-size: 2.2rem;
  opacity: 0.18;
  animation: floatIcon 8s linear infinite;
}
.icon1 { left: 8vw; top: 12vh; animation-delay: 0s; }
.icon2 { left: 80vw; top: 18vh; animation-delay: 2s; }
.icon3 { left: 20vw; top: 70vh; animation-delay: 1s; }
.icon4 { left: 60vw; top: 80vh; animation-delay: 3s; }
.icon5 { left: 45vw; top: 40vh; animation-delay: 4s; }
@keyframes floatIcon {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-30px) scale(1.1) rotate(10deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}
.floating-call-btn {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ff6a00;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 28px;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(255,106,0,0.18);
  text-decoration: none;
  transition: opacity 0.3s, transform 0.3s, box-shadow 0.2s;
  opacity: 1;
  transform: translateY(0);
  border: none;
  outline: none;
  cursor: pointer;
  animation: floatBtn 2.5s infinite ease-in-out;
}
.floating-call-btn svg {
  flex-shrink: 0;
}
.floating-call-btn.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px);
}
@keyframes floatBtn {
  0%, 100% { box-shadow: 0 4px 24px rgba(255,106,0,0.18); }
  50% { box-shadow: 0 8px 32px rgba(255,106,0,0.28); }
}
.footer-legal {
  color: #ccc;
  font-size: 1rem;
  margin: 0 0 18px 0;
  line-height: 1.5;
  padding: 0 0 0 0;
}
.footer-legal-narrow {
  max-width: 900px;
  margin: 0 auto 18px auto;
  padding: 0 24px;
}
.link-blu {
  color: #1976d2;
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
}
.link-blu:hover {
  color: #0d47a1;
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    border-radius: 0 0 24px 24px;
  }
  .hero-content, .hero-graphic {
    padding: 32px 18px;
  }
  .hero-graphic {
    min-height: 180px;
  }
  .footer-content {
    flex-direction: column;
    gap: 18px;
    padding: 0 18px 18px 18px;
  }
}
@media (max-width: 700px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 6vw 10px 6vw;
    gap: 10px;
  }
  .logo {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }
  nav {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
  }
  nav a {
    font-size: 1rem;
    margin: 0 4px;
  }
  .cta-btn.main-cta {
    margin-top: 8px;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 12px 0;
  }
  .hero {
    flex-direction: column;
    padding: 18px 4vw 18px 4vw;
    border-radius: 0 0 18px 18px;
    margin-bottom: 18px;
  }
  .hero-content {
    padding: 0;
  }
  .hero h1 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 18px;
  }
  section {
    padding: 18px 4vw;
    margin: 10px 0;
    border-radius: 14px;
  }
  .cta-section {
    min-height: 100px;
    margin: 18px 0;
    padding: 0;
  }
  .decor {
    width: 28px;
    height: 28px;
    margin-left: 4px;
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .site-footer {
    padding: 24px 0 0 0;
  }
  .footer-content {
    flex-direction: column;
    gap: 10px;
    padding: 0 4vw 10px 4vw;
  }
  .footer-brand, .footer-nav, .footer-contact {
    font-size: 0.98rem;
    margin-bottom: 8px;
  }
  .footer-bottom {
    font-size: 0.92rem;
    padding: 10px 0 8px 0;
  }
  .footer-legal {
    font-size: 0.95rem;
    margin-bottom: 10px;
    padding: 0;
  }
  .floating-call-btn {
    right: 8px;
    bottom: 8px;
    padding: 10px 14px;
    font-size: 0.98rem;
    border-radius: 24px;
    gap: 6px;
  }
  .footer-legal-narrow {
    max-width: 98vw;
    padding: 0 8px;
  }
} 