/* =========================================
   RESET + BASE
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(180deg, #F3F4F6 0%, #E5E7EB 40%, #EEF2FF 100%);
  color: #020617;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* =========================================
   DESIGN TOKENS (LIGHT MODE VARIANTE 2)
========================================= */
:root {
  --bg: #F3F4F6;
  --bg-soft: #FFFFFF;
  --ink: #020617;
  --muted: #6B7280;
  --primary: #4F46E5;
  --accent-pink: #EC4899;
  --border-soft: rgba(148, 163, 253, 0.4);
  --radius-xl: 40px;
  --radius-md: 22px;
  --shadow-soft: 0 28px 80px rgba(15, 23, 42, 0.12);
  --max-w: 1200px;
  --transition: all .25s ease;
  --header-h: 110px;

  /* extra */
  --header-top-gap: 30px;
}

/* =========================================
   INTRO OVERLAY
========================================= */
.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 20000;
  /* più alto dell'header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(79, 70, 229, 0.16), transparent 55%),
    radial-gradient(circle at bottom, #E5E7EB, #F3F4F6 85%);
  color: #0F172A;
  text-align: center;
  pointer-events: auto;
}

.intro-logo {
  font-size: clamp(3.4rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px) scale(.96);
  animation: introLogo 1s ease-out forwards .1s;
}

.intro-subtitle {
  margin-top: 16px;
  font-size: .9rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transform: translateY(10px);
  animation: introSubtitle 1s ease-out forwards .35s;
}

/* contenuto nascosto all'inizio */
.intro-content {
  opacity: 0;
}

/* quando finisce */
.intro-content.is-on {
  opacity: 1;
  transition: opacity .45s ease;
}

/* stato hide (unificato) */
.intro-screen.intro-hide,
.intro-screen.is-hide {
  animation: introFadeOut .7s ease-in forwards;
  pointer-events: none;
}

/* =========================================
   PAGE WRAP
========================================= */
.page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(79, 70, 229, 0.12), transparent 55%),
    radial-gradient(circle at bottom, #E5E7EB, #F9FAFB 85%);
  display: flex;
  flex-direction: column;
  transition: opacity .7s ease;
}

/* =========================================
   HEADER (UNIFICATO)
========================================= */
header {
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  z-index: 10000;

  /* FIX: header fixed */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 0;
}

/* LOGO SINISTRA */
header .loghea {
  content: url(/images/kiwuu-black-min.png);
  display: block;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

/* MENU CENTRALE (DESKTOP) */
header .menu {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

header .nav {
  display: flex;
  gap: 26px;
}

header .nav a {
  color: #4B5563;
  font-size: 0.92rem;
  text-decoration: none;
}

header .nav a:hover {
  color: #111827;
}

/* link con underline gradient */
.nav a {
  text-decoration: none;
  color: inherit;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent-pink));
  transition: var(--transition);
}

.nav a:hover {
  color: #020617;
}

.nav a:hover::after {
  width: 100%;
}

/* ICONE + THEME TOGGLE DESTRA */
header .menico {
  display: flex;
  align-items: center;
  gap: 12px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

header .menico .fa-user,
header .menico .fa-shopping-cart,
header .menico .fa-globe,
header .menico #themeToggle1 {
  margin-left: 0px;
  cursor: pointer;
  color: #111827;
}

header .menico .fa-globe:hover .subnav-content,
.menu-overlay .fa-globe:hover .subnav-content {
  display: block;
}

header .menico .subnav-content {
  display: none;
  position: absolute;
  top: 44px;
  right: 93px;
  z-index: 100000;
  padding: 10px;
  width: 160px;
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.34), transparent 70%), var(--bg-soft);
  border-radius: 6px;
  border: 1px solid var(--border-soft);
}

.menu-overlay .subnav-content {
  display: none;
  position: absolute;
  bottom: 25px;
  left: -77px;
  z-index: 100000;
  padding: 10px;
  width: 160px;
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.34), transparent 70%), var(--bg-soft);
  border-radius: 6px;
  border: 1px solid var(--border-soft);
}

header .menico .subnav-content li,
.menu-overlay .subnav-content li {
  padding: 10px 0;
  display: inline-block;
  width: 50%;
  float: left;
  cursor: pointer;
  font-size: 9px;
  transition: all .25s cubic-bezier(.25, .8, .25, 1);
  position: relative;
}

/* underline */
header .menico .subnav-content li::after,
.menu-overlay .subnav-content li::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #EC4899, #4F46E5);
  transition: width .25s ease;
  border-radius: 2px;
}

header .menico .subnav-content li:hover::after,
.menu-overlay .subnav-content li:hover::after {
  width: 90%;
}

