.elementor-7 .elementor-element.elementor-element-2bd6dac{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--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-2b04261 *//* ============================================
   FLAVIO COPPO — HOMEPAGE STYLES
   Scoped CSS — importa global/style.css come base
   ============================================ */

/* ===== 1. HERO ===== */
.fc-hero {
  background: var(--color-bg-alt);
  color: var(--color-text);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: calc(var(--space-32) + var(--space-8)) var(--space-8) var(--space-16);
  position: relative;
  overflow: hidden;
}
.fc-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  gap: var(--space-10);
  align-items: center;
}
.fc-hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.fc-hero__title {
  color: var(--color-primary);
}
.fc-hero__subtitle {
  font-size: clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 52ch;
}
.fc-hero__actions {
  display: flex;
  gap: var(--space-4);
}
.fc-hero__fineco {
  color: var(--color-text-muted);
  max-width: 50ch;
}
.fc-hero__image {
  max-width: 350px;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.fc-hero__image img {
  width: 100%;
  height: 50vh;
  min-height: 300px;
  object-fit: cover;
  object-position: top center;
}
/* .fc-btn--lg now in global/style.css */

/* Hero elements hidden initially for GSAP choreography */
.fc-hero__title,
.fc-hero__subtitle,
.fc-hero__actions,
.fc-hero__fineco,
.fc-hero__image {
  opacity: 0;
}
/* Reduced motion: show everything immediately */
@media (prefers-reduced-motion: reduce) {
  .fc-hero__title,
  .fc-hero__subtitle,
  .fc-hero__actions,
  .fc-hero__fineco,
  .fc-hero__image {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

/* ===== 2. APPROCCIO ===== */
.fc-approccio {
  background: var(--color-bg);
}
.fc-approccio__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  margin-bottom: var(--space-16);
}
.fc-approccio__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.fc-approccio__subtitle {
  color: var(--color-accent);
}
.fc-approccio__body {
  color: var(--color-text);
  max-width: 55ch;
  line-height: 1.8;
}
.fc-approccio__visual {
  border-radius: var(--radius-md);
  width: 100%;
  min-height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Pilastri */
.fc-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
.fc-pillar {
  text-align: center;
  padding: var(--space-8);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  transition: transform var(--duration-fast) var(--ease-out-quart),
              box-shadow var(--duration-fast) var(--ease-out-quart);
}
.fc-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.fc-pillar__icon {
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  display: inline-flex;
}
.fc-pillar__title {
  margin-bottom: var(--space-3);
  color: var(--color-primary);
}
.fc-pillar__text {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ===== 3. TARGET ===== */
.fc-target__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-gap);
}
.fc-target-card {
  display: block;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-fast) var(--ease-out-quart),
              box-shadow var(--duration-fast) var(--ease-out-quart);
}
.fc-target-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.fc-target-card__image {
  overflow: hidden;
  aspect-ratio: 3/2;
}
.fc-target-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out-quart);
}
.fc-target-card:hover .fc-target-card__image img {
  transform: scale(1.05);
}
.fc-target-card__content {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.fc-target-card__title {
  color: var(--color-primary);
}
.fc-target-card__text {
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== 4. SERVIZI PREVIEW ===== */
.fc-services-preview__heading {
  text-align: center;
  margin-bottom: var(--space-12);
}
.fc-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}
.fc-service-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  transition: transform var(--duration-fast) var(--ease-out-quart),
              box-shadow var(--duration-fast) var(--ease-out-quart),
              background-color var(--duration-fast) var(--ease-out-quart);
}
.fc-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--color-surface);
}
.fc-service-card__icon {
  flex-shrink: 0;
  color: var(--color-primary);
  width: 40px;
  height: 40px;
}
.fc-service-card__title {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
}
.fc-services-preview__cta {
  text-align: center;
}

/* ===== 5. TESTIMONIANZE ===== */
.fc-testimonials__heading {
  text-align: center;
  margin-bottom: var(--space-10);
}

/* ===== 6. CHI SONO PREVIEW ===== */
.fc-about-preview__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  align-items: center;
}
.fc-about-preview__image {
  max-width: 350px;
  width: 100%;
}
.fc-about-preview__image img {
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}
.fc-about-preview__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* ===== 7. METODO — Full-viewport scroll experience ===== */
.fc-method {
  background: var(--color-bg-alt);
  color: var(--color-text);
  overflow: hidden;
  position: relative;
}
.fc-method__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
  position: relative;
}

/* Heading — fades out as scroll begins */
.fc-method__heading {
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 0;
  padding-bottom: var(--space-8);
}

/* Progress bar */
.fc-method__progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(11, 29, 58, 0.08);
  z-index: 2;
}
.fc-method__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  will-change: width;
}

/* Viewport — full-height stage */
.fc-method__viewport {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  min-height: 50vh;
}

/* Step — each is a full centered card */
.fc-method__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-12) 0;
  opacity: 0;
  transform: translateY(40px);
}

/* Massive number */
.fc-method__number {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 22vw, 16rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 0.85;
  opacity: 0.15;
  will-change: transform, opacity;
  user-select: none;
}

/* Step body */
.fc-method__step-body {
  max-width: 600px;
}
.fc-method__step-title {
  color: var(--color-primary);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}
.fc-method__step-text {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.75;
}

