/* ===========================
   STUDIO PULEO GEOMETRA
   Main CSS — Mobile First
   =========================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --white:        #FFFFFF;
  --bg-section:   #F9FAFB;
  --text-dark:    #333333;
  --text-gray:    #666666;
  --text-light:   #999999;
  --accent:       #F97316;
  --accent-dark:  #ea6707;
  --accent-light: #FEF3E2;
  --black:        #000000;
  --border:       #E5E7EB;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.14);
  --shadow-accent:0 4px 24px rgba(249,115,22,0.25);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font:         'Montserrat', sans-serif;
  --header-h:     70px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; outline: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-section); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ================================
   HEADER / NAVIGATION
   ================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-bracket {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.logo-bracket svg {
  width: 22px;
  height: 36px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-studio {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-dark);
}
.logo-puleo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-dark);
}
.logo-geometra {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text-gray);
  margin-top: 1px;
}

/* Desktop Nav */
.nav-menu {
  display: none;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
  transition: all var(--transition);
}
.nav-menu a:hover { color: var(--accent); }
.nav-menu a.active {
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-sm);
}
.nav-menu a.active:hover { background: var(--accent-dark); }

/* Hamburger */
.hamburger {
  width: 36px; height: 36px;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--bg-section); }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 16px 20px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-120%);
  opacity: 0;
  transition: all var(--transition);
  z-index: 999;
}
.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
}
.nav-drawer a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover, .nav-drawer a.active { color: var(--accent); }

/* ================================
   LAYOUT UTILITIES
   ================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-offset { padding-top: var(--header-h); }
.section { padding: 60px 0; }
.section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 14px;
  color: var(--text-gray);
  text-align: center;
  max-width: 540px;
  margin: 0 auto 40px;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(249,115,22,0.30);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.40);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}
.btn-outline-ghost {
  background: transparent;
  color: var(--accent);
  border: none;
  padding-left: 0;
}
.btn-outline-ghost::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 16px;
  background: var(--accent);
  border-radius: 2px;
  margin-right: 8px;
}
.btn-outline-ghost:hover { opacity: 0.75; }

/* ================================
   TAGS / BADGES
   ================================ */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--accent);
  color: var(--white);
}
.tag-gray {
  background: var(--bg-section);
  color: var(--text-gray);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--text-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--text-dark) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}
.hero-title {
  font-size: clamp(32px, 7vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-title span { color: var(--accent); }
.hero-desc {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-number span { color: var(--accent); }
.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-gray);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.hero-image-wrap {
  position: relative;
  margin-top: 40px;
}
.hero-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 260px;
  box-shadow: var(--shadow-lg);
}
.hero-bracket-tl, .hero-bracket-br {
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--accent);
  border-style: solid;
}
.hero-bracket-tl {
  top: -8px; left: -8px;
  border-width: 3px 0 0 3px;
}
.hero-bracket-br {
  bottom: -8px; right: -8px;
  border-width: 0 3px 3px 0;
}

/* ================================
   SERVIZI CARDS — HOME
   ================================ */
.servizi-home { background: var(--bg-section); }
.servizi-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--accent);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card-icon svg { width: 26px; height: 26px; stroke: var(--accent); }
.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.65;
}

/* ================================
   PORTFOLIO — PAGE
   ================================ */
.portfolio-page { background: var(--white); }
.portfolio-header {
  text-align: center;
  padding: 40px 0 30px;
}
.portfolio-header h1 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  text-transform: uppercase;
}

/* Search Bar */
.search-wrap {
  position: relative;
  margin-bottom: 16px;
}
.search-wrap input {
  width: 100%;
  padding: 12px 44px 12px 40px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border var(--transition);
  outline: none;
}
.search-wrap input:focus {
  border-color: var(--accent);
  background: var(--white);
}
.search-wrap input::placeholder { color: var(--text-light); }
.search-icon {
  position: absolute;
  left: 12px;
  top: 50%; transform: translateY(-50%);
  color: var(--text-light);
}
.search-filter-btn {
  position: absolute;
  right: 10px;
  top: 50%; transform: translateY(-50%);
  background: none;
  color: var(--text-gray);
  padding: 4px;
  display: flex;
}