/* pari: underline da destra */
header .menico .subnav-content li:nth-child(even)::after,
.menu-overlay .subnav-content li:nth-child(even)::after {
  left: auto;
  right: 0;
  background: linear-gradient(270deg, #EC4899, #4F46E5);
}

header .menico .subnav-content li:nth-child(even):hover::after,
.menu-overlay .subnav-content li:nth-child(even):hover::after {
  width: 90%;
}

header .menico .subnav-content li:nth-child(even),
.menu-overlay .subnav-content li:nth-child(even) {
  text-align: right;
}

header .menico a,
.menu-overlay a {
  color: #000;
}

header .mentit,
.menu-overlay .mentit {
  position: relative;
}

header .mentit .notsho,
.menu-overlay .mentit .notsho {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  position: absolute;
  top: -20px;
  right: -8px;
  font-size: 14px;
  line-height: 21px;
  font-family: sans-serif;
  color: #000;
}

header .menico .subnav-content ul,
.menu-overlay .subnav-content ul {
  width: 100%;
  display: inline-block;
}

header .glass-overlay {
  position: absolute;
  top: 0px !important;
  inset: 18px;
  border-radius: 22px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  height: 100%;
}

header .menu-toggle {
  position: absolute;
  top: 0px;
  right: 20px;
}

/* NASCONDI LOGO E ICONE HEADER CON MENU APERTO */
body.menu-open header .loghea {
  content: url(/images/kiwuu-white-min.png);
  display: block;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

/* HAMBURGER TOGGLE */
.menu-toggle {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 253, 0.65);
  display: none;
  /* desktop default hidden */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 40;
  margin-left: 8px;
  box-shadow: 0 0px 10px rgba(15, 23, 42, 0.15);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 18px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
  position: relative;
  display: block;
  transition: all .25s ease;
}

.menu-toggle span::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
}

.menu-toggle span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
}

/* trasformazione in X */
body.menu-open .menu-toggle span {
  background: transparent;
}

body.menu-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* =========================================
   SECTION WRAPPER
========================================= */
.section-screen {
  max-width: var(--max-w);
  margin: 0 auto;

  /* full screen “reale” */
  min-height: calc(100svh - var(--header-h) - var(--header-top-gap));
  min-height: calc(100dvh - var(--header-h) - var(--header-top-gap));

  display: flex;
  align-items: center;
  justify-content: center;
}

.section-screen-top {
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: auto;
  padding: 60px 0 80px;
  display: flex;
  align-items: flex-start;
}

/* HERO: 1 schermata ESATTA (centrato sul device) */
#hero.section-screen {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;

  min-height: 100svh;
  min-height: 100dvh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  transition: opacity .35s ease, transform .35s ease;
}

/* =========================================
   CARD / HERO
========================================= */
.info {
  width: 100%;
  background: transparent;
  border-radius: var(--radius-xl);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.info-inner {
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.34), transparent 70%), var(--bg-soft);
  border-radius: var(--radius-xl);
  box-shadow: 0 0px 1px rgba(0, 0, 0, 0.96);
}

/* HERO CARD PRINCIPALE */
.hero {
  width: 100%;
  padding: 72px 80px 64px;
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.14), transparent 70%),
    radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.08), transparent 75%),
    var(--bg-soft);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeUp .6s ease-out;
  position: relative;
  z-index: 5;

  /* smooth jump */
  transition: transform .35s ease;
  transform: translateY(20px);
}

.hero-label {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-title-main {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, #111827, #4B5563);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}

.hero-subtitle-main {
  font-size: 1.02rem;
  color: #4B5563;
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.8;
}

.hero-text {
  font-size: 16px;
  max-width: 620px;
  margin: 4px auto 0;
  color: var(--muted);
  line-height: 1.9;
}

.hero-text strong {
  color: #111827;
  font-weight: 600;
}

/* VIDEO FLIP HERO INTRO */
.hero.flip {
  padding: 10px 10px 72px 10px;
}

.hero.flip .video-wrapper {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
  width: 100%;
  height: 330px;
  /* altezza fissa desktop */
  overflow: hidden;
}

.hero.flip .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* FLIP ORIZZONTALE HERO (#hero) */
#hero.hero-flip-root {
  position: relative;
  perspective: 1600px;
}

#hero.hero-flip-root .hero-flip-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

#hero.hero-flip-root .hero-front,
#hero.hero-flip-root .hero-back {
  backface-visibility: hidden;
}

#hero.hero-flip-root .hero-front {
  position: relative;
  z-index: 2;
}

#hero.hero-flip-root .hero-back {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: rotateY(180deg);
}

#hero.hero-flip-root .hero-flip-inner.is-flipped {
  transform: rotateY(180deg);
}

/* z-index layering */
#hero.section-screen {
  position: relative;
  z-index: 1;
}

#hero.section-screen .hero,
#hero.section-screen .hero-video-back {
  position: relative;
  z-index: 2;
}

.section-screen::before,
.section-screen::after {
  z-index: 0;
}

.hero-lasers,
.lasers-bg,
.bg-lasers {
  position: absolute;
  z-index: 0;
}

/* BADGE ROW */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

.badge {
  background: rgba(243, 244, 246, 0.9);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111827;
  border: 1px solid rgba(209, 213, 219, 0.9);
}

/* CTA */
.hero-actions {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.magnetic {
  display: inline-block;
  position: relative;
  transition: transform .18s ease-out;
}

.cta {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 999px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 0px 10px rgba(59, 130, 246, 0.35);
  border: 1px solid #fff;
  cursor: pointer;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0px 10px rgba(59, 130, 246, 0.45);
}

.cta-secondary {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(249, 250, 251, 0.85);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.cta-secondary:hover {
  background: #ffffff;
  color: #020617;
  border-color: rgba(148, 163, 184, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 1px 10px rgba(148, 163, 184, 0.35);
}

.hero-note {
  font-size: 10px;
  color: var(--muted);
}

/* =========================================
   FLOATING SECTION
========================================= */
.floating-section {
  width: 100%;
  padding: 56px 60px 60px;
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.08), transparent 60%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.05), transparent 70%),
    #F9FAFB;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 0px 10px rgba(15, 23, 42, 0.10);
}

