/* ============================
   FYNYNTRA HUB - MAIN STYLES
   Retro Modern Design System
   ============================ */


:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE7D5;
  --mustard: #C8933A;
  --mustard-light: #D9A84E;
  --mustard-dark: #A37428;
  --terracotta: #C4583A;
  --terracotta-light: #D46A4C;
  --olive: #6B7A47;
  --olive-light: #8A9B5E;
  --charcoal: #2C2416;
  --charcoal-mid: #3D3122;
  --warm-gray: #7A6E5F;
  --warm-gray-light: #A09487;
  --white-warm: #FDFAF4;

  --shadow-sm: 0 2px 8px rgba(44,36,22,0.08), 0 1px 3px rgba(44,36,22,0.05);
  --shadow-md: 0 8px 24px rgba(44,36,22,0.12), 0 2px 8px rgba(44,36,22,0.06);
  --shadow-lg: 0 20px 48px rgba(44,36,22,0.15), 0 6px 16px rgba(44,36,22,0.08);
  --shadow-mustard: 0 8px 32px rgba(200,147,58,0.25), 0 2px 8px rgba(200,147,58,0.12);
  --shadow-terracotta: 0 8px 32px rgba(196,88,58,0.22), 0 2px 8px rgba(196,88,58,0.10);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --hdr-h: 72px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }


h1, h2, h3, h4, h5 {
  font-family: 'Unbounded', sans-serif;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
h5 { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
p { color: var(--warm-gray); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }


.sec-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sec { padding: 80px 0; }


.sec-label {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mustard);
  background: rgba(200,147,58,0.1);
  border: 1px solid rgba(200,147,58,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.sec-label-lt { color: var(--cream); background: rgba(245,240,232,0.15); border-color: rgba(245,240,232,0.3); }


.sec-hd { text-align: center; margin-bottom: 56px; }
.sec-hd .sec-title { margin: 12px 0; }
.sec-hd .sec-sub { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Unbounded', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}
.btn-primary {
  background: var(--mustard);
  color: var(--white-warm);
  box-shadow: var(--shadow-mustard);
}
.btn-primary:hover {
  background: var(--mustard-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,147,58,0.35), 0 4px 12px rgba(200,147,58,0.15);
}
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid rgba(44,36,22,0.2);
}
.btn-ghost:hover {
  border-color: var(--mustard);
  color: var(--mustard);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--mustard);
  border: 2px solid var(--mustard);
}
.btn-outline:hover {
  background: var(--mustard);
  color: var(--white-warm);
  transform: translateY(-2px);
}
.btn-cta-main {
  background: var(--white-warm);
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
}
.btn-cta-main:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-thanks-home {
  background: transparent;
  color: var(--white-warm);
  border: 2px solid var(--white-warm);
  font-size: 0.85rem;
  padding: 16px 36px;
}
.btn-thanks-home:hover {
  background: var(--white-warm);
  color: var(--mustard-dark);
  transform: translateY(-2px);
}

/* ============================
   HEADER
   ============================ */
.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--hdr-h);
  transition: var(--transition);
}
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: var(--hdr-h);
  max-width: 1400px;
  margin: 0 auto;
}
.hdr-logo { display: flex; align-items: center; }
.hdr-logo-img { height: 36px; width: auto; }

.hdr-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}
.hdr-burger:hover { background: rgba(200,147,58,0.1); }
.hdr-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}


.hdr.sticky {
  background: var(--white-warm);
  box-shadow: var(--shadow-md);
}


