


:root {
  --primary: #6C2BD9;
  --primary-light: #8B5CF6;
  --accent: #F72585;
  --accent2: #f700ff;
  --dark: #0A0A0F;
  --dark2: #12121A;
  --card-bg: #16161E;
  --text: #F0EEF8;
  --text-muted: #9896B0;
  --border: rgba(108,43,217,0.25);
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --gradient2: linear-gradient(135deg, #1a0533 0%, #0A0A0F 50%, #001830 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,h2,h3,h4,h5 { font-family: 'Raleway', sans-serif; line-height: 1.15; }

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 15, 0.575);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

.nav-logo {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,43,217,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108,43,217,0.6);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--primary-light);
  background: rgba(108,43,217,0.1);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #FF6B9D 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(247,37,133,0.4);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(247,37,133,0.6);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 4rem 4rem;
  overflow: hidden;
  background-image: url(assets/images/mostriciattolohero.png);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 10, 15, 0.897) 40%,
    rgba(10, 10, 15, 0) 100%
  );
  z-index: 0;
}

.hero-orb1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,43,217,0.3) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-orb2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,37,133,0.2) 0%, transparent 70%);
  bottom: 50px; left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}

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

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(108,43,217,0.2);
  border: 1px solid rgba(108,43,217,0.4);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gradient);
  border: 2px solid var(--dark);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.hero-trust-avatars span:first-child { margin-left: 0; }

/* ─── TECH BAND ─── */
.tech-band {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.tech-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.tech-badge svg { opacity: 0.7; }

.tech-badge strong { color: var(--text); }

/* ─── SECTIONS ─── */
section {
  padding: 6rem 4rem;
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-title span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 550px;
  font-weight: 300;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ─── STATS ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover { transform: translateY(-4px); border-color: rgba(108,43,217,0.5); }

.stat-number {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label { color: var(--text-muted); font-size: 0.9rem; }

/* ─── FEATURES ─── */
.features-section { background: var(--dark2); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(108,43,217,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::after { opacity: 1; }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(108,43,217,0.4); }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(108,43,217,0.15);
  border: 1px solid rgba(108,43,217,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── SECTORS ─── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.sector-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.sector-card:hover {
  border-color: var(--primary-light);
  background: rgba(108,43,217,0.1);
  transform: translateY(-3px);
}

.sector-icon { font-size: 2rem; margin-bottom: 0.8rem; display: block; }
.sector-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
.sector-card p { font-size: 0.8rem; color: var(--text-muted); }

.mille{display: none;}
/* ─── WHY SECTION ─── */
.why-section {
  background: var(--dark2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 2rem;
}

.why-visual {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(108,43,217,0.2) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(247,37,133,0.1) 0%, transparent 60%);
}

.why-bot-mockup {
  text-align: center;
  position: relative;
  z-index: 1;
}

.why-bot-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 60px rgba(108,43,217,0.5);
  animation: float 4s ease-in-out infinite;
}

.chat-bubble {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 16px 16px 16px 4px;
  padding: 0.8rem 1.2rem;
  font-size: 0.85rem;
  margin: 0.5rem auto;
  max-width: 260px;
  text-align: left;
  color: var(--text-muted);
  animation: fadeUp 0.5s ease both;
}

.chat-bubble.user {
  border-radius: 16px 16px 4px 16px;
  background: rgba(108,43,217,0.15);
  border-color: rgba(108,43,217,0.3);
  color: var(--text);
  text-align: right;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.why-list li::before {
  content: '✓';
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(108,43,217,0.2);
  border: 1px solid rgba(108,43,217,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  align-items: start;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.3s;
  position: relative;
}

.pricing-card.featured {
  background: linear-gradient(145deg, rgba(108,43,217,0.2) 0%, rgba(247,37,133,0.1) 100%);
  border-color: rgba(108,43,217,0.5);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(108,43,217,0.25);
}

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
  font-family: 'Raleway', sans-serif;
}

.pricing-plan {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin: 0.8rem 0;
  line-height: 1;
}

.pricing-price sup {
  font-size: 1.2rem;
  vertical-align: super;
  font-weight: 600;
}

.pricing-price sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.8rem;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, rgba(108,43,217,0.15) 0%, rgba(247,37,133,0.1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.cta-section h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.cta-section p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.05rem; }

.cta-form {
  display: flex;
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.4rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.cta-input::placeholder { color: var(--text-muted); }
.cta-input:focus { border-color: var(--primary-light); }

/* ─── FOOTER ─── */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 4rem 4rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 1rem;
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 1rem 2rem; }
  .nav-links { display: none; }
  section { padding: 4rem 2rem; }
  .hero { padding: 7rem 2rem 3rem; }
  .stats-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tech-band { padding: 1.2rem 2rem; gap: 1.5rem; }
}

@media (max-width: 640px) {
  .stats-grid, .features-grid, .sectors-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-form { flex-direction: column; }
}


.btn.btn-primary.btn-lg.shadow {
  background: linear-gradient(135deg, #6C2BD9, #F72585) !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 8px 25px rgba(108, 43, 217, 0.45) !important;
}

.btn.btn-primary.btn-lg.shadow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(108, 43, 217, 0.6) !important;
}