.floating-header-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.floating-header-title {
  margin-top: 8px;
  font-size: 24px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111827;
}

.floating-header-sub {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  max-width: 540px;
}

.floating-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.floating-card {
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(191, 219, 254, 0.45), transparent 60%),
    rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(209, 213, 219, 0.9);
  animation: float 7s ease-in-out infinite;
  transform-origin: center center;
  backdrop-filter: blur(12px);
}

.floating-card:nth-child(2) {
  animation-delay: -2.3s;
}

.floating-card:nth-child(3) {
  animation-delay: -4.1s;
}

.floating-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(129, 140, 248, 0.7);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4F46E5;
  margin-bottom: 10px;
  background: rgba(239, 246, 255, 0.95);
}

.floating-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--primary), var(--accent-pink));
}

.floating-title {
  font-size: 15px;
  color: #111827;
  margin-bottom: 8px;
}

.floating-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.floating-meta {
  margin-top: 14px;
  font-size: 10px;
  color: #4F46E5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.floating-card:hover {
  box-shadow: 0 0px 10px rgba(15, 23, 42, 0.16);
  border-color: rgba(129, 140, 248, 0.95);
}

/* =========================================
   HERO ROTATE
========================================= */
.hero-rotate {
  width: 100%;
  padding: 52px 32px 40px;
  text-align: center;
  color: #0F172A;
  font-family: system-ui, -apple-system, Inter, sans-serif;
  background: transparent;
  --item-h: 55px;
}

.hero-rotate h1 {
  font-size: clamp(2.1rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-rotate p {
  font-size: 1rem;
  color: #4B5563;
  max-width: 640px;
  margin: 0 auto 26px;
  line-height: 1.8;
}

.hero-rotate .cta {
  margin-top: 6px;
}

.rotate-box {
  display: inline-block;
  height: var(--item-h);
  overflow: hidden;
  vertical-align: bottom;
}

.hero-rotate .rotdes {
  white-space: nowrap;
}

.rotate-inner {
  display: block;
  will-change: transform;
  animation: rotate 12s cubic-bezier(0.45, 0.05, 0.25, 1) infinite;
}

.rotate-inner span {
  display: block;
  height: var(--item-h);
  line-height: var(--item-h);
}

.rotate-inner span:nth-child(1) {
  color: #2563EB;
}

.rotate-inner span:nth-child(2) {
  color: #16A34A;
}

.rotate-inner span:nth-child(3) {
  color: #D97706;
}

.rotate-inner span:nth-child(4) {
  color: #DB2777;
}

/* =========================================
   CONTACT + FORM (parziale come da tuo CSS)
========================================= */
.contact-col {
  flex: 1;
  min-width: 260px;
}

.contact-title {
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 14px;
}

.contact-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 24px;
}

.contact-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-item {
  font-size: 11px;
  color: #111827;
  margin-bottom: 10px;
}

.contact-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}

.contact-badge {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 253, 0.7);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4F46E5;
  background: rgba(239, 246, 255, 0.9);
}

.contact-social {
  display: flex;
  gap: 12px;
  font-size: 9px;
  color: var(--muted);
  margin-top: 12px;
}

/* FORM */
.form-content {
  position: relative;
  z-index: 1;
}

.form-content #bod {
  height: 140px;
  padding: 14px;
}

.form-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 6px;
}

.form-sub {
  font-size: 10px;
  color: #4F46E5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.field {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.label {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.input::placeholder,
textarea::placeholder {
  color: #9CA3AF;
}

.input:focus,
textarea:focus,
select:focus {
  border-color: #818CF8;
}

/* tags */
.form-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.form-tag {
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 253, 0.6);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111827;
  background: #EEF2FF;
  cursor: pointer;
}

/* submit */
.submit {
  margin-top: 14px;
  border: none;
  padding: 14px 32px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0px 10px rgba(59, 130, 246, 0.35);
}

.submit-section {
  margin: 0 auto;
  display: block;
  border: none;
  padding: 14px 32px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.submit:hover,
.submit-section:hover {
  transform: translateY(-3px);
}

/* =========================================
   LASERS
========================================= */
.kiwuu-laser,
.kiwuu-laser-2 {
  position: absolute;
  width: 180%;
  height: 3px;
  left: -40%;
  background: linear-gradient(90deg,
      rgba(59, 130, 246, 0),
      rgba(59, 130, 246, 0.9),
      rgba(236, 72, 153, 0.9),
      rgba(236, 72, 153, 0));
  filter: blur(1.5px);
  opacity: 0.65;
  border-radius: 100px;
  pointer-events: none;
  z-index: 1;
}

.kiwuu-laser {
  top: 42%;
  animation: kiwuuMove1 16s linear infinite alternate;
}

.kiwuu-laser-2 {
  top: 48%;
  animation: kiwuuMove2 18s linear infinite alternate;
}

/* =========================================
   TABLE WRAPPER + FEATURE TABLE (come da tuo CSS)
   (Nota: hai 2 volte .feature-table: tengo la versione "potenziata" come finale)
========================================= */
.table-wrapper {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
}

.table-wrapper td {
  font-size: 9px;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* versione tabella potenziata */
.feature-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.88rem;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 0px 10px rgba(15, 23, 42, 0.12);
}

.feature-table thead {
  background: #EEF2FF;
}

.feature-table th,
.feature-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(209, 213, 219, 0.9);
  vertical-align: top;
  text-align: left;
}