.hdr-flip-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hdr-h);
  perspective: 1200px;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
}
.hdr-flip-wrap.active {
  pointer-events: all;
  opacity: 1;
  height: 100vh;
}
.hdr-flip-inner {
  position: relative;
  width: 100%;
  height: var(--hdr-h);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hdr-flip-wrap.active .hdr-flip-inner {
  transform: rotateX(-180deg);
  height: 100vh;
}
.hdr-flip-front,
.hdr-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.hdr-flip-front {
  background: var(--white-warm);
  box-shadow: var(--shadow-md);
}
.hdr-flip-back {
  background: var(--charcoal);
  transform: rotateX(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.hdr-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 40px;
}
.hdr-nav-lnk {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--cream);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
}
.hdr-nav-lnk:hover, .hdr-nav-lnk.active {
  color: var(--mustard);
  background: rgba(200,147,58,0.1);
}
.hdr-close {
  margin-top: 24px;
  color: var(--warm-gray-light);
  font-size: 1.5rem;
  padding: 12px;
  border-radius: 50%;
  transition: var(--transition);
  min-height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hdr-close:hover { color: var(--terracotta); background: rgba(196,88,58,0.1); }

/* ============================
   HERO
   ============================ */
.sec-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 80px 80px;
  position: relative;
  background: var(--white-warm);
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(200,147,58,0.06) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(196,88,58,0.04) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(200,147,58,0.02) 60px,
      rgba(200,147,58,0.02) 61px
    );
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-tag {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(196,88,58,0.08);
  border: 1px solid rgba(196,88,58,0.18);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--charcoal);
}
.hero-title em {
  font-style: normal;
  color: var(--mustard);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mustard), var(--terracotta));
  border-radius: 2px;
  opacity: 0.6;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--warm-gray);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-img-wrap { position: relative; }
.hero-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid var(--mustard);
  border-radius: calc(var(--radius-xl) + 12px);
  opacity: 0.2;
}
.hero-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero-img-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--white-warm);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-family: 'Unbounded', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal);
}
.hero-img-badge i { color: var(--olive); font-size: 1.1rem; }

/* ============================
   INTRO SECTION
   ============================ */
.sec-intro { background: var(--cream); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.intro-text .sec-title { margin: 12px 0 20px; }
.intro-text p { margin-bottom: 16px; }
.intro-text .btn { margin-top: 16px; }
.intro-img-wrap { position: relative; }
.intro-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.intro-img-note {
  position: absolute;
  top: -16px;
  right: 24px;
  background: var(--terracotta);
  color: var(--white-warm);
  font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ============================
   SERVICES SECTION
   ============================ */
.sec-services { background: var(--white-warm); }


#srvGrid {
  counter-reset: svc-counter;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.crd-svc {
  counter-increment: svc-counter;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  border: 1px solid rgba(200,147,58,0.12);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.crd-svc::before {
  content: counter(svc-counter, decimal-leading-zero);
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--mustard);
  opacity: 0.4;
  letter-spacing: 0.05em;
}
.crd-svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(200,147,58,0.15);
  border-color: rgba(200,147,58,0.25);
}
.crd-ico {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--mustard), var(--mustard-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-warm);
  font-size: 1.3rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-mustard);
}
.crd-txt h3 { font-size: 1.1rem; margin-bottom: 10px; }
.crd-txt p { font-size: 0.95rem; margin: 0; }

/* ============================
   HOW IT WORKS
   ============================ */
.sec-how { background: var(--cream-dark); }
.alt-features { display: flex; flex-direction: column; gap: 72px; }
.alt-feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.alt-feat-odd { direction: rtl; }
.alt-feat-odd > * { direction: ltr; }
.alt-feat-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.alt-feat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--mustard);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 8px;
}
.alt-feat-txt h3 { font-size: 1.3rem; margin-bottom: 12px; }
.alt-feat-txt p { margin-bottom: 12px; font-size: 0.97rem; }

/* ============================
   CTA SPLIT
   ============================ */
.sec-cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  position: relative;
  overflow: hidden;
}
.sec-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,147,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-title {
  color: var(--white-warm);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  margin: 12px 0 16px;
}
.cta-body { color: rgba(245,240,232,0.7); font-size: 1rem; }
.cta-note {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  text-align: center;
  margin-top: 12px;
}
.cta-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.cta-contact-lnk {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245,240,232,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}
.cta-contact-lnk:hover { color: var(--mustard-light); }
.cta-contact-lnk i { color: var(--mustard); width: 16px; }
.sec-cta-sm { padding: 64px 0; }

