/* ===========================
   GOFLOW — MAIN STYLESHEET
   Azzurro & Verde Palette
   =========================== */

:root {
  --bg: #050810;
  --bg-2: #080d18;
  --surface: #0c1220;
  --surface-2: #111827;
  --azzurro: #00d4ff;
  --azzurro-dim: rgba(0, 212, 255, 0.12);
  --azzurro-glow: rgba(0, 212, 255, 0.35);
  --verde: #00e676;
  --verde-dim: rgba(0, 230, 118, 0.12);
  --verde-glow: rgba(0, 230, 118, 0.35);
  --accent: var(--verde);
  --accent-secondary: var(--azzurro);
  --white: #f0f7ff;
  --muted: #6b8a9e;
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Syne', sans-serif;
  --font-text: 'DM Sans', sans-serif;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-text);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===========================
   CUSTOM CURSOR
   =========================== */
.cursor {
  width: 8px; height: 8px;
  background: var(--verde);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0, 230, 118, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--transition), width 0.3s, height 0.3s, border-color 0.3s;
}
body:hover .cursor { opacity: 1; }
.cursor.active { width: 14px; height: 14px; background: var(--azzurro); }
.cursor-follower.active { width: 54px; height: 54px; border-color: var(--azzurro-glow); }

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s, border-bottom 0.4s;
}
.nav.scrolled {
  background: rgba(5, 8, 16, 0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.nav-logo span { color: var(--verde); }
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--azzurro), var(--verde));
  transition: width 0.3s var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  color: var(--verde) !important;
  border: 1px solid var(--verde) !important;
  padding: 8px 20px !important;
  border-radius: 100px;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--verde) !important;
  color: var(--bg) !important;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ===========================
   MOBILE MENU
   =========================== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 16, 0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-link {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--verde); }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 32px 120px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.glow-1 {
  width: 700px; height: 700px;
  background: rgba(0, 230, 118, 0.08);
  top: -150px; left: 50%;
  transform: translateX(-50%);
}
.glow-2 {
  width: 500px; height: 500px;
  background: rgba(0, 212, 255, 0.06);
  bottom: -100px; right: -150px;
}
.glow-3 {
  width: 400px; height: 400px;
  background: rgba(0, 212, 255, 0.05);
  top: 50%; left: -100px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(0, 230, 118, 0.06);
  padding: 8px 18px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 32px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--verde);
  border-radius: 50%;
}
.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.title-line {
  display: block;
  overflow: hidden;
}
.title-line .char {
  display: inline-block;
  transform: translateY(100%);
}
.title-accent {
  color: var(--verde);
  -webkit-text-stroke: 0px;
}
.title-accent .char { color: var(--verde); }
.hero-sub {
  font-family: var(--font-text);
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--azzurro), transparent);
  opacity: 0.6;
  animation: scroll-drop 2.5s ease-in-out infinite;
}
@keyframes scroll-drop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0.3; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 0.8; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}
.hero-stat-bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 48px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 28px 48px;
}
.stat-item {
  text-align: center;
}
.stat-item strong {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--verde);
  letter-spacing: 0.02em;
}
.stat-item span {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--verde);
}
.stat-item p {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--verde), #00c853);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: none;
  transition: transform 0.3s var(--transition), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%);
  transition: transform 0.4s var(--transition);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--verde-glow);
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: none;
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--azzurro); color: var(--azzurro); }
.btn-full { width: 100%; justify-content: center; border-radius: 12px; }

/* ===========================
   REVEAL ANIMATIONS
   Contenuto visibile di default — le animazioni GSAP migliorano l'esperienza
   =========================== */
.reveal-up {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   SECTION LABELS & TITLES
   =========================== */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azzurro);
  margin-bottom: 16px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 40px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--azzurro), var(--verde));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title.center { text-align: center; }
.section-label.center { text-align: center; }

/* ===========================
   MARQUEE
   =========================== */
