:root {
  --primary: #FFB400;
  --primary-dark: #F09000;
  --primary-light: #FFD54F;
  --secondary: #111;
  --text: #333;
  --light: #FFFDF7;
  --accent: #FFF8E1;
  --gradient: linear-gradient(135deg, var(--primary), var(--primary-light));
  --gradient-hover: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
}

header {
  background: linear-gradient(135deg, var(--secondary) 0%, #000 100%);
  color: white;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  margin-top: 74px; /* navbar height + padding */
}

header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.2;
  z-index: 1;
}

/* Aggiungiamo un accento arancione decorativo nell'header */
header::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 10%;
  width: 200px;
  height: 173px;
  background: white;
  opacity: 0.05;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 1;
  animation: floatHexSmall 25s ease-in-out infinite;
}

header::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 300px;
  height: 260px;
  background: white;
  opacity: 0.04;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 1;
  animation: rotateHexSlow 30s linear infinite;
}

/* Aggiungiamo un terzo esagono più grande per effetto di profondità */
header::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 5%;
  width: 400px;
  height: 346px;
  background: white;
  opacity: 0.03;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 1;
  animation: floatHexSlow 25s ease-in-out infinite;
}

@keyframes floatHexSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(-5deg); }
}

header > * {
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

section {
  padding: 5rem 2rem;
  background: white;
  position: relative;
}

/* Aggiungiamo decorazioni arancioni alternate nelle sezioni */
section:nth-child(odd)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: var(--gradient);
  opacity: 0.3;
}

section:nth-child(even) {
  background: var(--light);
}

h1, h2, h3 {
  text-align: center;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--secondary);
}

h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient);
  margin: 0.8rem auto 0;
}

.text-center h2::after {
  margin-left: auto;
  margin-right: auto;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.cta-button {
  display: inline-block;
  background: var(--gradient);
  color: var(--secondary);
  padding: 1rem 2rem;
  margin: 1rem 0;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3);
}

.cta-button:hover {
  background: var(--gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 180, 0, 0.4);
}

.highlight {
  background: var(--accent);
  padding: 2rem;
  border-radius: 10px;
  border-left: none;
  border-top: 4px solid var(--primary);
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.highlight::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 104px;
  background: var(--primary);
  opacity: 0.1;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: 40px;
  width: 60px;
  height: 52px;
  background: var(--primary);
  opacity: 0.07;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
  animation: pulseHex 4s ease-in-out infinite;
}

.note {
  font-style: italic;
  color: #666;
  font-size: 1.1rem;
  border-left: 3px solid var(--primary-light);
  padding-left: 1rem;
}

ul {
  list-style-position: inside;
  margin: 1.5rem 0;
}

li {
  margin: 0.8rem 0;
  font-size: 1.1rem;
}

li::marker {
  color: var(--primary);
}

footer {
  background: var(--secondary);
  color: white;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 10%;
  width: 150px;
  height: 130px;
  background: var(--primary);
  opacity: 0.15;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
}

footer::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 100px;
  height: 87px;
  background: var(--primary);
  opacity: 0.1;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
  animation: rotateHex 45s linear infinite;
}

footer ul {
  list-style: none;
}

footer li {
  margin: 1rem 0;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 130px;
  background: var(--primary);
  opacity: 0.05;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
}

.card::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -30px;
  width: 80px;
  height: 69px;
  background: var(--primary);
  opacity: 0.07;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
  animation: rotateHex 30s linear infinite;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.15);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .form-group.checkbox-group label {
    font-size: 0.9rem;
  }
}

/* Animazioni */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

/* Form Styles */
.form-section {
  background: white;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -5%;
  right: -5%;
  width: 400px;
  height: 346px;
  background: var(--primary);
  opacity: 0.02;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
  transform: rotate(15deg);
  animation: pulseHexLarge 30s ease-in-out infinite;
}

.form-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 180px;
  height: 156px;
  background: var(--primary);
  opacity: 0.08;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
}

.contact-form {
  max-width: 800px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem;
  background: var(--light);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group.checkbox-group {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.form-group.text-center {
  grid-column: 1 / -1;
  align-items: center;
}

.contact-form label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--secondary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--primary);
}

.contact-form button {
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 1rem 3rem;
}

.contact-form button:hover {
  transform: translateY(-2px);
}

/* Form Message Styles */
.form-message {
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

.form-message.success {
  background-color: var(--accent);
  color: var(--primary-dark);
  border: 1px solid var(--primary-light);
}

.form-message.error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

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

/* Disabled button state */
.contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #243747;
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  display: block;
  padding: 0.5rem 0;
}

.logo-img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

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

/* Adjust header padding to account for fixed navbar */
header {
  margin-top: 74px; /* navbar height + padding */
}

/* Footer List Styles */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 800px;
}

.footer-list li {
  margin: 1.2rem 0;
  font-size: 1.1rem;
}

/* Ensure emojis are centered with text */
.footer-list li, h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Hexagon Decorative Elements */
.hexagon-bg {
  position: absolute;
  width: 200px;
  height: 173px;
  background: var(--primary);
  opacity: 0.03;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
}