/* ============================
   WHY SECTION
   ============================ */
.sec-why { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(200,147,58,0.1);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-card:last-child:nth-child(3n+2) {
  grid-column: span 2;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,147,58,0.2);
}
.why-card i {
  color: var(--olive);
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: block;
}
.why-card h4 { margin-bottom: 10px; font-size: 1rem; }
.why-card p { font-size: 0.92rem; margin: 0; }

/* ============================
   AREAS SECTION
   ============================ */
.sec-areas { background: var(--white-warm); }
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.areas-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.areas-txt .sec-title { margin: 12px 0 20px; }
.areas-txt p { margin-bottom: 16px; font-size: 0.97rem; }
.areas-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.areas-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}
.areas-list i { color: var(--olive); font-size: 0.85rem; }

/* ============================
   PAGE HEROES (inner pages)
   ============================ */
.sec-pg-hero {
  padding: 140px 0 72px;
  background: var(--white-warm);
  position: relative;
  overflow: hidden;
}
.sec-pg-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mustard), var(--terracotta), var(--olive));
}
.sec-pg-hero-pro { background: linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-mid) 100%); }
.sec-pg-hero-pro .pg-hero-title { color: var(--white-warm); }
.sec-pg-hero-pro .pg-hero-sub { color: rgba(245,240,232,0.7); }
.sec-pg-hero-pro .sec-label { color: var(--mustard-light); background: rgba(200,147,58,0.15); border-color: rgba(200,147,58,0.25); }
.sec-pg-hero-metodo { background: var(--cream-dark); }
.pg-hero-content { max-width: 800px; }
.pg-hero-title { margin: 12px 0 20px; }
.pg-hero-sub { font-size: 1.1rem; color: var(--warm-gray); line-height: 1.7; }

/* ============================
   ABOUT PAGE
   ============================ */
.sec-about-story { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-col img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-txt-col .sec-title { margin: 0 0 20px; }
.about-txt-col p { margin-bottom: 16px; font-size: 0.97rem; }

.sec-values { background: var(--white-warm); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.val-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(200,147,58,0.1);
  transition: var(--transition);
}
.val-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.val-ico {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--olive), var(--olive-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-warm);
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.val-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.val-card p { font-size: 0.93rem; margin: 0; }

.sec-approach { background: var(--cream-dark); }
.approach-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.approach-txt .sec-title { margin: 12px 0 20px; }
.approach-txt p { margin-bottom: 16px; font-size: 0.97rem; }
.approach-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ============================
   PRO PAGE
   ============================ */
.sec-pro-intros { background: var(--cream); }
.pro-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.pro-intro-txt .sec-title { margin: 0 0 20px; }
.pro-intro-txt p { margin-bottom: 16px; font-size: 0.97rem; }
.pro-intro-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.sec-pro-types { background: var(--white-warm); }
.pro-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.pro-type-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(200,147,58,0.1);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.pro-type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(200,147,58,0.2); }
.pro-type-ico {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-warm);
  font-size: 1.2rem;
  margin-bottom: 18px;
  box-shadow: var(--shadow-terracotta);
}
.pro-type-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.pro-type-card p { font-size: 0.93rem; margin: 0; }

.sec-pro-how { background: var(--cream-dark); }
.pro-how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pro-how-step {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(200,147,58,0.1);
  box-shadow: var(--shadow-sm);
}
.pro-how-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--mustard);
  margin-bottom: 12px;
}
.pro-how-step h4 { font-size: 0.95rem; margin-bottom: 8px; }
.pro-how-step p { font-size: 0.88rem; margin: 0; }

/* ============================
   METODO PAGE
   ============================ */
.sec-metodo-principi { background: var(--cream); }
.metodo-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.metodo-img-col img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.metodo-txt-col .sec-title { margin: 0 0 20px; }
.metodo-txt-col p { margin-bottom: 16px; font-size: 0.97rem; }