.feature-table thead th {
  padding: 10px 8px;
  font-weight: 600;
  text-align: center;
  color: #111827;
  white-space: nowrap;
}

.feature-table thead th:first-child {
  background: #F9FAFB;
  border-bottom-color: rgba(209, 213, 219, 1);
}

.feature-table thead th:last-child {
  border-top-right-radius: 16px;
}

.feature-table thead th.is-col-hover:not(:first-child) {
  box-shadow: 0 0 0 1px rgba(55, 65, 81, 0.9) inset;
}

.feature-table thead th:nth-child(2) {
  background: linear-gradient(135deg, #4f46e5, #ec4899);
  color: #f9fafb;
}

.feature-table tbody td {
  padding: 9px 10px;
  color: #374151;
  border-bottom: 1px solid rgba(209, 213, 219, 1);
  vertical-align: middle;
}

.feature-table tbody td:first-child {
  font-weight: 500;
  color: #111827;
  text-align: left;
  background: #F9FAFB;
}

.feature-table tbody td:nth-child(2) {
  font-weight: 600;
  color: #111827;
  background: radial-gradient(circle at top left, rgba(191, 219, 254, 0.5), transparent);
}

.feature-table tbody tr:nth-child(odd) {
  background: #FFFFFF;
}

.feature-table tbody tr:hover {
  background: radial-gradient(circle at center, rgba(191, 219, 254, 0.7), #FFFFFF);
}

.feature-table tbody tr:last-child td {
  border-bottom: none;
}

.feature-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}

.feature-table strong {
  font-weight: 600;
}

.feature-table i.fa-circle {
  font-size: 0.6rem;
  margin-right: 0.45rem;
}

.feature-table td i {
  margin-right: 6px;
}

.feature-table .check,
.check {
  color: #22c55e !important;
}

.feature-table .warn,
.warn {
  color: #eab308 !important;
}

.feature-table .x,
.x {
  color: #ef4444 !important;
}

/* =========================================
   PRICING CAROUSEL KIWUU
========================================= */
.plans-header {
  text-align: center;
}

.plans-header-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.plans-header-title {
  margin-top: 8px;
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111827;
}

.plans-header-sub {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

/* CAROUSEL */
.owl-carousel {
  margin-top: 0px;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.owl-carousel::-webkit-scrollbar {
  height: 6px;
}

.owl-carousel::-webkit-scrollbar-track {
  background: rgba(229, 231, 235, 0.9);
  border-radius: 99px;
}

.owl-carousel::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 99px;
}

/* CARD */
.item {
  scroll-snap-align: start;
  background: radial-gradient(circle at top, rgba(191, 219, 254, 0.55), transparent 55%), #FFFFFF;
  border-radius: 22px;
  border: 1px solid rgba(209, 213, 219, 1);
  box-shadow: 0 0px 10px rgba(15, 23, 42, 0.14);
  position: relative;
  margin: 0 20px 6px;
  padding-bottom: 14px;
}

.plan-video {
  width: 100%;
  overflow: hidden;
  z-index: 1;
  position: relative;
}

.plan-video video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 21px 21px 0px 0px;
  pointer-events: none;
}

/* CONTENT */
.plan-inner {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-tag-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.plan-tag {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 253, 0.8);
  color: #4F46E5;
  background: #EEF2FF;
}

.plan-type {
  color: var(--muted);
}

.plan-title {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.plan-sub {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  height: 35px;
}

.plan-price {
  margin-top: -2px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.plan-price span {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}

/* FEATURE GRID */
.plan-features {
  margin-top: 10px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
}

.plan-features li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.plan-feat-label {
  color: var(--muted);
  white-space: nowrap;
}

.plan-feat-value {
  color: #111827;
  text-align: right;
}

/* CTA */
.plan-footer {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.plan-badge {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4F46E5;
}

.plan-cta-wrap {
  display: inline-block;
}

.plan-cta {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  color: #ffffff;
  transition: transform .18s ease, box-shadow .18s ease;
  text-decoration: none;
  box-shadow: 0 0px 10px rgba(59, 130, 246, 0.35);
}

.plan-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 0px 10px rgba(59, 130, 246, 0.5);
}

/* Variante CTA outline */
.plan-cta-outline {
  background: transparent;
  border: 1px solid rgba(148, 163, 253, 0.9);
  box-shadow: 0 0px 10px rgba(148, 163, 253, 0.35);
  color: #111827;
}

.plan-cta-outline:hover {
  background: #EEF2FF;
}

/* Highlight PRO */
.item.pro {
  border-color: rgba(129, 140, 248, 1);
  box-shadow: 0 0px 10px rgba(59, 130, 246, 0.95);
}

.item.pro .plan-title {
  color: #111827;
}

.item.pro .plan-badge {
  color: #D97706;
}

.item.pro .plan-badge.standard {
  color: #4F46E5;
}

.price {
  width: 70px;
  height: 70px;
  border-radius: 50px;
  line-height: 59px;
  font-weight: 800;
  position: absolute;
  top: -40px;
  right: 9px;
  background: radial-gradient(circle at top, rgba(191, 219, 254, 0.9), transparent 55%), #FFFFFF;
  border: 1px solid rgba(148, 163, 253, 1);
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  padding-left: 13px;
}

.rotate {
  -webkit-transform: rotate(8deg);
  -moz-transform: rotate(8deg);
  -ms-transform: rotate(8deg);
  -o-transform: rotate(8deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

/* OWL FIX */
.owl-carousel .owl-item {
  padding-top: 40px;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
  box-shadow: unset;
}

.owl-prev {
  left: 0px;
}

.owl-next {
  right: 0px;
}

.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* frecce cerchiate */
.owl-prev,
.owl-next {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
  border: 1px solid rgba(148, 163, 253, 0.5);
  box-shadow: 0 0px 10px rgba(15, 23, 42, 0.18);
}

.owl-prev::before,
.owl-next::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 24px;
  color: #1f2937;
}

.owl-prev::before {
  content: "\f053";
}

.owl-next::before {
  content: "\f054";
}

.owl-theme .owl-controls .owl-page span {
  width: 6px;
  height: 6px;
}

.owl-prev:hover,
.owl-next:hover {
  background: #EEF2FF;
  border-color: rgba(148, 163, 253, 0.9);
}

/* =========================================
   THEME TOGGLES
========================================= */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.pill {
  position: relative;
  width: 72px;
  height: 34px;
  border-radius: 999px;
  padding: 3px;
  background: linear-gradient(120deg, #E5E7EB, #F9FAFB);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.6);
  overflow: hidden;
}

.pill-inner {
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  font-size: 0.6rem;
  color: #6b7280;
  pointer-events: none;
}

.pill-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #FFFFFF;
  box-shadow:
    0 0 6px rgba(15, 23, 42, 0.25),
    inset 0 0 5px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, background 0.25s ease;
}

.pill-knob.light-mode {
  background: #0f172a;
  box-shadow:
    0 0 4px rgba(0, 0, 0, 0.35),
    inset 0 0 10px rgba(0, 0, 0, 0.25);
  transform: translateX(34px);
}

/* toggle secondario */
.toggle-btn {
  width: 60px;
  height: 30px;
  background: #e5e7eb;
  border-radius: 40px;
  border: 2px solid rgba(148, 163, 253, 0.6);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  transition: all .3s ease;
}

.toggle-btn .icon {
  font-size: 14px;
  opacity: 0.6;
  transition: opacity .25s ease;
}

.toggle-btn::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f9fafb;
  top: 3px;
  left: 3px;
  transition: all .3s ease;
}

body.light .toggle-btn {
  background: #e5e7eb;
  border-color: rgba(79, 70, 229, 0.7);
}

body.light .toggle-btn::after {
  left: calc(100% - 27px);
  background: #1f2937;
}

body.light .toggle-btn .sun {
  opacity: 1;
}

body:not(.light) .toggle-btn .moon {
  opacity: 1;
}

/* =========================================
   MENU OVERLAY SPLIT
========================================= */
.menu-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  z-index: 999;
}

body.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .25s ease, transform .25s ease, visibility 0s;
}

body.menu-open {
  overflow: hidden;
}

.overlay-left,
.overlay-right {
  flex: 1;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overlay-left {
  background: radial-gradient(circle at top, #EEF2FF, transparent 60%), #F9FAFB;
  border-right: 1px solid rgba(209, 213, 219, 1);
  align-items: center;
  text-align: center;
}

.overlay-logo {
  position: relative;
  font-size: 1.9rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111827;
  overflow: hidden;
}

.overlay-logo::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -120%;
  width: 60%;
  height: 140%;
  background: linear-gradient(120deg, rgba(249, 250, 251, 0), rgba(249, 250, 251, 0.9), rgba(249, 250, 251, 0));
  transform: skewX(-20deg);
  animation: kiwuuShine 5s linear infinite;
  pointer-events: none;
}

.overlay-tag {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #6B7280;
}

.overlay-right {
  background: #F3F4F6;
  align-items: flex-start;
}

.overlay-topbar {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.overlay-menico {
  display: flex;
  align-items: center;
  gap: 12px;
}

.overlay-menico .fa-user,
.overlay-menico .fa-shopping-cart,
.overlay-menico .fa-globe {
  cursor: pointer;
  font-size: 1rem;
  color: #111827;
}

.menu-links {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #111827;
  padding: 12px 0;
  border-bottom: 1px solid rgba(209, 213, 219, 1);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  opacity: 0;
  transform: translateY(14px);
  transition: all .3s ease;
}

.menu-links a span.label {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.menu-links a span.index {
  font-size: .75rem;
  color: #9CA3AF;
}

body.menu-open .menu-links a:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .05s;
}

body.menu-open .menu-links a:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .1s;
}

body.menu-open .menu-links a:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .15s;
}

body.menu-open .menu-links a:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .2s;
}