/* Filters */
.filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 24px;
  scrollbar-width: none;
}
.filter-row::-webkit-scrollbar { display: none; }
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 40px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-gray);
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.filter-btn svg { width: 14px; height: 14px; }

/* Project Grid */
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.project-card:active { transform: scale(0.98); }
.project-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}
.project-info {
  padding: 10px;
}
.project-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 8px;
}
.project-tags { display: flex; gap: 4px; flex-wrap: wrap; }

/* Project Popup (mobile expand) */
.project-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.project-details.open {
  max-height: 300px;
  padding-top: 0;
}
.project-details-inner {
  padding: 12px;
  border-top: 1px solid var(--border);
  background: var(--bg-section);
}
.project-details-inner h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.project-details-inner ul { padding-left: 0; }
.project-details-inner ul li {
  font-size: 12px;
  color: var(--text-dark);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.project-details-inner ul li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ================================
   SERVIZI PAGE — DEEP DIVE
   ================================ */
.servizi-deep { background: var(--white); }
.servizi-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.servizi-section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--accent);
  border-radius: 2px;
}

/* Service Deep Cards */
.service-deep-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.service-deep-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.service-deep-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-deep-card .card-floorplan {
  width: 100%;
  height: 160px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.service-deep-card .card-floorplan svg {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.service-deep-card .card-body {
  padding: 18px;
}
.card-icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.card-icon-title svg {
  width: 20px; height: 20px;
  stroke: var(--text-dark);
}
.card-icon-title h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.03em;
}
.service-deep-card p {
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 14px;
}
.hover-tooltip {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: scale(0.9);
  transition: all var(--transition);
  pointer-events: none;
}
.hover-tooltip .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.service-deep-card:hover .hover-tooltip {
  opacity: 1;
  transform: scale(1);
}

/* Amministrazione Section */
.amm-section {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  margin-bottom: 40px;
}
.amm-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 28px;
}
.amm-diagram {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.amm-node {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.amm-node:hover, .amm-node.active {
  border-color: var(--accent);
  background: var(--accent-light);
}
.amm-node-icon {
  width: 44px; height: 44px;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.amm-node:hover .amm-node-icon,
.amm-node.active .amm-node-icon {
  background: var(--accent);
}
.amm-node-icon svg {
  width: 22px; height: 22px;
  stroke: var(--text-gray);
  transition: stroke var(--transition);
}
.amm-node:hover .amm-node-icon svg,
.amm-node.active .amm-node-icon svg {
  stroke: var(--white);
}
.amm-node-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.amm-node-info p {
  font-size: 12px;
  color: var(--text-gray);
}
.amm-connector {
  width: 2px;
  height: 16px;
  background: var(--accent);
  margin-left: 36px;
  opacity: 0.4;
}

/* ================================
   CHI SIAMO
   ================================ */
.chi-siamo-hero {
  background: linear-gradient(135deg, var(--bg-section) 60%, var(--accent-light) 100%);
  padding: 60px 0;
}
.chi-siamo-intro {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.value-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 8px;
}
.value-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.value-card p { font-size: 13px; color: var(--text-gray); line-height: 1.65; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo {
  width: 100%; height: 200px;
  object-fit: cover;
  background: var(--bg-section);
}
.team-photo-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--bg-section), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
}
.team-info { padding: 20px; }
.team-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.team-info .role {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.team-info p { font-size: 13px; color: var(--text-gray); line-height: 1.6; }

/* ================================
   CONTATTI
   ================================ */
.contact-section { background: var(--bg-section); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.contact-info-block h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.contact-info-block p { font-size: 14px; color: var(--text-gray); line-height: 1.7; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--accent); }
.contact-item-text strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.contact-item-text span { font-size: 14px; color: var(--text-gray); }

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-section);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: var(--white);
}
.form-group textarea { min-height: 110px; }

/* ================================
   FOOTER
   ================================ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}
.footer-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 28px;
}
.footer-contact-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.footer-contact-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-contact-item:hover .footer-contact-icon {
  background: var(--accent);
  transform: translateY(-3px);
}
.footer-contact-icon svg {
  width: 22px; height: 22px;
  stroke: var(--accent);
  transition: stroke var(--transition);
}
.footer-contact-item:hover .footer-contact-icon svg { stroke: var(--white); }
.footer-contact-item span { font-size: 11px; font-weight: 600; color: var(--text-gray); letter-spacing: 0.06em; }
.footer-bracket-row {
  display: flex;
  justify-content: flex-end;
  padding-right: 20px;
  margin-bottom: 16px;
}
.footer-copy {
  text-align: center;
  font-size: 11px;
  color: var(--text-light);
}

/* ================================
   SCROLL ANIMATIONS
   ================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ================================
   RESPONSIVE — TABLET (768px+)
   ================================ */
@media (min-width: 768px) {
  :root { --header-h: 74px; }
  .section { padding: 80px 0; }
  .section-title { font-size: 34px; }
  .hero-actions { flex-direction: row; }
  .hero-image-wrap img { height: 380px; }
  .servizi-home-grid { grid-template-columns: 1fr 1fr; }
  .project-grid { gap: 20px; }
  .project-img { height: 150px; }
  .project-info { padding: 14px; }
  .project-title { font-size: 13px; }
  .service-deep-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .amm-diagram { flex-direction: row; align-items: flex-start; }
  .amm-node { flex-direction: column; text-align: center; min-width: 120px; }
  .amm-connector { width: 40px; height: 2px; margin-left: 0; margin-top: 36px; }
  .footer-title { font-size: 24px; }
}

/* ================================
   RESPONSIVE — DESKTOP (1024px+)
   ================================ */
@media (min-width: 1024px) {
  :root { --header-h: 78px; }
  .hamburger { display: none; }
  .nav-menu { display: flex; }
  .section { padding: 100px 0; }
  .section-title { font-size: 42px; }
  .hero { min-height: calc(100vh - var(--header-h)); }
  .hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .hero-image-wrap { margin-top: 0; }
  .hero-image-wrap img { height: 500px; }
  .hero-content { padding: 80px 0; }
  .servizi-home-grid { grid-template-columns: 1fr 1fr; }
  .service-deep-grid { grid-template-columns: 1fr 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 5fr 7fr; gap: 48px; }
  .project-grid { grid-template-columns: repeat(3, 1fr); }
  .project-img { height: 180px; }
}

/* ================================
   RESPONSIVE — LARGE (1200px+)
   ================================ */
@media (min-width: 1200px) {
  .container { padding: 0 32px; }
}

/* ================================
   PAGE TRANSITIONS
   ================================ */
.page-enter {
  animation: pageEnter 0.4s ease forwards;
}
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================
   LOADER
   ================================ */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.loader-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: loaderPulse 1.2s ease infinite alternate;
}
@keyframes loaderPulse {
  from { opacity: 0.6; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}
.loader-bar {
  width: 60px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  animation: loaderSlide 1s ease infinite;
}
@keyframes loaderSlide {
  from { transform: translateX(-100%); }
  to { transform: translateX(350%); }
}

/* ================================
   UTILITY — MISC
   ================================ */
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Active page indicator in nav */
.nav-page-indicator {
  display: none;
}

/* Footer powered by */
.footer-powered {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  text-align: center;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.footer-powered a {
  color: var(--accent);
  font-weight: 600;
  transition: opacity var(--transition);
}
.footer-powered a:hover { opacity: 0.8; }

/* Article page styles */
.article-hero {
  background: var(--bg-section);
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--border);
}
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.article-breadcrumb a { color: var(--accent); }
.article-breadcrumb span { color: var(--text-light); }
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.article-cat-badge {
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}
.article-date {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}
.article-read-time {
  font-size: 12px;
  color: var(--text-light);
}
.article-title {
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.article-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.7;
  max-width: 720px;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 48px 0;
}
.article-body {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.85;
}
.article-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 36px 0 14px;
  letter-spacing: -0.02em;
}
.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 24px 0 10px;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol {
  padding-left: 20px;
  margin-bottom: 18px;
}
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--text-dark); font-weight: 700; }
.article-body a { color: var(--accent); text-decoration: underline; }
.article-info-box {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--text-dark);
}
.article-info-box strong { display: block; margin-bottom: 6px; color: var(--accent); }
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 13px;
}
.article-table th {
  background: var(--text-dark);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.article-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}