.sec-metodo-fasi { background: var(--white-warm); }
.metodo-timeline { display: flex; flex-direction: column; gap: 0; }
.mtl-item { display: grid; grid-template-columns: 48px 1fr; gap: 32px; }
.mtl-marker { display: flex; flex-direction: column; align-items: center; }
.mtl-dot {
  width: 16px; height: 16px;
  background: var(--mustard);
  border-radius: 50%;
  border: 3px solid var(--white-warm);
  box-shadow: 0 0 0 2px var(--mustard);
  flex-shrink: 0;
  margin-top: 6px;
}
.mtl-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--mustard), rgba(200,147,58,0.2));
  margin: 8px 0;
}
.mtl-content {
  padding-bottom: 48px;
}
.mtl-phase {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 8px;
}
.mtl-content h3 { font-size: 1.2rem; margin-bottom: 12px; }
.mtl-content p { font-size: 0.95rem; margin-bottom: 10px; }

.sec-metodo-criteri { background: var(--cream-dark); }
.criteri-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.criterio-card {
  background: var(--white-warm);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(200,147,58,0.1);
  transition: var(--transition);
}
.criterio-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.criterio-card i {
  font-size: 1.3rem;
  color: var(--mustard);
  margin-bottom: 14px;
  display: block;
}
.criterio-card h4 { margin-bottom: 10px; }
.criterio-card p { font-size: 0.92rem; margin: 0; }

.sec-metodo-img-break { background: var(--cream); padding: 40px 0; }
.img-break-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.img-break-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ============================
   CONTACT PAGE
   ============================ */
.contact-main { padding-top: var(--hdr-h); }
.contact-quote-bar {
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-mid));
  padding: 40px 0;
}
.contact-quote {
  text-align: center;
}
.contact-quote p {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
  font-style: italic;
  line-height: 1.5;
}
.contact-quote cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--mustard-light);
  font-style: normal;
}
.sec-contact-form { background: var(--cream); padding: 72px 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.contact-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.contact-intro { font-size: 1rem; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-item i {
  color: var(--mustard);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-detail-item strong {
  display: block;
  font-size: 0.8rem;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.contact-detail-item span, .contact-detail-item a {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.5;
}
.contact-detail-item a:hover { color: var(--mustard); }


.frm {
  background: var(--white-warm);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200,147,58,0.08);
}
.frm-field { margin-bottom: 28px; }
.frm-lbl {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.frm-inp, .frm-txt {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 2px solid rgba(122,110,95,0.15);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.frm-inp:focus, .frm-txt:focus {
  border-color: var(--mustard);
  background: var(--white-warm);
  box-shadow: 0 0 0 3px rgba(200,147,58,0.12);
}
.frm-inp::placeholder, .frm-txt::placeholder { color: var(--warm-gray-light); }
.frm-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--warm-gray-light);
  margin-top: 6px;
}
.frm-field-chk { }
.frm-chk-wrap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}
.frm-chk {
  width: 20px; height: 20px;
  flex-shrink: 0;
  accent-color: var(--mustard);
  margin-top: 2px;
  cursor: pointer;
}
.frm-chk-txt {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.55;
}
.frm-chk-txt a { color: var(--mustard); text-decoration: underline; }
.frm-submit-wrap { margin-top: 32px; }
.frm-submit {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
}

.sec-map { background: var(--cream); padding-top: 0; padding-bottom: 80px; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,147,58,0.1);
}

/* ============================
   THANKS PAGE
   ============================ */
.thanks-body { background: var(--mustard); }
.thanks-main {
  min-height: calc(100vh - var(--hdr-h) - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mustard-dark) 0%, var(--mustard) 50%, var(--terracotta) 100%);
  padding: 80px 24px;
}
.thanks-content {
  text-align: center;
  max-width: 600px;
}
.thanks-icon {
  font-size: 3.5rem;
  color: rgba(245,240,232,0.4);
  margin-bottom: 24px;
}
.thanks-title {
  color: var(--white-warm);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}