.menu-links a:hover {
  border-color: rgba(148, 163, 253, 0.9);
}

.tag-active {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

/* =========================================
   FLOATING WHATSAPP
========================================= */
#asswha {
  width: 56px;
  height: 56px;
  position: fixed;
  bottom: 185px;
  right: 20px;
  z-index: 99;
}

/* =========================================
   FOOTER (come da tuo CSS)
========================================= */
footer .brand-logo {
  display: inline-block;
}

footer .brand-logo img {
  width: auto;
  height: 80px;
}

.soc {
  text-align: center;
}

.soc ul {
  margin-left: 24px;
  margin-top: 34px;
  padding-left: 0;
  display: inline-block;
}

.soc ul li {
  margin-bottom: 20px;
  margin-right: 23px;
  float: left;
  text-align: center;
  text-decoration: none;
  list-style: none;
}

.soc1 {
  width: 52px;
  height: 52px;
  border: 2px solid #CBD5E1;
  border-radius: 50px;
}

.soc1 a {
  display: inline-block;
  height: 17px;
  width: 17px;
  background: url(/images/social/socIcons2.png) no-repeat;
  margin-top: 15px;
  margin-left: 2px;
}

.copwri.des {
  display: block;
  margin-bottom: 30px;
  color: #6B7280;
  font-size: 11px;
}

