/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #1F4435;
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Mulish', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1F4435;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.01em; margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; color: #2a3d33; }
.text-muted { color: #5a6e63; }
.text-small { font-size: 0.9rem; }
.text-xs { font-size: 0.8rem; }

/* ===== COLORS ===== */
:root {
  --green-900: #19362a;
  --green-700: #2D6149;
  --green-600: #3a7d5c;
  --green-500: #4a9a72;
  --gray-200: #E5E4E2;
  --gray-100: #f0efed;
  --gray-50: #f8f7f6;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(31,68,53,0.08);
  --shadow-md: 0 4px 20px rgba(31,68,53,0.1);
  --shadow-lg: 0 10px 40px rgba(31,68,53,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.section { padding: 60px 0; }
.section-sm { padding: 60px 0; }
.section--gray { background: var(--gray-200); }
.section--dark { background: #1f4434; color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark p { color: var(--white); }
.section--dark .text-muted { color: rgba(255,255,255,0.65); }
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31,68,53,0.08);
  transition: all var(--transition);
  height: 72px;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.logo {
  font-family: 'Mulish', sans-serif;
  font-weight: 700; font-size: 1.15rem;
  color: var(--green-900); letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 1;
  min-width: 0;
}
.logo-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo span { color: var(--green-700); }
.logo-divider { width: 1px; height: 20px; background: var(--gray-200); flex-shrink: 0; }
.logo-sub {
  font-size: 0.75rem; font-weight: 500; color: #5a6e63;
  letter-spacing: 0.02em; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
  flex-shrink: 1; min-width: 0;
}
/* Desktop Nav */
.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px; font-size: 0.9rem; font-weight: 500;
  color: var(--green-900); border-radius: 6px;
  transition: all var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--green-700); background: rgba(45,97,73,0.06);
}
.nav-link.active::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--green-700); border-radius: 1px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 4px;
  cursor: pointer; padding: 8px 16px; font-size: 0.9rem; font-weight: 500;
  color: var(--green-900); border-radius: 6px; transition: all var(--transition);
  background: none; border: none; font-family: inherit;
}
.nav-dropdown-trigger:hover, .nav-dropdown-trigger.active {
  color: var(--green-700); background: rgba(45,97,73,0.06);
}
.nav-dropdown-trigger svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown-trigger.active svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 280px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(31,68,53,0.08);
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 6px; font-size: 0.9rem;
  color: var(--green-900); transition: all var(--transition);
}
.nav-dropdown-item:hover { background: rgba(45,97,73,0.06); color: var(--green-700); }
.nav-dropdown-item .dd-num {
  font-family: 'Mulish', sans-serif; font-weight: 700; font-size: 0.75rem;
  color: var(--green-700); width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(45,97,73,0.08); border-radius: 4px;
}
.nav-dropdown-item .dd-text { display: flex; flex-direction: column; }
.nav-dropdown-item .dd-label { font-weight: 500; }
.nav-dropdown-item .dd-desc { font-size: 0.78rem; color: #5a6e63; }

/* Mobile Nav */
.nav-mobile-btn {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.nav-mobile-btn span {
  display: block; width: 22px; height: 2px; background: var(--green-900);
  border-radius: 1px; transition: all var(--transition);
}
.nav-mobile-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-mobile-btn.active span:nth-child(2) { opacity: 0; }
.nav-mobile-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(31,68,53,0.5); opacity: 0;
  transition: opacity var(--transition);
}
.nav-mobile-overlay.active { opacity: 1; }

.nav-mobile-panel {
  display: none; position: fixed; top: 0; right: 0; bottom: 0; z-index: 1001;
  width: 320px; max-width: 85vw; background: var(--white);
  padding: 80px 24px 32px; overflow-y: auto;
  transform: translateX(100%); transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-mobile-panel.active { transform: translateX(0); }

.nav-mobile-link {
  display: block; padding: 14px 0; font-size: 1.05rem; font-weight: 600;
  color: var(--green-900); border-bottom: 1px solid var(--gray-200);
  transition: color var(--transition);
}
.nav-mobile-link:hover, .nav-mobile-link.active { color: var(--green-700); }

.nav-mobile-dropdown {}
.nav-mobile-dropdown-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 0; font-size: 1.05rem; font-weight: 600;
  color: var(--green-900); border-bottom: 1px solid var(--gray-200);
  background: none; border-left: none; border-right: none; border-top: none;
  cursor: pointer; font-family: inherit; transition: color var(--transition);
}
.nav-mobile-dropdown-toggle:hover, .nav-mobile-dropdown-toggle.active { color: var(--green-700); }
.nav-mobile-dropdown-toggle svg { width: 16px; height: 16px; transition: transform var(--transition); }
.nav-mobile-dropdown-toggle.active svg { transform: rotate(180deg); }
.nav-mobile-submenu {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.nav-mobile-submenu.active { max-height: 300px; }
.nav-mobile-subitem {
  display: block; padding: 10px 0 10px 16px; font-size: 0.95rem; font-weight: 500;
  color: #5a6e63; transition: color var(--transition);
}
.nav-mobile-subitem:hover, .nav-mobile-subitem.active { color: var(--green-700); }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center; color: var(--white);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(31,68,53,0.92) 0%, rgba(45,97,73,0.85) 50%, rgba(31,68,53,0.9) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 1000px; padding: 0 24px; }
.hero-label {
  font-family: 'Mulish', sans-serif; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto 36px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.hero-scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: rgba(255,255,255,0.8);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-family: 'Mulish', sans-serif;
  font-size: 0.9rem; font-weight: 600; border-radius: 6px;
  border: none; cursor: pointer; transition: all var(--transition);
  text-decoration: none; line-height: 1;
}
.btn-primary {
  background: var(--white); color: var(--green-900);
}
.btn-primary:hover { background: var(--gray-200); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-green {
  background: var(--green-900); color: var(--white);
}
.btn-green:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-green-outline {
  background: transparent; color: var(--green-900);
  border: 1.5px solid var(--green-900);
}
.btn-green-outline:hover { background: var(--green-900); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn svg { width: 16px; height: 16px; }

/* ===== PARALLAX ===== */
.parallax-section {
  position: relative; padding: 120px 0; overflow: hidden;
  background-image: url('https://wips.plug.it/scips/4_RJYC3OXZ5OvCzepM_LFA/img.italiaonline.it/0WO0N000001WdH7WAK_13382486.JPG?a=rr&w=736&h=736&ssl=1');
  background-attachment: fixed; background-size: cover; background-position: center;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,68,53,0.93) 0%, rgba(45,97,73,0.88) 100%);
}
.parallax-content { position: relative; z-index: 2; color: var(--white); text-align: center; max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.parallax-content h2 { color: var(--white); margin-bottom: 16px; }
.parallax-content p { color: rgba(255,255,255,0.8); font-size: 1.15rem; font-style: italic; }

/* ===== STATS ===== */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  text-align: center; padding: 48px 0;
}
.stat-item {}
.stat-number {
  font-family: 'Mulish', sans-serif; font-size: 3rem; font-weight: 700;
  color: var(--green-700); line-height: 1; margin-bottom: 8px;
}
.stat-number span { font-size: 1.5rem; }
.stat-label { font-size: 0.9rem; color: #5a6e63; font-weight: 500; }

/* ===== CARDS ===== */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 20px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(31,68,53,0.06);
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card--flat { box-shadow: none; border: 1px solid var(--gray-200); }
.card--flat:hover { border-color: var(--green-700); box-shadow: none; transform: none; }
.card--dark {
  background: var(--green-900); color: var(--white); border-color: transparent;
}
.card--dark:hover { background: var(--green-700); }
.card--dark h3, .card--dark p { color: var(--white); }

/* ===== STEP CARDS ===== */
.step-card {
  display: flex; gap: 24px; padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}
.step-card:last-child { border-bottom: none; }
.step-num {
  font-family: 'Mulish', sans-serif; font-size: 2.5rem; font-weight: 700;
  color: var(--green-700); line-height: 1; min-width: 60px;
  opacity: 0.7;
}
.step-content h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step-content p { font-size: 0.95rem; color: #5a6e63; margin-bottom: 0; }

/* ===== SERVICE CARD LARGE ===== */
.service-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-card:last-child { border-bottom: none; }
.service-card:nth-child(even) { direction: rtl; }
.service-card:nth-child(even) > * { direction: ltr; }
.service-card-img {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-num {
  font-family: 'Mulish', sans-serif; font-size: 0.8rem; font-weight: 700;
  color: var(--green-700); letter-spacing: 0.1em; margin-bottom: 16px;
}
.service-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.service-card .service-subtitle { color: var(--green-700); font-weight: 600; font-size: 0.95rem; margin-bottom: 16px; }
.service-card p { color: #5a6e63; }

/* ===== FEATURE LIST ===== */
.feature-list { margin: 24px 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 2px 0; font-size: 0.95rem; color: #2a3d33;
}
.feature-list li::before {
  content: ''; display: block; min-width: 8px; height: 8px;
  background: var(--green-700); border-radius: 50%; margin-top: 8px;
}

/* ===== LETTER CIRCLE ===== */
.letter-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(45,97,73,0.08); color: var(--green-700);
  font-family: 'Mulish', sans-serif; font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
/* ===== ICON CIRCLE (Imagini separate) ===== */
.icon-circle {
  width: 56px;
  height: 56px;
  
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.icon-circle--1 {
  background-image: url('../img/website.png');
}
.icon-circle--2 {
  background-image: url('../img/employee.png');
}
.icon-circle--3 {
  background-image: url('../img/enterprise.png');
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, rgba(45,97,73,0.04) 0%, rgba(229,228,226,0.5) 100%);
  border-left: 3px solid var(--green-700);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 32px; margin: 32px 0;
}
.highlight-box h3 { margin-bottom: 12px; }
.highlight-box p { margin-bottom: 0; color: #5a6e63; }

/* ===== CONTACT CARD ===== */
.contact-card {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px; background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200); transition: all var(--transition);
}
.contact-card:hover { border-color: var(--green-700); box-shadow: var(--shadow-sm); }
.contact-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(45,97,73,0.08); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--green-700); font-size: 1.2rem;
}
.contact-card h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #5a6e63; margin-bottom: 4px; font-weight: 600; }
.contact-card p { margin-bottom: 0; font-weight: 500; }

/* ===== HOURS TABLE ===== */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  padding: 14px 16px; text-align: left; font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-200);
}
.hours-table th {
  font-family: 'Mulish', sans-serif; font-weight: 600;
  color: var(--green-900); width: 40%;
}
.hours-table td { color: #5a6e63; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 0 80px; text-align: center;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 600px; margin: 0 auto; color: #5a6e63; font-size: 1.1rem; }
.page-hero-img {
  width: 100%; max-width: 700px; height: 280px; margin: 32px auto 0;
  border-radius: var(--radius-lg); overflow: hidden;
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== CREDENTIALS LIST ===== */
.credentials-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-200);
}
.credentials-list li:last-child { border-bottom: none; }
.credentials-list li::before {
  content: '✓'; display: flex; align-items: center; justify-content: center;
  min-width: 24px; height: 24px; background: rgba(45,97,73,0.08);
  color: var(--green-700); border-radius: 50%; font-size: 0.75rem; font-weight: 700;
  margin-top: 2px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #19362a; color: var(--white); padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Mulish', sans-serif; font-weight: 700; font-size: 1.2rem;
  margin-bottom: 16px;
}
.footer-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-heading {
  font-family: 'Mulish', sans-serif; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-link {
  display: block; padding: 6px 0; font-size: 0.9rem;
  color: rgba(255,255,255,0.7); transition: color var(--transition);
}
.footer-link:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 4px; opacity: 0.6; }
.footer-bottom {
  padding: 24px 0; text-align: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ===== HOME — CHI SONO PREVIEW ===== */
.chi-sono-preview {
  padding: 60px 0;
  background: var(--white);
}
.chi-sono-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.chi-sono-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/5;
}
.chi-sono-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.chi-sono-visual:hover img {
  transform: scale(1.04);
}
.chi-sono-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
  background: linear-gradient(0deg, rgba(25,54,42,0.92) 0%, rgba(25,54,42,0.6) 70%, transparent 100%);
  color: var(--white);
  font-family: 'Mulish', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
}
.chi-sono-content {
  padding: 16px 0;
}
.section-eyebrow {
  display: inline-block;
  font-family: 'Mulish', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 16px;
}
.chi-sono-content h2 em,
.section-title em {
  font-style: italic;
  color: var(--green-700);
}
.chi-sono-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.chi-sono-stats .stat {
  display: flex;
  flex-direction: column;
}
.chi-sono-stats .stat strong {
  font-family: 'Mulish', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-700);
  line-height: 1;
  margin-bottom: 6px;
}
.chi-sono-stats .stat span {
  font-size: 0.85rem;
  color: #5a6e63;
  font-weight: 500;
}

