/* ============================================================
   PRO CLEAN – style.css
   Autore: @rc.dev
   Colori: Fucsia #d63384 | Arancione #ff7a00 | Bianco | Grigio
============================================================ */

/* ── CSS Variables ── */
:root {
  --fuchsia: #d63384;
  --fuchsia-dark: #b52970;
  --orange: #ff7a00;
  --orange-light: #ff9533;
  --white: #ffffff;
  --gray-50: #f9f9fb;
  --gray-100: #f3f3f7;
  --gray-200: #e8e8f0;
  --gray-400: #9898b0;
  --gray-600: #5a5a78;
  --gray-900: #1a1a2e;
  --gradient: linear-gradient(135deg, var(--fuchsia), var(--orange));
  --gradient-soft: linear-gradient(135deg, #fde8f3, #fff3e8);
  --shadow-sm: 0 2px 12px rgba(214,51,132,0.08);
  --shadow-md: 0 8px 32px rgba(214,51,132,0.13);
  --shadow-lg: 0 20px 60px rgba(214,51,132,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gradient);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(214,51,132,0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange), var(--fuchsia));
  opacity: 0;
  transition: opacity 0.35s;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(214,51,132,0.38); }
.btn-primary:active { transform: translateY(0); }
.btn-primary > * { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--fuchsia);
  color: var(--fuchsia);
  background: rgba(214,51,132,0.04);
}

.btn-full { width: 100%; justify-content: center; }

.btn-nav {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gradient);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ── Section Headers ── */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(214,51,132,0.08);
  border-radius: 50px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.section-title em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 540px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 24px;
}

.nav-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.nav-menu ul {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--fuchsia);
}

.nav-link:hover::after,
.nav-link.active::after {
  left: 14px; right: 14px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid transparent;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), border-color 0.3s;
}

.mobile-menu.open {
  max-height: 400px;
  border-top-color: var(--gray-200);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
}

.mob-link {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  color: var(--gray-600);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mob-link:hover { color: var(--fuchsia); background: rgba(214,51,132,0.05); }

.mob-cta {
  margin-top: 12px;
  background: var(--gradient);
  color: var(--white) !important;
  text-align: center;
  border-radius: 50px;
  padding: 14px 24px;
  font-weight: 600;
}

.mob-cta:hover { background: linear-gradient(135deg, var(--orange), var(--fuchsia)); opacity: 0.95; }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--gradient-soft);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(214,51,132,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,122,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Bubbles */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(214,51,132,0.15), rgba(255,122,0,0.12));
  border: 1px solid rgba(214,51,132,0.2);
  pointer-events: none;
  animation: floatBubble linear infinite;
}

.b1 { width: 80px; height: 80px; top: 15%; left: 10%; animation-duration: 8s; animation-delay: 0s; }
.b2 { width: 50px; height: 50px; top: 25%; right: 15%; animation-duration: 11s; animation-delay: -3s; }
.b3 { width: 120px; height: 120px; bottom: 25%; right: 8%; animation-duration: 14s; animation-delay: -5s; }
.b4 { width: 35px; height: 35px; top: 60%; left: 5%; animation-duration: 9s; animation-delay: -2s; }
.b5 { width: 65px; height: 65px; bottom: 15%; left: 20%; animation-duration: 12s; animation-delay: -7s; }

@keyframes floatBubble {
  0%   { transform: translateY(0) scale(1); opacity: 0.7; }
  50%  { transform: translateY(-30px) scale(1.05); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 0.7; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: 20px;
  padding: 6px 16px;
  background: rgba(214,51,132,0.1);
  border-radius: 50px;
  border: 1px solid rgba(214,51,132,0.2);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero badge */
.hero-badge {
  position: absolute;
  bottom: 60px;
  right: max(40px, 5vw);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.hero-badge svg { color: var(--fuchsia); flex-shrink: 0; }

.hero-badge span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
}

/* Fade-up animations */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.card-icon svg {
  width: 26px; height: 26px;
  color: var(--fuchsia);
  transition: var(--transition);
}

.service-card:hover .card-icon {
  background: var(--gradient);
}

.service-card:hover .card-icon svg {
  color: var(--white);
  stroke: var(--white);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Visual */
.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.about-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
}

.about-logo {
  width: 350px;
  height: 350px;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.about-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: rotateRing linear infinite;
}

.about-ring.r1 {
  width: 350px; height: 290px;
  border-color: rgba(214,51,132,0.2);
  animation-duration: 20s;
  border-style: dashed;
}

.about-ring.r2 {
  width: 420px; height: 320px;
  border-color: rgba(255,122,0,0.15);
  animation-duration: 28s;
  animation-direction: reverse;
  border-style: dashed;
}

@keyframes rotateRing {
  to { transform: rotate(360deg); }
}

.about-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 32px;
  box-shadow: var(--shadow-sm);
}

.stat { text-align: center; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
}

.stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
}