.copwri.mob {
  display: none;
  margin-bottom: 30px;
  color: #6B7280;
  font-size: 11px;
}

/* cookie bar */
#wracoo {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.98), rgba(254, 242, 242, 0.98));
  border-radius: 20px;
  border: 1px solid rgba(209, 213, 219, 1);
  box-shadow: 0 0px 10px rgba(15, 23, 42, 0.18);
  color: #111827;
  font-size: 0.9rem;
  white-space: nowrap;
  z-index: 9999;
}

#coobuts {
  display: inline-flex;
}

#cooacc {
  background: linear-gradient(135deg, #EC4899, #A855F7);
  color: #fff;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
  white-space: nowrap;
}

#cooacc:hover {
  box-shadow: 0 6px 18px rgba(168, 85, 247, 0.4);
  transform: translateY(-1px);
}

/* =========================================
   SOCIAL (come da tuo CSS)
========================================= */
.ksocial-soft a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 6px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(209, 213, 219, 1);
  color: #111827;
  font-size: 20px;
  transition: .25s;
}

.ksocial-soft a:hover {
  background: #F3F4F6;
  border-color: rgba(148, 163, 253, 0.8);
  transform: translateY(-2px);
}

.social-bar-c {
  display: flex;
  justify-content: center;
  margin: 36px auto;
}

.social-orbit-c {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
}

.social-orbit-c a {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #0F172A;
  font-size: 1.5rem;
  background: #FFFFFF;
  border: 1px solid rgba(148, 163, 253, 0.75);
  box-shadow:
    0 0 0 1px rgba(226, 232, 240, 0.9),
    0 18px 45px rgba(148, 163, 184, 0.35);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, filter .22s ease;
}

.social-orbit-c a::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  background: conic-gradient(from 0deg,
      rgba(56, 189, 248, 0.0),
      rgba(56, 189, 248, 0.9),
      rgba(79, 70, 229, 0.95),
      rgba(236, 72, 153, 0.9),
      rgba(56, 189, 248, 0.0));
  animation: spinGlow 5s linear infinite;
  opacity: .7;
}

.social-orbit-c a::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 0%, rgba(191, 219, 254, 0.35), transparent 55%),
    radial-gradient(circle at 80% 120%, rgba(251, 207, 232, 0.25), transparent 65%),
    #FFFFFF;
}

.social-orbit-c a i {
  position: relative;
  z-index: 1;
}

.social-orbit-c a:hover {
  transform: translateY(-4px) scale(1.06);
  border-color: rgba(79, 70, 229, 1);
  box-shadow:
    0 0 30px rgba(191, 219, 254, 0.8),
    0 26px 80px rgba(148, 163, 184, 0.55);
  filter: brightness(1.05);
}

/* footer v3 */
.kiw-footer-v3 {
  padding: 34px 0 40px;
  background: linear-gradient(180deg, #F9FAFB 0%, #E5E7EB 100%);
  border-top: 1px solid rgba(209, 213, 219, 1);
}

.kf-v3-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
}

.kf-v3-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(209, 213, 219, 1);
}

.kf-v3-social {
  display: flex;
  gap: 14px;
}

.kf-v3-social a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F172A;
  font-size: 1.3rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  background: #FFFFFF;
  box-shadow:
    0 0 0 1px rgba(209, 213, 219, 1),
    0 18px 45px rgba(148, 163, 184, 0.35);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.kf-v3-social a::before {
  content: "";
  position: absolute;
  width: 160%;
  height: 160%;
  background: conic-gradient(from 0deg,
      rgba(96, 165, 250, 0),
      rgba(96, 165, 250, 1),
      rgba(129, 140, 248, 1),
      rgba(244, 114, 182, 1),
      rgba(96, 165, 250, 0));
  animation: spinGlow 6s linear infinite;
  opacity: .75;
}

.kf-v3-social a::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 30% 0%, rgba(219, 234, 254, 0.4), transparent 55%),
    radial-gradient(circle at 80% 130%, rgba(251, 207, 232, 0.35), transparent 70%),
    #FFFFFF;
}