.thanks-sub {
  color: rgba(245,240,232,0.8);
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.hdr-thanks .hdr-burger span { background: var(--white-warm); }

/* ============================
   LEGAL PAGES
   ============================ */
.legal-main { padding-top: var(--hdr-h); background: var(--cream); min-height: 100vh; }
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  align-items: start;
}
.legal-sidebar {
  position: sticky;
  top: calc(var(--hdr-h) + 24px);
  max-height: calc(100vh - var(--hdr-h) - 48px);
  overflow-y: auto;
  padding-right: 32px;
}
.legal-toc-mobile-toggle { display: none; }
.toc-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 16px;
}
.toc-list { display: flex; flex-direction: column; gap: 4px; }
.toc-lnk {
  display: block;
  font-size: 0.85rem;
  color: var(--warm-gray);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: var(--transition);
  line-height: 1.4;
}
.toc-lnk:hover { color: var(--mustard); border-left-color: var(--mustard); background: rgba(200,147,58,0.05); }
.toc-lnk.active { color: var(--mustard); border-left-color: var(--mustard); background: rgba(200,147,58,0.08); font-weight: 600; }

.legal-content {
  background: var(--white-warm);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,147,58,0.08);
}
.legal-hd { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 2px solid var(--cream-dark); }
.legal-hd h1 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 8px; }
.legal-date {
  font-size: 0.82rem;
  color: var(--warm-gray-light);
  margin-bottom: 16px;
  font-weight: 500;
}
.legal-intro { font-size: 0.95rem; line-height: 1.75; }
.legal-content section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--cream-dark); }
.legal-content section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-content h2 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--charcoal);
  padding-top: 4px;
}
.legal-content p { font-size: 0.93rem; margin-bottom: 12px; }
.legal-content address { margin-bottom: 12px; line-height: 1.8; font-size: 0.93rem; color: var(--warm-gray); }
.legal-content a { color: var(--mustard); }
.legal-content a:hover { color: var(--mustard-dark); text-decoration: underline; }