.article-table tr:nth-child(even) td { background: var(--bg-section); }
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article-cta-box {
  background: linear-gradient(135deg,var(--accent),#ea6707);
  border-radius: var(--radius-md);
  padding: 24px;
  color: #fff;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.article-cta-box h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.article-cta-box p { font-size: 13px; opacity: .85; margin-bottom: 18px; line-height: 1.6; }
.article-related { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; }
.article-related h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-dark); margin-bottom: 14px; }
.article-related-link {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; transition: color var(--transition);
}
.article-related-link:last-child { border-bottom: none; }
.article-related-link:hover .art-rel-title { color: var(--accent); }
.art-rel-dot { width:6px; height:6px; background:var(--accent); border-radius:50%; flex-shrink:0; margin-top:5px; }
.art-rel-title { font-size: 13px; color: var(--text-dark); line-height: 1.4; }

@media (min-width: 1024px) {
  .article-layout { grid-template-columns: 1fr 300px; }
}

/* Amm condominiale enhanced */
.amm-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.amm-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.amm-feature-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.amm-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.amm-feature-icon svg { width: 20px; height: 20px; stroke: var(--accent); }
.amm-feature-text h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.amm-feature-text p { font-size: 12px; color: var(--text-gray); line-height: 1.6; }
.amm-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.amm-stat-pill {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}
.amm-stat-pill .val { font-size: 26px; font-weight: 800; display: block; }
.amm-stat-pill .lbl { font-size: 11px; opacity: .85; margin-top: 2px; display: block; }

