.elementor-48 .elementor-element.elementor-element-f1a891e{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-30fa6b7 *//* ============================================
   FLAVIO COPPO — SERVIZI — STYLES (v3)
   Uniform sections, consistent fonts, min-heights
   ============================================ */

/* ===== SHARED: SECTION BASE ===== */
.fc-srv-section {
  padding: var(--section-padding-y) var(--section-padding-x);
}
.fc-srv-section--alt {
  background: var(--color-bg-alt);
}

/* Shared lead paragraph (used across multiple sections) */
.fc-srv-lead {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 58ch;
  margin-top: var(--space-6);
}


/* ===== 1. HERO — centered, full-width, no image ===== */
.fc-srv-hero {
  display: flex;
  align-items: center;
  min-height: 70vh;
  padding: calc(var(--space-32) + var(--space-8)) var(--section-padding-x) var(--section-padding-y);
  background: var(--color-bg);
  text-align: center;
}
.fc-srv-hero .fc-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fc-srv-hero__title {
  color: var(--color-primary);
  max-width: 18ch;
}
.fc-srv-hero__intro {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--color-text-muted);
  line-height: 1.85;
  max-width: 58ch;
  margin-top: var(--space-8);
}
.fc-srv-hero__cta {
  margin-top: var(--space-10);
}


/* ===== 2. SUPPORTO CONTINUO (split cover) ===== */
.fc-srv-supporto {
  display: flex;
  flex-direction: column;
}
.fc-srv-supporto__cover {
  width: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.fc-srv-supporto__body {
  background: var(--color-bg-alt);
  padding: var(--section-padding-y) var(--section-padding-x);
}

/* Points grid */
.fc-srv-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.fc-srv-point {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-fast) var(--ease-out-quart),
              box-shadow var(--duration-fast) var(--ease-out-quart);
}
.fc-srv-point:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.fc-srv-point__num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
}
.fc-srv-point__title {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}
.fc-srv-point p {
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  font-size: clamp(0.925rem, 1.2vw, 1rem);
  line-height: 1.65;
}


/* ===== 3. SERVICE CARDS (privati + startup) ===== */
.fc-srv-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-top: var(--space-10);
}
.fc-srv-card {
  position: relative;
  padding: var(--space-8) var(--space-8) var(--space-10);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--duration-fast) var(--ease-out-quart),
              box-shadow var(--duration-fast) var(--ease-out-quart);
}
.fc-srv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.fc-srv-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-hover));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.fc-srv-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}
.fc-srv-card__text {
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: clamp(0.925rem, 1.2vw, 1rem);
}

/* Inline CTA */
.fc-srv-inline-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-12);
}


/* ===== 4. DUO BLOCK (Expat + SRL) ===== */
.fc-srv-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
.fc-srv-duo__block {
  padding: var(--space-10);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.fc-srv-duo__block .heading-h2 {
  margin-bottom: var(--space-6);
}
.fc-srv-duo__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.fc-srv-duo__body p {
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  font-size: clamp(0.925rem, 1.2vw, 1rem);
  line-height: 1.7;
}
.fc-srv-duo__text {
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  font-size: clamp(0.925rem, 1.2vw, 1rem);
  line-height: 1.8;
  margin-bottom: var(--space-2);
}
.fc-srv-duo__cta {
  margin-top: auto;
  padding-top: var(--space-8);
}

/* Callout */
.fc-srv-callout {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: var(--color-accent-light);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
}
.fc-srv-callout span {
  font-family: var(--font-sans);
  color: var(--color-text);
  font-size: 0.9rem;
}


/* ===== 5. NETWORK — full section with 3 items ===== */
.fc-srv-network__title {
  text-align: center;
}
.fc-srv-network-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-top: var(--space-10);
}
.fc-srv-network-item {
  padding: var(--space-8);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--duration-fast) var(--ease-out-quart),
              box-shadow var(--duration-fast) var(--ease-out-quart);
}
.fc-srv-network-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.fc-srv-network-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--color-accent-light);
  color: var(--color-accent);
  margin-bottom: var(--space-6);
}
.fc-srv-network-item .fc-srv-point__title {
  text-align: center;
  margin-bottom: var(--space-3);
}
.fc-srv-network-item p {
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  font-size: clamp(0.925rem, 1.2vw, 1rem);
  line-height: 1.7;
  max-width: 42ch;
  margin-inline: auto;
}


/* ===== 6. CTA FINALE ===== */
.fc-srv-cta {
  background: var(--color-bg-alt);
  padding: var(--section-padding-y) var(--section-padding-x);
}
.fc-srv-cta__inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.fc-srv-cta__title {
  color: var(--color-primary);
}
.fc-srv-cta__text {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  line-height: 1.8;
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (min-width: 768px) {
  .fc-srv-points {
    grid-template-columns: repeat(2, 1fr);
  }
  .fc-srv-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .fc-srv-duo {
    grid-template-columns: repeat(2, 1fr);
  }
  .fc-srv-network-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .fc-srv-section > .fc-container > .heading-h2 {
    text-align: center;
  }
  .fc-srv-lead {
    text-align: center;
    margin-inline: auto;
  }
}

@media (min-width: 1025px) {
  .fc-srv-supporto {
    flex-direction: row;
    min-height: 640px;
  }
  .fc-srv-supporto__cover {
    flex: 0 0 45%;
    min-height: unset;
  }
  .fc-srv-supporto__body {
    flex: 1;
    display: flex;
    align-items: center;
    padding: var(--space-16) var(--space-16) var(--space-16) var(--space-12);
  }
  .fc-srv-supporto__body > .fc-container {
    max-width: none;
    padding: 0;
  }
  .fc-srv-supporto__body .fc-srv-lead {
    text-align: left;
    margin-inline: 0;
  }
}/* End custom CSS */