.kf-v3-social a i {
  position: relative;
  z-index: 1;
}

.kf-v3-social a:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 26px 80px rgba(148, 163, 184, 0.75);
  filter: brightness(1.06);
}

.kf-v3-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  font-size: 10px;
  color: #6B7280;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kf-v3-bottom strong {
  color: #111827;
}

.kf-v3-pay {
  margin-top: 10px;
  text-align: right;
}

.kf-v3-pay .kf-paypal {
  max-height: 24px;
}

.kiw-footer .logfoo {
  content: url("/images/kiwuu-black.png");
  display: block;
  height: 34px;
}

/* =========================================
   MISC UI (come da tuo CSS)
========================================= */
.cen {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.fa-trash {
  color: rgb(2, 6, 23);
  font-size: 13px;
}

.profile {
  border: 1px solid rgba(148, 163, 253, 0.35);
  background: linear-gradient(120deg, #E5E7EB, #F9FAFB);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.6);
}

.profile .circle {
  background:
    radial-gradient(circle at 20% 0, rgba(191, 219, 254, 0.5), transparent 60%),
    radial-gradient(circle at 80% 130%, rgba(236, 72, 153, 0.15), transparent 70%),
    #F9FAFB;
  border: 1px solid rgba(148, 163, 253, 0.6);
  overflow: hidden;
  position: relative;
}

.profile #log-out {
  border: 1px solid rgba(148, 163, 253, 0.6);
  background: radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.15), transparent 55%), #FFFFFF;
  color: #111827;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
  transition: all 0.25s ease;
  cursor: pointer;
}

.profile #log-out:hover {
  background: radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.25), transparent 60%), #EEF2FF;
  border-color: rgba(79, 70, 229, 0.6);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.15);
  transform: translateY(-2px);
}

/* INPUT LIGHT STYLE */
input[type="text"],
input[type="password"],
textarea,
input[type="email"],
select {
  width: 100%;
  max-width: 400px;
  height: 42px;
  padding: 0 14px;
  font-size: 14.5px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Archivonarrow, sans-serif;
  background: rgba(255, 255, 255, 0.75);
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .15s ease;
  margin: 3px 0;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
input[type="email"]:focus,
select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.9);
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.25), 0 8px 18px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

input:not([type="submit"])::placeholder {
  color: rgba(15, 23, 42, 0.45);
}

input:disabled {
  opacity: .5;
  cursor: not-allowed;
}

input:not([type="submit"]):focus {
  outline: none;
  border-bottom-color: #6366f1;
  box-shadow: 0 1px 0 rgba(99, 102, 241, .8);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #000;
}

/* select arrow */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 10px 30px 10px 11px;
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2394A3FD' stroke-opacity='0.7' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}

/* =========================================
   DATAS TABLES (come da tuo CSS)
========================================= */
table.datas {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

table.datas thead tr {
  background: #000;
  color: #FFF;
}

table.datas th,
table.datas td {
  border: 1px solid #ddd;
}

table.datas tbody tr:nth-of-type(even) {
  background: #f3f3f3;
}

table.datas tbody tr:last-of-type {
  border-bottom: 2px solid #000;
}

table.datas tbody tr:hover {
  background: #f1f1f1;
}

table.datas td[contenteditable="true"] {
  background: #ffe4e1;
  border-color: #ff726f;
}

table.datas td[contenteditable="true"]:focus {
  outline: 2px solid #ff726f;
  background: #fff;
}

/* =========================================
   SERVICE (solo blocco che hai incollato)
========================================= */
.service {
  padding: 20px 20px 100px 20px;
}

.wrainp .service {
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: center;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-radius: 24px;
  border: 1px solid rgba(148, 163, 253, 0.35);
  box-shadow:
    0 18px 45px rgba(15, 23, 42, .12),
    inset 0 1px 0 rgba(255, 255, 255, .8);
  padding: 40px 48px;
  overflow: hidden;
}

.service .douimg video {
  display: block;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .18);
}

.service .dou {
  color: #020617;
  line-height: 1.7;
}

.service .title-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.service .dou>div {
  text-align: center;
  color: #111827;
}

.service .dou .sma {
  margin-top: 20px;
  font-size: .9rem;
  color: #4B5563;
  font-style: italic;
}

.service .flex {
  margin-top: 36px;
  display: inline-block;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.service .cta {
  border: none;
  border-radius: 999px;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(90deg, #2563EB, #A855F7);
  color: #fff;
  box-shadow: 0 12px 25px rgba(79, 70, 229, .35);
  transition: transform .15s ease-out, box-shadow .15s ease-out;
}

.service .cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(79, 70, 229, .45);
}

.service .cta:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(79, 70, 229, .3);
}

.service .price.rotate span:last-child {
  font-size: .95rem;
}

.service .price {
  z-index: -1;
}

.pacsel {
  background-color: white;
  color: #000;
}

.coddes {
  -webkit-text-fill-color: #000;
}