@media (min-width: 640px) {
  .amm-features-grid { grid-template-columns: 1fr 1fr; }
  .amm-stats-row { grid-template-columns: repeat(4, 1fr); }
}

/* ================================
   MARKETING — HEADER PHONE + NAV CTA
   ================================ */
.header-phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  margin-right: 4px;
}
.header-phone svg { width: 15px; height: 15px; stroke: var(--accent); flex-shrink: 0; }
.header-phone:hover { background: var(--bg-section); color: var(--accent); }
.nav-cta {
  display: none;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  padding: 8px 16px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: .04em;
  transition: all var(--transition);
  border: 2px solid var(--accent);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}

@media (min-width: 768px) {
  .header-phone { display: flex; }
  .nav-cta { display: inline-flex; align-items: center; gap: 6px; }
}

/* ================================
   TRUST BAND
   ================================ */
.trust-band {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}
.trust-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.trust-item:last-child { border-right: none; }
.trust-item-icon {
  width: 32px; height: 32px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon svg { width: 16px; height: 16px; stroke: var(--accent); }
.trust-item-text { line-height: 1.2; }
.trust-item-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.trust-item-sub {
  font-size: 10px;
  color: var(--text-light);
}

/* ================================
   TESTIMONIAL SECTION
   ================================ */
.testimonial-section { background: var(--bg-section); }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.testimonial-quote {
  font-size: 32px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.testimonial-stars svg {
  width: 16px; height: 16px;
  fill: #F97316;
  stroke: none;
}
.testimonial-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ea6707);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}
.testimonial-role {
  font-size: 11px;
  color: var(--text-light);
}
.testimonial-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-gray);
  letter-spacing: .05em;
}
@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ================================
   FAQ ACCORDION
   ================================ */