.cookie-table-wrap { overflow-x: auto; margin: 16px 0; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.cookie-table th {
  background: var(--cream-dark);
  padding: 10px 14px;
  text-align: left;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}
.cookie-table td { padding: 10px 14px; border-bottom: 1px solid var(--cream-dark); color: var(--warm-gray); }
.cookie-table tr:last-child td { border-bottom: none; }

/* ============================
   FOOTER
   ============================ */
.ftr {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}
.ftr-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(200,147,58,0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(196,88,58,0.04) 0%, transparent 40%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(245,240,232,0.01) 40px,
      rgba(245,240,232,0.01) 41px
    );
  pointer-events: none;
}
.ftr-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; }
.ftr-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}
.ftr-logo { height: 32px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.ftr-brand-desc { font-size: 0.88rem; color: rgba(245,240,232,0.55); line-height: 1.65; }
.ftr-col-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mustard-light);
  margin-bottom: 16px;
}
.ftr-lnks { display: flex; flex-direction: column; gap: 8px; }
.ftr-lnks a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  transition: var(--transition);
  padding: 2px 0;
}
.ftr-lnks a:hover { color: var(--mustard-light); }
.ftr-addr { display: flex; flex-direction: column; gap: 6px; }
.ftr-addr p { font-size: 0.88rem; color: rgba(245,240,232,0.6); margin: 0; line-height: 1.55; }
.ftr-addr a { font-size: 0.88rem; color: rgba(245,240,232,0.6); transition: var(--transition); }
.ftr-addr a:hover { color: var(--mustard-light); }
.ftr-legal {
  padding: 24px 0;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.ftr-legal-info p {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
  line-height: 1.6;
  margin: 0;
}
.ftr-copy p {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
  margin: 0;
  white-space: nowrap;
}

/* ============================
   COOKIE BANNER
   ============================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  display: none;
  background: var(--charcoal);
  border-top: 2px solid var(--mustard);
}
.cookie-banner.show { display: flex; }
.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
.cookie-left {
  padding: 24px 32px;
  border-right: 1px solid rgba(245,240,232,0.1);
}
.cookie-left h4 {
  color: var(--white-warm);
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
}
.cookie-left p {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.6);
  margin: 0;
  line-height: 1.55;
}
.cookie-left a { color: var(--mustard-light); text-decoration: underline; }
.cookie-right {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.cookie-toggles { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-toggle-label {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.7);
}
.cookie-toggle-label span { font-size: 0.72rem; color: rgba(245,240,232,0.4); display: block; }
.toggle-switch {
  position: relative;
  width: 40px; height: 22px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(245,240,232,0.15);
  border-radius: 11px;
  cursor: pointer;
  transition: var(--transition);
}
.toggle-slider:before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: var(--white-warm);
  border-radius: 50%;
  transition: var(--transition);
}
.toggle-switch input:checked + .toggle-slider { background: var(--mustard); }
.toggle-switch input:checked + .toggle-slider:before { transform: translateX(18px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.5; cursor: not-allowed; }
.cookie-btns { display: flex; gap: 8px; }
.cookie-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-family: 'Unbounded', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  min-height: 44px;
}
.cookie-btn-accept {
  background: var(--mustard);
  color: var(--white-warm);
}
.cookie-btn-accept:hover { background: var(--mustard-dark); }
.cookie-btn-save {
  background: transparent;
  color: rgba(245,240,232,0.7);
  border: 1px solid rgba(245,240,232,0.2);
}
.cookie-btn-save:hover { background: rgba(245,240,232,0.08); color: var(--white-warm); }
.cookie-btn-reject {
  background: transparent;
  color: rgba(245,240,232,0.5);
  font-size: 0.7rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  padding: 4px;
  border: none;
}
.cookie-btn-reject:hover { color: rgba(245,240,232,0.8); }

/* ============================
   SCROLL REVEAL
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .sec-hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 72px;
    text-align: center;
    gap: 40px;
  }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-img-badge { left: 16px; }

  .intro-grid, .about-grid, .approach-wrap,
  .areas-grid, .pro-intro-grid, .metodo-intro-grid { grid-template-columns: 1fr; gap: 40px; }

  .alt-feat { grid-template-columns: 1fr; gap: 32px; }
  .alt-feat-odd { direction: ltr; }

  #srvGrid { grid-template-columns: 1fr; }
  .values-grid, .criteri-grid, .pro-types-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card:last-child:nth-child(3n+2) { grid-column: span 1; }

  .pro-how-steps { grid-template-columns: repeat(2, 1fr); }

  .cta-split { grid-template-columns: 1fr; gap: 40px; }
  .ftr-top { grid-template-columns: 1fr 1fr; }

  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; max-height: none; padding-right: 0; }
  .legal-toc-mobile-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white-warm);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: 'Unbounded', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
    box-shadow: var(--shadow-sm);
  }
  .legal-toc { display: none; background: var(--white-warm); border-radius: var(--radius-md); padding: 16px 20px; box-shadow: var(--shadow-sm); }
  .legal-toc.open { display: block; }
  .legal-content { padding: 32px 24px; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .sec { padding: 56px 0; }
  .hero-img { height: 360px; }
  .why-grid { grid-template-columns: 1fr; }
  .pro-how-steps { grid-template-columns: 1fr; }
  .img-break-grid { grid-template-columns: 1fr; }
  .ftr-top { grid-template-columns: 1fr; gap: 32px; }
  .ftr-legal { flex-direction: column; gap: 12px; }
  .frm { padding: 28px 20px; }

  .cookie-banner-inner { grid-template-columns: 1fr; }
  .cookie-left { border-right: none; border-bottom: 1px solid rgba(245,240,232,0.1); padding: 20px 20px; }
  .cookie-right { padding: 20px 20px; }
  .cookie-btns { flex-direction: column; }

  .sec-hero { padding: 100px 20px 60px; }
  .intro-img, .about-img-col img, .pro-intro-img img, .metodo-img-col img,
  .approach-img img, .areas-img-wrap img { height: 280px; }
  .alt-feat-img img { height: 240px; }
  .hero-img { height: 280px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.4rem; }
  .btn { padding: 12px 20px; font-size: 0.75rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hdr-inner { padding: 0 16px; }
}