/* =========================================
   KEYFRAMES (TUTTI VICINI)
========================================= */
@keyframes introLogo {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(.96);
  }

  60% {
    opacity: 1;
    transform: translateY(0) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introSubtitle {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* unificato (prima ne avevi 2 diverse) */
@keyframes introFadeOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-8px) scale(1.02);
  }
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate3d(1, -1, 0, 0deg);
  }

  25% {
    transform: translateY(-6px) translateX(2px) rotate3d(1, -1, 0, 3deg);
  }

  50% {
    transform: translateY(-2px) translateX(-2px) rotate3d(1, -1, 0, -2deg);
  }

  75% {
    transform: translateY(-8px) translateX(1px) rotate3d(1, -1, 0, 4deg);
  }

  100% {
    transform: translateY(0) translateX(0) rotate3d(1, -1, 0, 0deg);
  }
}

@keyframes rotate {

  0%,
  20% {
    transform: translateY(0);
  }

  25%,
  45% {
    transform: translateY(calc(-1 * var(--item-h)));
  }

  50%,
  70% {
    transform: translateY(calc(-2 * var(--item-h)));
  }

  75%,
  95% {
    transform: translateY(calc(-3 * var(--item-h)));
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes kiwuuMove1 {
  0% {
    transform: translateX(0) rotate(6deg);
  }

  100% {
    transform: translateX(80px) rotate(-12deg);
  }
}

@keyframes kiwuuMove2 {
  0% {
    transform: translateX(-40px) rotate(-4deg);
  }

  100% {
    transform: translateX(120px) rotate(10deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kiwuuShine {

  0%,
  70% {
    left: -120%;
    opacity: 0;
  }

  74% {
    opacity: 1;
  }

  82% {
    left: 120%;
    opacity: 1;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}

@keyframes spinGlow {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================
   MEDIA QUERIES (ORDINE: PIÙ GRANDE -> PIÙ PICCOLO)
========================================= */

/* >= 821px */
@media (min-width: 821px) {
  .menu-toggle {
    display: none;
  }

  .menu-overlay {
    display: none;
  }
}

/* <= 960px */
@media (max-width: 960px) {

  .hero,
  .floating-section,
  .contact-inner {
    padding: 32px 22px 28px;
    border-radius: 26px;
  }

  .hero.flip .video-wrapper {
    border-radius: 26px 26px 0 0;
  }

  .hero-title-main {
    font-size: clamp(2.1rem, 5vw, 3rem);
  }
}

/* <= 900px */
@media (max-width: 900px) {
  .wrainp .service {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    margin-top: 40px;
  }

  .service .title-wrap h1 {
    font-size: 1.7rem;
  }

  .kf-v3-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .kf-v3-social {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .kf-v3-bottom {
    flex-direction: column;
    margin-top: 14px;
    text-align: center;
  }

  .kf-v3-pay {
    text-align: center;
    margin-top: 12px;
  }
}

/* <= 820px */
@media (max-width: 820px) {
  .menu-overlay {
    flex-direction: column;
  }

  .overlay-left {
    border-right: none;
    border-bottom: 1px solid rgba(209, 213, 219, 1);
    padding-bottom: 16px;
  }

  .overlay-right {
    align-items: center;
  }

  .menu-links {
    max-width: 260px;
  }

  .menu-overlay .menico {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    margin-top: 40px;
    position: relative;
  }

  header .menu,
  header .menico {
    display: none;
  }

  .menu-toggle {
    display: flex;
    z-index: 9999;
  }

  .hero-label {
    font-size: 9px;
  }

  .menu-links a {
    font-size: 16px;
  }

  .hero-subtitle-main {
    font-size: 0.7em;
  }

  header .loghea {
    display: none;
  }

  header .glass-overlay {
    border-radius: unset;
    box-shadow: unset;
    inset: unset;
    backdrop-filter: unset;
    -webkit-backdrop-filter: unset;
    /* FIX typo */
    position: unset;
  }

  .wrainp,
  .wrainpreg,
  .sec-res {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

/* <= 768px */
@media (max-width: 768px) {
  .section-screen-top {
    display: block;
    margin: 0 4px;
    padding: 40px 0 60px;
  }

  .hero {
    padding: 34px 18px 30px;
  }

  .section-screen {
    min-height: auto;
    padding: 34px 0 40px;
  }

  /* mantiene 1 schermata esatta anche mobile */
  #hero.section-screen {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-rotate {
    padding: 34px 18px 28px;
    --item-h: 42px;
  }

  .hero-rotate h1 {
    font-size: 28px;
  }

  .contact-inner {
    padding: 26px 18px 24px;
  }

  .form-row {
    flex-direction: column;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .feature-table {
    min-width: 0;
    font-size: 10px;
    width: 100%;
    border-radius: 10px;
    box-shadow: none;
  }

  .feature-table th,
  .feature-table td {
    padding: 0.6rem 0rem;
  }

  .feature-table i.fa-circle {
    margin-right: 0;
  }

  .owl-carousel {
    gap: 12px;
  }

  .hero-label {
    font-size: 8px;
  }

  .kiwuu-laser,
  .kiwuu-laser-2 {
    display: none;
  }

  /* datas table mobile label */
  table.datas td {
    border-bottom: 1px solid #ddd;
  }

  table.datas td::before {
    color: #000;
  }
}

/* <= 700px */
@media (max-width: 700px) {
  .hero.flip .video-wrapper {
    height: auto;
    padding-top: 56.25%;
    /* 16:9 */
  }
}

/* <= 600px */
@media (max-width: 600px) {
  #wracoo {
    transform: translateX(-50%) scale(.9);
  }
}