.marquee-wrapper {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee-dot { color: var(--verde) !important; font-size: 0.5rem !important; align-self: center; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }

/* ===========================
   HORIZONTAL SCROLL SECTION (Landonorris-style)
   =========================== */
.horizontal-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}
.horizontal-pin {
  position: relative;
  width: 100%;
  height: 100%;
}
.horizontal-track {
  display: flex;
  height: 100%;
  align-items: center;
  will-change: transform;
}
.horizontal-panel {
  flex-shrink: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.horizontal-panel-content {
  max-width: 900px;
  text-align: center;
}
.horizontal-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.horizontal-panel h2 .gradient {
  background: linear-gradient(135deg, var(--azzurro), var(--verde));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.horizontal-panel p {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}
.horizontal-panel-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--azzurro);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

/* ===========================
   BENEFITS
   =========================== */
.benefits {
  padding: 120px 0;
  background: var(--bg-2);
}
.benefits-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}
.benefits-intro p {
  font-size: 1.1rem;
  color: rgba(240,247,255,0.8);
  line-height: 1.9;
}
.benefits-intro strong { color: var(--verde); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: border-color 0.3s;
}
.benefit-card:hover { border-color: rgba(0, 212, 255, 0.25); }
.benefit-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--azzurro);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.benefit-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.benefit-card p {
  font-size: 0.9rem;
  color: rgba(240,247,255,0.6);
  line-height: 1.75;
}
.benefits-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.benefit-stat {
  text-align: center;
}
.benefit-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--verde);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.benefit-stat p {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 180px;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: 120px 0;
  position: relative;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 40px;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(0, 212, 255, 0.2); }
.faq-item h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.faq-item p {
  font-size: 0.95rem;
  color: rgba(240,247,255,0.65);
  line-height: 1.8;
}

/* ===========================
   ABOUT
   =========================== */
.about {
  padding: 140px 0;
  position: relative;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.about-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.3s, transform 0.3s;
}
.about-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateX(6px);
}
.about-card strong { color: var(--azzurro); }
.card-icon { font-size: 1.4rem; }
.card-2 { margin-left: 20px; }
.card-3 { margin-left: 40px; }
.about-text {
  color: rgba(240,247,255,0.7);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 24px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
  transition: border-color 0.3s, color 0.3s;
}
.tag:hover { border-color: var(--verde); color: var(--verde); }

/* ===========================
   SERVICES
   =========================== */
.services {
  padding: 120px 0 160px;
  background: var(--bg-2);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
  cursor: none;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,212,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.service-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--azzurro);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.service-icon-wrap {
  width: 48px; height: 48px;
  color: var(--verde);
  margin-bottom: 20px;
}
.service-icon-wrap svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: rgba(240,247,255,0.55);
  line-height: 1.75;
  margin-bottom: 24px;
}
.service-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verde);
  border: 1px solid rgba(0,230,118,0.3);
  padding: 5px 12px;
  border-radius: 100px;
}
.service-card-cta {
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(0,230,118,0.05));
  border-color: rgba(0, 212, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cta-sub {
  font-family: var(--font-body);
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--azzurro) !important;
  margin-bottom: 8px !important;
}

/* ===========================
   PROCESS
   =========================== */
.process {
  padding: 120px 0;
}
.process-steps {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
}
.process-step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  transition: border-color 0.3s;
}
.process-step:hover { border-color: rgba(0, 212, 255, 0.3); }
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--azzurro);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}
.step-content h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-content p {
  font-size: 0.88rem;
  color: rgba(240,247,255,0.55);
  line-height: 1.75;
}
.process-arrow {
  font-size: 1.5rem;
  color: var(--verde);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ===========================
   CONTACT
   =========================== */
.contact {
  padding: 140px 0;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
  top: -200px; left: -200px;
  pointer-events: none;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-desc {
  color: rgba(240,247,255,0.55);
  line-height: 1.85;
  margin-bottom: 40px;
  font-size: 1rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}
.contact-link:hover { color: var(--verde); }
.contact-link svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===========================
   FORM
   =========================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
  cursor: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(107,138,158,0.5);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--azzurro);
  box-shadow: 0 0 0 3px var(--azzurro-dim);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select { color: var(--muted); }
.form-field select option { background: var(--surface-2); color: var(--white); }
.form-success {
  display: none;
  text-align: center;
  color: var(--verde);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px;
  background: var(--verde-dim);
  border-radius: 8px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.footer-logo span { color: var(--verde); }
.footer-tagline {
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--verde); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-stats { flex-direction: column; gap: 32px; padding: 32px 24px; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .horizontal-section { height: auto; min-height: 80vh; }
  .horizontal-track { flex-direction: column; }
  .horizontal-panel { width: 100%; min-height: 60vh; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: flex; }
  .hero-title { font-size: clamp(3.5rem, 16vw, 6rem); }
  .hero-stat-bar {
    gap: 24px;
    padding: 20px 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { padding: 28px 24px; }
  .faq-item { padding: 24px 20px; }
  .process-steps {
    flex-direction: column;
    gap: 12px;
  }
  .process-arrow { transform: rotate(90deg); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .footer-top { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .container { padding: 0 20px; }
}
