/* AVVOCÀ - HOME PAGE STYLES */

.home-container {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #667eea 100%);
  color: white;
  padding: 120px 20px 100px;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff10"/><circle cx="20" cy="20" r="1" fill="%23ffffff15"/><circle cx="80" cy="30" r="1.5" fill="%23ffffff08"/></svg>') repeat;
  animation: float 20s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-text * {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.hero-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.hero-logo {
  height: 120px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 1rem;
  /*box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);*/
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.hero h2 .highlight {
  display: inline-block;
}

.highlight {
  background: linear-gradient(135deg, #eff312, #f1c40f, #f39c12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-description {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  white-space: normal;
  word-wrap: break-word;
}

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

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero-feature i {
  /*color: #667eea;*/
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Effetto pulsazione per le CTA principali */
.cta-buttons .btn-primary {
  animation: gradientShift 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6), 0 0 0 10px rgba(243, 156, 18, 0.1);
  }
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #f39c12, #f1c40f, #f39c12);
  background-size: 200% 200%;
  border: none;
  color: #2c3e50;
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
  animation: gradientShift 3s ease-in-out infinite;
  font-weight: 700;
  text-shadow: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.7s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(243, 156, 18, 0.6);
  color: #2c3e50;
  text-decoration: none;
  background: linear-gradient(135deg, #f1c40f, #f39c12, #e67e22);
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

/* Stili specifici per btn-outline nella home */
.btn-outline {
  background: linear-gradient(135deg, transparent, rgba(241, 196, 15, 0.1));
  color: #f1c40f;
  border: 2px solid #f1c40f;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(241, 196, 15, 0.2);
  animation: buttonGlow 2s ease-in-out infinite alternate;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(241, 196, 15, 0.3), transparent);
  transition: left 0.7s;
}

.btn-outline:hover::before {
  left: 100%;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  color: #2c3e50;
  border-color: #f39c12;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(241, 196, 15, 0.4);
  text-decoration: none;
}

@keyframes buttonGlow {
  0% {
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.2);
  }
  100% {
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4), 0 0 0 3px rgba(241, 196, 15, 0.1);
  }
}

/* Effetti speciali per il testo "Richiedi Consulenza" */
.btn-outline span {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-outline i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-outline:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* Stili specifici per la sezione services */
.services-cta .btn-outline {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(241, 196, 15, 0.1));
  color: #f39c12;
  border: 2px solid #f39c12;
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2);
}

.services-cta .btn-outline:hover {
  background: linear-gradient(135deg, #f39c12, #f1c40f);
  color: white;
  border-color: #f1c40f;
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Services Preview Section */
.services-preview {
  padding: 80px 20px;
  background: #f8fafb;
}

.services-preview .section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.services-preview .section-header h3 {
  font-size: 2.5rem;
  color: #2c5364;
  margin-bottom: 1rem;
  font-weight: 600;
}

.services-preview .section-header p {
  font-size: 1.2rem;
  color: #2c5364;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Carousel Container */
.services-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.services-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.service-slide {
  display: none;
  padding: 0;
}

.service-slide.active {
  display: block;
}

/* Services Grid */
.services-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.services-grid .service-card {
  background: white !important;
  border-radius: 20px !important;
  padding: 3rem 2rem !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  border: 1px solid rgba(102, 126, 234, 0.1) !important;
  position: relative !important;
  text-align: center !important;
  width: 320px !important;
  height: 380px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.services-grid .service-card:hover {
  transform: translateY(-15px) !important;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15) !important;
  border-color: rgba(102, 126, 234, 0.2) !important;
}

.service-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: scale(1.05);
}

.service-card.featured:hover {
  transform: scale(1.05) translateY(-12px);
}

.featured-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6b6b;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #2a3f6c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}

.service-card.featured .service-icon {
  /*background: linear-gradient(135deg, #667eea, #667eea);*/
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.service-icon i {
  font-size: 1.5rem;
  color: white;
}

.services-grid .service-card h4 {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #2d3748 !important;
  margin-bottom: 1rem !important;
  z-index: 2 !important;
  position: relative !important;
  line-height: 1.3 !important;
  flex-shrink: 0 !important;
}

.service-card.featured h4 {
  color: white;
}

.services-grid .service-card p {
  color: #718096 !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  z-index: 2 !important;
  position: relative !important;
  margin: 0 !important;
  flex-grow: 1 !important;
  display: flex !important;
  align-items: center !important;
}

/* Angular-style service card effects */
.services-grid .service-card:before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(102, 126, 234, 0.06) 100%) !important;
  border-radius: 20px !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
}

.services-grid .service-card:hover:before {
  opacity: 1 !important;
}

.services-grid .service-card i {
  font-size: 3.5rem !important;
  color: #eacb66 !important;
  margin-bottom: 1.5rem !important;
  transition: all 0.4s ease !important;

  z-index: 2 !important;
  position: relative !important;
}

.services-grid .service-card:hover i {
  color: #eacb66 !important;
  transform: scale(1.1) !important;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.services-grid .service-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-top: auto;
}

.services-grid .price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2a3f6c;
}

/*.services-grid .service-card.featured .price {
  color: white;
}*/

.services-grid .period {
  color: #6c757d;
  font-size: 0.85rem;
}

/*.services-grid .service-card.featured .period {
  color: rgba(255, 255, 255, 0.8);
}*/

.service-features {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-features .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.service-features .feature i {
  font-size: 1.5rem;
  color: #667eea;
}

.service-features .feature span {
  font-size: 0.9rem;
  color: #6c757d;
}

/* Services Carousel */
.services-carousel {
  /*position: relative;*/
  max-width: 500px;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

/*.service-slide {
  min-width: 100%;
  padding: 3rem;
  background: white;
  display: flex;
  align-items: center;
  gap: 3rem;
}*/

.service-content h3 {
  font-size: 1.8rem;
  color: #2c5364;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-content p {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.service-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 2rem;
}

.service-image {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #f8fafb, #e9ecef);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border: none;
  background: #667eea;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #5a67d8;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #667eea;
}

/* Law Areas Section */
.law-areas {
  padding: 120px 20px;
  background: #f8fafb;
}

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

.area-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.area-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.area-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.area-card h3 {
  font-size: 1.3rem;
  color: #2c5364;
  margin-bottom: 1rem;
  font-weight: 600;
}

.area-card p {
  color: #6c757d;
  line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
  padding: 80px 20px;
  /*background: rgb(102 126 234 / 12%);*/
}

.why-choose .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-choose .section-header h3 {
  font-size: 2.5rem;
  color: #2c5364;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.why-choose .why-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 800px;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-features {
  display: grid;
  gap: 1.5rem;
}

.why-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #2a3f6c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-content h5 {
  color: #2c5364;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-content p {
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

.why-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2a3f6c;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  color: #6c757d;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.3;
}

/* Areas of Law Section */
.areas-of-law .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.areas-of-law .section-header h2 {
  font-size: 2.5rem;
  color: #2c5364;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.areas-of-law .section-header p {
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 800px;
}

/* Process Section */
.process {
  padding: 80px 20px;
  background: white;
}

.process .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process .section-header h3 {
  font-size: 2.5rem;
  color: #2c5364;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.process .section-header p {
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 800px;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  max-width: 200px;
  position: relative;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #2a3f6c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f8fafb, #e9ecef);
  border: 2px solid #2a3f6c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-icon i {
  font-size: 1.8rem;
  color: #2a3f6c;
}

.step h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c5364;
  margin-bottom: 1rem;
}

.step p {
  color: #6c757d;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #667eea 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff10"/><circle cx="20" cy="20" r="1" fill="%23ffffff15"/><circle cx="80" cy="30" r="1.5" fill="%23ffffff08"/></svg>') repeat;
  animation: float 20s linear infinite;
}

@keyframes float {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-section .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* CTA buttons nella sezione finale hanno effetti speciali */
.cta-section .btn-primary {
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  animation: gradientShift 3s ease-in-out infinite, glow 2s ease-in-out infinite;
}

.cta-section .btn-outline {
  font-size: 1.1rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(241, 196, 15, 0.2));
  color: #f1c40f;
  border: 2px solid #f1c40f;
  animation: buttonGlow 2s ease-in-out infinite alternate;
  box-shadow: 0 6px 20px rgba(241, 196, 15, 0.3);
}

.cta-section .btn-outline:hover {
  background: linear-gradient(135deg, #f1c40f, #f39c12);
  color: #2c3e50;
  border-color: #f39c12;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(241, 196, 15, 0.5);
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.8), 0 0 0 15px rgba(243, 156, 18, 0.1);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .service-slide {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .why-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .why-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-feature {
    padding: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .process {
    padding: 80px 20px;
  }
  
  .process-steps {
    gap: 3rem;
    margin-top: 3rem;
  }
  
  .step {
    max-width: 250px;
  }
  
  .step-icon {
    width: 70px;
    height: 70px;
  }
  
  .step-icon i {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 200px;
  }
}

/* Responsiveness aggiuntiva per Hero Section */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  

  
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-logo-section {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: calc(100vh - 70px);
    padding: 1rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 1.3rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
}