/* Hexagon Animations */
@keyframes rotateHex {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatHex {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes pulseHex {
  0%, 100% { transform: scale(1); opacity: 0.07; }
  50% { transform: scale(1.2); opacity: 0.12; }
}

/* Add decorative hexagons to some sections */
section:nth-child(3n)::before {
  content: '';
  position: absolute;
  right: 15%;
  top: 30%;
  width: 400px;
  height: 346px;
  background: var(--primary);
  opacity: 0.03;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
  transform: rotate(30deg);
}

section:nth-child(3n+1)::after {
  content: '';
  position: absolute;
  left: 10%;
  bottom: 20%;
  width: 200px;
  height: 173px;
  background: var(--primary);
  opacity: 0.06;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
}

/* Section separators */
section:nth-child(odd)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: var(--gradient);
  opacity: 0.3;
}

/* Special separator for highlight boxes */
.highlight {
  text-align: center;
  border-left: none;
  border-top: 4px solid var(--primary);
}

/* Center all section content by default */
section .container {
  text-align: center;
}

/* Reset text alignment for specific elements that need left alignment */
.card ul, 
.footer-list li {
  text-align: left;
}

/* Ensure form labels stay left-aligned */
.form-group label {
  text-align: left;
}

/* Center form headings */
.form-section h2,
.form-section p {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Header specific styles */
.header-intro {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 2rem auto;
  line-height: 1.8;
}

header .text-center {
  margin-top: 2.5rem;
}

header .cta-button {
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
}

header h2 {
  color: white;
  font-size: 2rem;
  margin-top: 1rem;
  text-align: center;
}

header h2::after {
  display: none;
}

/* Icon Styles */
.card ul li i,
.footer-list li i {
  margin-right: 10px;
  color: var(--primary);
}

.highlight-icon {
  color: var(--primary);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.highlight-icon:hover {
  opacity: 1;
  transform: scale(1.1);
  color: var(--primary-dark);
}

.card ul li {
  display: flex;
  align-items: center;
}

.card ul li i {
  min-width: 25px;
  text-align: center;
}

.text-primary {
  color: var(--primary) !important;
}

/* Adjust footer list items for icon alignment */
.footer-list li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-list li i {
  margin-right: 10px;
}

.stars-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1.5rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
}

.service-card {
  text-align: center;
  padding: 2rem;
  background: #e3e3e3;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.15);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card i {
  color: var(--primary);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--text);
  line-height: 1.6;
}

/* Responsive adjustments for services grid */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
}

/* Guarantee Banner */
.guarantee-banner {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: white;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.2);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.guarantee-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.3);
}

.guarantee-banner i {
  font-size: 2.5rem;
  opacity: 0.9;
}

.guarantee-banner p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
}

.guarantee-banner strong {
  font-weight: 600;
}

@media (max-width: 768px) {
  .guarantee-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .guarantee-banner p {
    font-size: 1.1rem;
  }
}

/* Full Width Image Section */
.full-width-image-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-width-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.full-width-image-section:hover .full-width-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.image-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.image-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.image-content h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: var(--gradient);
  margin: 1rem auto 0;
}

.image-content p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .full-width-image-section {
    height: 400px;
  }

  .image-content h2 {
    font-size: 2.2rem;
  }

  .image-content p {
    font-size: 1.2rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: var(--light);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 15%;
  width: 150px;
  height: 130px;
  background: var(--primary);
  opacity: 0.06;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
  animation: floatHexSmall 20s ease-in-out infinite;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 300px;
  height: 260px;
  background: var(--primary);
  opacity: 0.03;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
  animation: rotateHexSlow 35s linear infinite;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.15);
}

.testimonial-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.testimonial-content blockquote {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  margin-bottom: 1.5rem;
}

.testimonial-author strong {
  display: block;
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.testimonial-author span {
  color: var(--primary);
  font-size: 0.95rem;
}

.testimonial-result {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.result-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.testimonial-result p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonial-result strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 4rem 1.5rem;
  }

  .testimonials-grid {
    gap: 2rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}

/* Thumbs Up Icon */
.thumbs-up-container {
  text-align: center;
  margin: 2rem 0;
}

.thumbs-up-container i {
  font-size: 3rem;
  color: var(--primary);
  transform: translateY(0);
  transition: all 0.3s ease;
  animation: thumbsPulse 2s infinite;
}

.thumbs-up-container i:hover {
  transform: translateY(-5px) scale(1.1);
  color: var(--primary-dark);
}

@keyframes thumbsPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Webcam Icon */
.webcam-icon {
  text-align: center;
  margin-bottom: 1.5rem;
}

.webcam-icon i {
  font-size: 2.5rem;
  color: var(--primary);
  background: var(--light);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.15);
  transition: all 0.3s ease;
  animation: pulseWebcam 2s infinite;
}

.webcam-icon i:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.25);
  color: var(--primary-dark);
}

@keyframes pulseWebcam {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.15);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.25);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.15);
  }
}