/* ===== HOME — VALORI ===== */
.valori {
  padding: 100px 0;
  background: var(--gray-200);
}
.section-header-center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 56px;
}
.section-title {
  margin-bottom: 16px;
}
.section-intro {
  color: #5a6e63;
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.valori-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.valore-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid rgba(31,68,53,0.06);
  transition: all var(--transition);
}
.valore-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.valore-icon {
  font-family: 'Mulish', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green-700);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 20px;
}
.valore-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.valore-card p {
  color: #5a6e63;
  font-size: 0.92rem;
  margin-bottom: 0;
  line-height: 1.65;
}

/* ===== HOME — PARALLAX QUOTE ===== */
.parallax-section--quote .parallax-content {
  max-width: 750px;
}
.parallax-eyebrow {
  display: inline-block;
  font-family: 'Mulish', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.parallax-quote {
  font-family: 'Mulish', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
}
.parallax-section--quote .parallax-content p:last-of-type {
  font-style: normal;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}

/* ===== HOME — SERVIZI PREVIEW ===== */
.servizi-preview {
  padding: 100px 0;
  background: var(--white);
}
.servizi-preview > .container > .section-eyebrow {
  display: block;
  text-align: center;
}
.servizi-preview > .container > .section-title {
  text-align: center;
}
.servizi-preview > .container > .section-intro {
  text-align: center;
  margin-bottom: 56px;
}
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.servizio-card {
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.servizio-card:hover {
  border-color: var(--green-700);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.servizio-numero {
  font-family: 'Mulish', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-700);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}
.servizio-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.servizio-card p {
  color: #5a6e63;
  font-size: 0.95rem;
  flex: 1;
}
.servizio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-family: 'Mulish', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-700);
  transition: gap var(--transition), color var(--transition);
}
.servizio-link:hover {
  color: var(--green-900);
  gap: 12px;
}