/* CTA */
.fc-method__cta {
  text-align: center;
  padding-top: var(--space-12);
  padding-bottom: var(--space-4);
  opacity: 0;
  transform: translateY(30px) scale(0.9);
}

/* Mobile: native scroll with IO reveals */
@media (max-width: 767px) {
  .fc-method__number {
    font-size: clamp(5rem, 25vw, 8rem);
  }
  .fc-method__step-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }
}

/* ===== 8. BLOG PREVIEW ===== */
.fc-blog-preview__intro {
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
  max-width: 60ch;
}
.fc-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-gap);
  margin-bottom: var(--space-10);
  align-items: stretch;
}
.fc-blog-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  translate: none !important;
  transform: none !important;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-fast) var(--ease-out-quart),
              box-shadow var(--duration-fast) var(--ease-out-quart);
}
.fc-blog-card:hover {
  box-shadow: var(--shadow-md);
}
.fc-blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.fc-blog-card__image {
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-bg-alt);
}
.fc-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out-quart);
}
.fc-blog-card:hover .fc-blog-card__image img {
  transform: scale(1.05);
}
.fc-blog-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-3);
}
.fc-blog-card__date {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.fc-blog-card__title {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
  min-height: calc(1.3em * 2);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--duration-micro) var(--ease-out-quart);
}
.fc-blog-card:hover .fc-blog-card__title {
  color: var(--color-accent);
}
.fc-blog-card__excerpt {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fc-blog-preview__more {
  text-align: center;
}

/* ===== 9. CTA FINALE ===== */
.fc-cta-final {
  background: var(--color-bg-alt);
  color: var(--color-text);
}
.fc-cta-final__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
}
.fc-cta-final__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.fc-cta-final__title {
  color: var(--color-primary);
}
.fc-cta-final__body {
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 50ch;
}
.fc-cta-final__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.fc-cta-final__details li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-accent);
  font-size: 0.9375rem;
}
.fc-cta-final__details li span {
  color: var(--color-text-muted);
}
.fc-cta-final__microcopy {
  color: var(--color-text-muted);
}
.fc-cta-final__expat {
  color: var(--color-text-muted);
  font-style: italic;
}

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

/* Tablet (768px+) */
@media (min-width: 768px) {
  .fc-hero__inner {
    flex-direction: row;
    align-items: center;
  }
  .fc-hero__content {
    flex: 1 1 55%;
  }
  .fc-hero__image {
    flex: 1 1 40%;
    max-width: 100%;
  }
  .fc-hero__image img {
    height: 55vh;
    min-height: 380px;
    max-height: 550px;
  }

  .fc-approccio__grid {
    flex-direction: row;
    align-items: stretch;
  }
  .fc-approccio__text {
    flex: 1 1 55%;
  }
  .fc-approccio__visual {
    flex: 1 1 45%;
    min-height: 450px;
  }

  .fc-pillars {
    grid-template-columns: repeat(3, 1fr);
  }

  .fc-target__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fc-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fc-about-preview__grid {
    flex-direction: row;
  }
  .fc-about-preview__image {
    flex: 0 0 40%;
    max-width: none;
  }
  .fc-about-preview__content {
    flex: 1 1 55%;
  }

  .fc-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fc-cta-final__grid {
    flex-direction: row;
    align-items: flex-start;
  }
  .fc-cta-final__info {
    flex: 1 1 55%;
  }
  .fc-cta-final__form {
    flex: 1 1 45%;
    margin-top: calc(var(--space-16) + var(--space-2));
  }
}

@media (min-width: 1025px) {
  .fc-cta-final__form {
    margin-top: var(--space-20);
  }
}

/* Desktop (1025px+) */
@media (min-width: 1025px) {
  .fc-hero {
    padding-top: var(--space-32);
    padding-inline: var(--space-16);
  }
  .fc-hero__inner {
    gap: var(--space-16);
  }
  .fc-hero__content {
    flex: 1 1 60%;
  }
  .fc-hero__image {
    flex: 1 1 40%;
  }
  .fc-hero__image img {
    height: 65vh;
    min-height: 450px;
    max-height: 650px;
  }

  .fc-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fc-blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Method — GSAP pinned full-viewport */
  .fc-method.is-pinned {
    min-height: 100vh;
    overflow: visible;
    padding-bottom: 0;
  }
  .fc-method.is-pinned + .fc-blog-preview,
  .fc-method.is-pinned ~ .fc-blog-preview {
    padding-top: var(--space-12);
  }
  .fc-method.is-pinned .fc-method__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  .fc-method.is-pinned .fc-method__viewport {
    flex: 1;
    display: grid;
    place-items: center;
    min-height: 0;
    gap: 0;
  }
  .fc-method.is-pinned .fc-method__step {
    grid-area: 1 / 1;
    width: 100%;
    padding: 0;
    transition: none;
    opacity: 0;
    transform: none;
  }
  .fc-method.is-pinned .fc-method__number {
    font-size: clamp(10rem, 25vw, 20rem);
    opacity: 0;
  }
  .fc-method.is-pinned .fc-method__step-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
  }
  .fc-method.is-pinned .fc-method__step-text {
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  }
  .fc-method.is-pinned .fc-method__cta {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 2;
    padding: 0;
    transition: none;
    pointer-events: none;
  }
  .fc-method.is-pinned .fc-method__cta > * {
    pointer-events: auto;
  }
}/* End custom CSS */