/* Video Call Section */
.videocall-section {
  margin: 3rem 0;
  text-align: left;
  padding: 2rem;
  background: var(--light);
  border-radius: 15px;
}

.videocall-section h3 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.videocall-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
}

.feature-intro {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.feature-card {
  padding: 1.5rem;
  text-align: center;
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.15);
}

.feature-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card h4 {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.time-value-note {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.time-value-note i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.time-value-note p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.time-value-note strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .videocall-section {
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .videocall-section h3 {
    font-size: 1.5rem;
  }

  .time-value-note {
    flex-direction: column;
    text-align: center;
  }

  .time-value-note i {
    margin: 0 auto 1rem;
  }
}

/* Additional Hexagons */
section:nth-child(2n)::before {
  content: '';
  position: absolute;
  right: 5%;
  top: 20%;
  width: 120px;
  height: 104px;
  background: var(--primary);
  opacity: 0.04;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
  animation: floatHexSmall 15s ease-in-out infinite;
}

section:nth-child(3n)::after {
  content: '';
  position: absolute;
  left: 8%;
  bottom: 15%;
  width: 200px;
  height: 173px;
  background: var(--primary);
  opacity: 0.05;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
  animation: rotateHexSlow 40s linear infinite;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 15%;
  width: 150px;
  height: 130px;
  background: var(--primary);
  opacity: 0.06;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
  animation: floatHexSmall 20s ease-in-out infinite;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 300px;
  height: 260px;
  background: var(--primary);
  opacity: 0.03;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
  animation: rotateHexSlow 35s linear infinite;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -5%;
  right: -5%;
  width: 400px;
  height: 346px;
  background: var(--primary);
  opacity: 0.02;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 0;
  transform: rotate(15deg);
  animation: pulseHexLarge 30s ease-in-out infinite;
}

@keyframes floatHexSmall {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-10px, -15px) rotate(5deg); }
}

@keyframes pulseHexLarge {
  0%, 100% { transform: scale(1) rotate(15deg); }
  50% { transform: scale(1.1) rotate(20deg); }
}

/* Update existing hexagon animations for variety */
@keyframes rotateHexSlow {
  from { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(180deg) translateY(-20px); }
  to { transform: rotate(360deg) translateY(0); }
}

/* Add more subtle hexagons to the header */
header::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 10%;
  width: 200px;
  height: 173px;
  background: white;
  opacity: 0.05;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 1;
  animation: floatHexSmall 25s ease-in-out infinite;
}

header::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 300px;
  height: 260px;
  background: white;
  opacity: 0.04;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 1;
  animation: rotateHexSlow 30s linear infinite;
} 

/* Stats Container */
.stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-item i {
  color: var(--primary);
  margin-bottom: 1rem;
}

.stat-item strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

/* Achievement List */
.achievement-list {
  list-style: none;
  margin: 2rem 0;
}

.achievement-list li {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  font-size: 1.1rem;
}

.achievement-list li i {
  color: var(--primary);
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* Steps Container */
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.step-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

/* FAQ Container */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.faq-item h3 i {
  color: var(--primary);
  margin-right: 1rem;
}

/* Author Card */
.author-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin: 3rem 0;
}

.author-info {
  max-width: 600px;
  margin: 0 auto;
}

.author-info i.fa-user-circle {
  color: var(--primary);
  margin-bottom: 1rem;
}

.author-credentials {
  list-style: none;
  margin: 2rem 0;
}

.author-credentials li {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  font-size: 1.1rem;
}

.author-credentials li i {
  color: var(--primary);
  margin-right: 1rem;
  min-width: 20px;
}

/* Service Cards Highlight */
.service-card.highlight-card {
  border: 2px solid var(--primary-light);
  transform: scale(1.05);
}

.service-card.highlight-card.featured {
  background: var(--gradient);
  color: var(--secondary);
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 180, 0, 0.2);
}

.service-card.highlight-card.featured:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(255, 180, 0, 0.3);
}

.service-card.highlight-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

.service-card.highlight-card.featured h3,
.service-card.highlight-card.featured .price,
.service-card.highlight-card.featured i {
  color: white;
}

.service-card.highlight-card.featured .feature-list li {
  color: white;
}

.service-card.highlight-card.featured::after {
  content: '⭐ Soluzione TOP';
  position: absolute;
  top: 1rem;
  right: -3rem;
  background: var(--primary-dark);
  color: white;
  padding: 0.5rem 3rem;
  transform: rotate(30deg);
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.service-card.disabled-card {
  opacity: 0.7;
}

.service-card .price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-dark);
  margin: 1rem 0;
}

.service-card .feature-list {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.service-card .feature-list li {
  margin: 0.8rem 0;
  padding-left: 1.5rem;
  position: relative;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .step-card {
    margin-top: 2rem;
  }

  .service-card.highlight-card {
    transform: none;
    order: -1;
  }

  .author-credentials li {
    flex-direction: column;
    text-align: center;
  }

  .author-credentials li i {
    margin-bottom: 0.5rem;
  }
} 