.faq-section { background: var(--white); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  gap: 16px;
  user-select: none;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-item.open .faq-q { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--accent); }
.faq-icon svg { width: 14px; height: 14px; stroke: var(--text-dark); transition: all var(--transition); }
.faq-item.open .faq-icon svg { stroke: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a-inner {
  padding: 0 0 18px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.75;
}
.faq-cta-box {
  background: linear-gradient(135deg, var(--accent), #ea6707);
  border-radius: var(--radius-md);
  padding: 28px;
  color: #fff;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.faq-cta-box h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
.faq-cta-box p { font-size: 13px; opacity: .85; margin-bottom: 20px; line-height: 1.6; }
.faq-cta-box .faq-cta-tel {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  margin-bottom: 12px;
  transition: background var(--transition);
  letter-spacing: .02em;
}
.faq-cta-box .faq-cta-tel:hover { background: rgba(255,255,255,0.25); }
.faq-cta-box .faq-cta-tel svg { width: 20px; height: 20px; }
@media (min-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr 300px; }
}

/* ================================
   URGENCY CTA BANNER
   ================================ */
.urgency-bar {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.urgency-bar a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  white-space: nowrap;
}
.urgency-bar-dot {
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
  flex-shrink: 0;
}
.cta-dark {
  background: linear-gradient(135deg, #111 0%, #222 100%);
  padding: 80px 0;
}
.cta-dark-inner { text-align: center; }
.cta-dark h2 {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.cta-dark h2 span { color: var(--accent); }
.cta-dark p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-guarantee-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-guarantee-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.cta-guarantee-pill svg { width: 14px; height: 14px; stroke: var(--accent); }
.cta-btn-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(249,115,22,0.4);
  letter-spacing: .02em;
}
.cta-btn-tel:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,115,22,0.5);
}
.cta-btn-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}
.cta-btn-email:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); color: #fff; }
@media (min-width: 480px) {
  .cta-btn-row { flex-direction: row; justify-content: center; }
}

/* ================================
   PROCESS STEPS
   ================================ */
.process-section { background: var(--bg-section); padding: 64px 0; }
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  margin-top: 40px;
}
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.process-step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(249,115,22,0.35);
}
.process-step-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.process-step-content p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.7;
}
.process-step-badge {
  display: inline-block;
  margin-top: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .05em;
}
@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-step { flex-direction: column; border-bottom: none; border-right: 1px solid var(--border); padding: 0 32px 0 0; }
  .process-step:last-child { border-right: none; padding-right: 0; }
}

/* ================================
   GARANZIE FORM
   ================================ */
.form-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.form-guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}
.form-guarantee svg { width: 14px; height: 14px; stroke: var(--accent); }

/* ================================
   FLOATING CTA MOBILE
   ================================ */
.float-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(249,115,22,0.45);
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  white-space: nowrap;
}
.float-cta.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.float-cta svg { width: 18px; height: 18px; }
/* Only show on mobile screens */
@media (min-width: 1024px) {
  .float-cta { display: none; }
}

/* ================================
   HERO TRUST BADGES
   ================================ */
.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-gray);
}
.hero-badge svg { width: 12px; height: 12px; stroke: var(--accent); }
.hero-badge .badge-dot {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

/* ================================
   CERTIFICATIONS (Chi Siamo)
   ================================ */
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.cert-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all var(--transition);
}
.cert-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.cert-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.cert-icon svg { width: 18px; height: 18px; stroke: var(--accent); }
.cert-name { font-size: 12px; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
.cert-body { font-size: 11px; color: var(--text-light); margin-top: 2px; }
@media (min-width: 640px) { .cert-grid { grid-template-columns: repeat(3, 1fr); } }

/* Footer privacy link */
.footer-privacy {
  text-align: center;
  margin-bottom: 6px;
  font-size: 11px;
}
.footer-privacy a {
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.footer-privacy a:hover { color: var(--accent); }