/* ===== HOME — BTN SECONDARY ===== */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Mulish', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE — HOME ADDITIONS ===== */
@media (max-width: 1024px) {
  .chi-sono-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .chi-sono-visual {
    order: 1;
  }
  .chi-sono-content {
    order: 2;
  }
  .valori-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .servizi-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .chi-sono-stats {
    gap: 28px;
  }
  .chi-sono-stats .stat strong {
    font-size: 1.6rem;
  }
  .valori-grid {
    grid-template-columns: 1fr;
  }
  .valore-card {
    padding: 32px 28px;
  }
  .servizio-card {
    padding: 32px 28px;
  }
  
  .logo-divider,
  .logo-sub {
    display: none;
  }
  .logo {
    font-size: 1.05rem;
  }
 

}


@media (max-width: 480px) {
  .chi-sono-stats {
    flex-direction: column;
    gap: 20px;
  }
  .chi-sono-stats .stat {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
  }
  .logo {
    font-size: 0.95rem;
  }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .nav-mobile-btn { display: flex; }
  .nav-mobile-overlay, .nav-mobile-panel { display: block; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-card { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .service-card:nth-child(even) { direction: ltr; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { min-height: 500px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; gap: 32px; }
  .stat-number { font-size: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero { padding: 130px 0 60px; }
  .parallax-section { background-attachment: scroll; padding: 80px 0; }
  .step-card { flex-direction: column; gap: 12px; }
  .step-num { font-size: 2rem; min-width: auto; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .card { padding: 28px; }
  .btn { padding: 12px 24px; font-size: 0.85rem; }
}

/* ===== INNER PAGE HERO (Full screen variant) ===== */
.hero--compact {
  min-height: 520px;
  height: 75vh;
}
.hero--compact .hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}
.hero--compact .hero-label {
  font-size: 0.75rem;
}
.hero--compact .hero p {
  font-size: 1.05rem;
  max-width: 680px;
}

/* ===== SERVICE DETAIL CARDS (Image variant) ===== */
.service-detail-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-detail-card {
  position: relative;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  cursor: default;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-detail-card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.service-detail-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-detail-card:hover .service-detail-card-img img {
  transform: scale(1.06);
}
.service-detail-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(31,68,53,0.05) 0%, rgba(31,68,53,0.88) 75%);
  transition: background var(--transition);
}
.service-detail-card:hover .service-detail-card-overlay {
  background: linear-gradient(180deg, rgba(31,68,53,0.1) 0%, rgba(31,68,53,0.92) 70%);
}
.service-detail-card-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: var(--white);
  width: 100%;
}
.service-detail-card-num {
  font-family: 'Mulish', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.service-detail-card-content h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.service-detail-card-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ===== VARIANT: Card alte (es. dichiarazioni) ===== */
.service-detail-card--tall {
  min-height: 320px;
}

/* ===== SERVICE ICON CARDS (Bilanci variant) ===== */
.icon-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.icon-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all var(--transition);
  text-align: center;
}
.icon-card:hover {
  border-color: var(--green-700);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.icon-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(45,97,73,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green-700);
  transition: all var(--transition);
}
.icon-card:hover .icon-card-icon {
  background: var(--green-900);
  color: var(--white);
}
.icon-card-icon svg {
  width: 24px;
  height: 24px;
}
.icon-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== RESPONSIVE for new cards ===== */
@media (max-width: 1024px) {
  .icon-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .service-detail-cards { grid-template-columns: 1fr; }
  .service-detail-card { min-height: 320px; }
  .icon-cards { grid-template-columns: 1fr; }
}