/* Text */
.about-text .section-title { margin-top: 12px; }

.about-text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-text strong { color: var(--fuchsia); font-weight: 600; }

.about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-600);
  font-weight: 500;
}

.about-list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--fuchsia);
  background: rgba(214,51,132,0.1);
  border-radius: 50%;
  padding: 3px;
  box-sizing: content-box;
}

/* ============================================================
   CONTACTS
============================================================ */
.contacts {
  background: var(--gray-50);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

/* Info cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateX(6px);
  border-color: var(--fuchsia);
  box-shadow: var(--shadow-sm);
}

.info-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon svg {
  width: 22px; height: 22px;
  color: var(--fuchsia);
}

.info-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: color 0.2s;
}

a.info-value:hover { color: var(--fuchsia); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: 48px 44px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-900);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--gray-900);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  transition: var(--transition);
  resize: none;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--fuchsia);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(214,51,132,0.08);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e53e3e;
}

.field-error {
  font-size: 0.8rem;
  color: #e53e3e;
  display: none;
}

.field-error.show { display: block; }

/* Success message */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 48px 24px;
}

.form-success.show { display: flex; }

.form-success svg { color: var(--fuchsia); }

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gray-900);
}

.form-success p { color: var(--gray-400); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 0.8rem !important;
  margin-top: 16px !important;
  color: rgba(255,255,255,0.35) !important;
}

.footer-links h4,
.footer-social-wrap h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--fuchsia); }

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.65);
}

.social-btn svg { width: 18px; height: 18px; }

.social-btn:hover {
  background: var(--gradient);
  color: var(--white);
  transform: translateY(-3px);
}

/* ============================================================
   SCROLL-TO-TOP BUTTON
============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ============================================================
   REVEAL ANIMATIONS (scroll)
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
              transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid children */
.services-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.5s; }
.services-grid .reveal:nth-child(7) { transition-delay: 0.6s; }

/* ============================================================
   CONTACT BUTTONS (Chiama + WhatsApp)
============================================================ */
.info-card--tall { align-items: flex-start; }
.info-card__body { display: flex; flex-direction: column; gap: 6px; }

.contact-btns {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.contact-btn--call {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(214,51,132,0.25);
}

.contact-btn--call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214,51,132,0.38);
}

.contact-btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.28);
}

.contact-btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}


/* ============================================================
   FOOTER RC ANIMATO
============================================================ */
.footer-rc {
  /*font-family: var(--font-display);*/
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.12;
  user-select: none;
  animation: rcFloat 6s ease-in-out infinite;
  display: block;
  margin-top: 8px;
}

@keyframes rcFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); opacity: 0.12; }
  25%       { transform: translateY(-12px) rotate(1deg); opacity: 0.18; }
  50%       { transform: translateY(-6px) rotate(-1deg); opacity: 0.15; }
  75%       { transform: translateY(-16px) rotate(2deg); opacity: 0.2; }
}

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

/* Tablet */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { order: -1; }
  .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-menu, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 110px 16px 60px; }
  .hero-badge { display: none; }
  .br-desktop { display: none; }

  .services-grid { grid-template-columns: 1fr; gap: 20px; }

  /* About – contenitore non sfora lo schermo */
  .about-visual { width: 100%; overflow: hidden; }
  .about-img-wrap { width: 200px; height: 200px; margin: 0 auto; }
  .about-logo { width: 170px; height: 170px; }
  .about-ring.r1 { width: 190px; height: 190px; }
  .about-ring.r2 { width: 210px; height: 210px; }

  /* Stats – larghezza fluida */
  .about-stats {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 20px 16px;
    gap: 16px;
  }

  /* Contacts */
  .contact-form-wrap { padding: 28px 16px; }
  .contacts-grid { gap: 24px; }
  .info-card { padding: 18px 16px; gap: 14px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .scroll-top { bottom: 20px; right: 20px; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; max-width: 320px; }

  .contact-btns { flex-direction: column; }
  .contact-btn { justify-content: center; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.7rem; }
  .hero-title { font-size: 2rem; }
  .nav-container { padding: 12px 16px; }
  .container { padding: 0 16px; }
  .service-card { padding: 24px 20px; }
  .section-header { padding: 0 8px; }
}