/* ============================================
   SOUL STUDIO · LANDING SITI WEB
   Vibe: neon-tech (rosso brand + cyan + verde matrix)
   Prefisso: sw-
   ============================================ */

/* ============================================
   VARIABILI E SETUP
============================================ */
:root {
  --sw-bg: #0a0a0a;
  --sw-red-1: #8b1a22;
  --sw-red-2: #c0313c;
  --sw-red-3: #d44a55;
  --sw-cyan: #00f0ff;
  --sw-green: #39ff14;
  --sw-text: #f2f0ed;
  --sw-text-muted: rgba(242, 240, 237, 0.65);
  --sw-text-faint: rgba(242, 240, 237, 0.4);
}

body.page-template-page-siti-web {
  background: var(--sw-bg);
  color: var(--sw-text);
  position: relative;
  overflow-x: hidden;
}

/* ============================================
   GRID BLUEPRINT BACKGROUND globale
============================================ */
body.page-template-page-siti-web::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   EMOJI VOLANTI globali
============================================ */
.sw-flying-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
  height: 100%;
}

.sw-fly {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.4;
  will-change: transform;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(192, 49, 60, 0.3));
}

.sw-fly--a { animation: swFlyA 12s ease-in-out infinite; }
.sw-fly--b { animation: swFlyB 15s ease-in-out infinite; }
.sw-fly--c { animation: swFlyC 10s ease-in-out infinite; }
.sw-fly--d { animation: swFlyD 18s ease-in-out infinite; }

@keyframes swFlyA {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(15px, -25px) rotate(12deg); }
}
@keyframes swFlyB {
  0%, 100% { transform: translate(0, 0) rotate(5deg); }
  33% { transform: translate(-20px, -15px) rotate(-15deg); }
  66% { transform: translate(20px, -30px) rotate(15deg); }
}
@keyframes swFlyC {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  50% { transform: translate(20px, 20px) rotate(20deg); }
}
@keyframes swFlyD {
  0%, 100% { transform: translate(0, 0) rotate(8deg); }
  25% { transform: translate(-10px, 15px) rotate(-10deg); }
  75% { transform: translate(15px, -20px) rotate(15deg); }
}

/* ============================================
   ELEMENTI COMUNI (tag, h2, cta, gradient)
============================================ */
.sw-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sw-cyan);
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.15);
}
.sw-tag--red {
  color: var(--sw-red-2);
  background: rgba(192, 49, 60, 0.12);
  border-color: rgba(192, 49, 60, 0.4);
  box-shadow: 0 0 16px rgba(192, 49, 60, 0.2);
}

.sw-h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: lowercase;
  color: #fff;
  margin: 0 0 20px;
}

.sw-grad-red {
  background: linear-gradient(135deg, var(--sw-red-1), var(--sw-red-2), var(--sw-red-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.sw-green { color: var(--sw-green); }

.sw-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--sw-red-1), var(--sw-red-2));
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  box-shadow: 0 0 30px rgba(192, 49, 60, 0.5);
  position: relative;
  overflow: hidden;
}
.sw-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(192, 49, 60, 0.7);
}
.sw-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: swShine 3s infinite;
}
@keyframes swShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* ============================================
   01 · HERO
============================================ */
.sw-hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  z-index: 2;
}

.sw-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.sw-hero__glow {
  position: absolute;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}
.sw-hero__glow--red {
  width: 60%;
  height: 70%;
  top: 30%;
  left: 20%;
  background: radial-gradient(ellipse, rgba(192, 49, 60, 0.32), transparent 70%);
  animation: swGlowPulse 8s ease-in-out infinite;
}
.sw-hero__glow--cyan {
  width: 30%;
  height: 40%;
  top: 20%;
  right: 10%;
  background: radial-gradient(ellipse, rgba(0, 240, 255, 0.18), transparent 70%);
}
@keyframes swGlowPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

.sw-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.sw-hero__title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: #fff;
  margin: 12px 0 24px;
}
.sw-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--sw-red-1), var(--sw-red-2), var(--sw-red-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sw-cursor {
  display: inline-block;
  width: 6px;
  height: 0.85em;
  background: var(--sw-cyan);
  vertical-align: -4px;
  margin-left: 6px;
  animation: swBlink 1s steps(2) infinite;
  box-shadow: 0 0 12px var(--sw-cyan);
}
@keyframes swBlink {
  50% { opacity: 0; }
}

.sw-terminal {
  background: #0d0d0d;
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 26px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 12px;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
  max-width: 500px;
}
.sw-terminal__bar {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}
.sw-terminal__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.sw-terminal__bar span:nth-child(1) { background: #ff5f56; }
.sw-terminal__bar span:nth-child(2) { background: #ffbd2e; }
.sw-terminal__bar span:nth-child(3) { background: #27c93f; }

.sw-terminal__line {
  color: #888;
  line-height: 1.7;
}
.sw-term-prompt { color: var(--sw-green); }
.sw-term-out { color: var(--sw-cyan); }
.sw-term-em { color: var(--sw-red-3); }

.sw-hero__right {
  position: relative;
}

.sw-cluster {
  position: relative;
  width: 100%;
  height: 360px;
}

.sw-mini {
  position: absolute;
  width: 220px;
  height: 160px;
  border-radius: 10px;
  background: #1a1a1a;
  border: 1px solid rgba(0, 240, 255, 0.2);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 240, 255, 0.08);
  transition: transform 0.4s, box-shadow 0.4s;
}
.sw-mini:hover {
  transform: rotate(0deg) scale(1.06) !important;
  z-index: 5;
  box-shadow: 0 0 50px rgba(192, 49, 60, 0.6);
}

.sw-mini--1 { top: 0; left: 0; transform: rotate(-7deg); animation: swFlyA 8s ease-in-out infinite; }
.sw-mini--2 { top: 30px; left: 130px; transform: rotate(4deg); z-index: 2; animation: swFlyB 10s ease-in-out infinite; }
.sw-mini--3 { top: 150px; left: 30px; transform: rotate(-3deg); animation: swFlyC 9s ease-in-out infinite; }
.sw-mini--4 { top: 180px; left: 160px; transform: rotate(6deg); z-index: 3; animation: swFlyD 11s ease-in-out infinite; }

.sw-mini__bar {
  height: 18px;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 5px;
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}
.sw-mini__bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.sw-mini__bar span:nth-child(1) { background: #ff5f56; }
.sw-mini__bar span:nth-child(2) { background: #ffbd2e; }
.sw-mini__bar span:nth-child(3) { background: #27c93f; }

.sw-mini__content {
  padding: 10px;
  height: calc(100% - 18px);
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-sizing: border-box;
}
.sw-mini--1 .sw-mini__content { background: linear-gradient(180deg, #2a1f1f, #3a2828); }
.sw-mini--2 .sw-mini__content { background: linear-gradient(180deg, #1a2030, #00251f); }
.sw-mini--3 .sw-mini__content { background: linear-gradient(180deg, #2a1818, #401818); }
.sw-mini--4 .sw-mini__content { background: linear-gradient(180deg, #2a2a1a, #3a3a20); }

.sw-mini__h {
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1px;
  width: 60%;
}
.sw-mini__l {
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
}
.sw-mini__l--s { width: 50%; }
.sw-mini__img {
  flex: 1;
  background: rgba(0, 240, 255, 0.06);
  border-radius: 3px;
  margin-top: 4px;
}

/* ============================================
   02 · PAIN
============================================ */
.sw-pain {
  position: relative;
  padding: 80px 0;
  z-index: 2;
}

.sw-pain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
  max-width: 1000px;
}

.sw-pain__item {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.sw-pain__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--sw-red-2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.sw-pain__item:hover::before { opacity: 1; }
.sw-pain__item:hover {
  border-color: rgba(192, 49, 60, 0.5);
  background: rgba(192, 49, 60, 0.05);
  transform: translateX(4px);
}

.sw-pain__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(192, 49, 60, 0.15);
  border: 1px solid rgba(192, 49, 60, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.sw-pain__bad {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.sw-pain__fix {
  font-size: 12px;
  color: var(--sw-green);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}

/* ============================================
   03 · RUOTA SERVIZI
============================================ */
.sw-wheel-sec {
  position: relative;
  padding: 80px 0;
  z-index: 2;
}

.sw-wheel__wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  margin-top: 30px;
}

.sw-wheel__h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 14px;
  color: #fff;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}
.sw-wheel__h3 em {
  font-style: normal;
  color: var(--sw-red-3);
}

.sw-wheel__p {
  font-size: 14px;
  color: var(--sw-text-muted);
  line-height: 1.6;
  margin: 0 0 18px;
  max-width: 440px;
}

.sw-wheel__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 440px;
}
.sw-wheel__list li {
  font-size: 13px;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sw-wheel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sw-green);
  box-shadow: 0 0 8px var(--sw-green);
  flex-shrink: 0;
}

.sw-wheel {
  position: relative;
  width: 360px;
  height: 360px;
  margin: 0 auto;
}

.sw-wheel__pulse {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.2);
  animation: swWheelPulse 3s ease-in-out infinite;
}
@keyframes swWheelPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.1); opacity: 0.1; }
}

.sw-wheel__disk {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(192, 49, 60, 0.18),
    rgba(0, 240, 255, 0.18),
    rgba(57, 255, 20, 0.18),
    rgba(192, 49, 60, 0.18),
    rgba(0, 240, 255, 0.18),
    rgba(57, 255, 20, 0.18),
    rgba(192, 49, 60, 0.18)
  );
  animation: swWheelSpin 25s linear infinite;
}
.sw-wheel__disk::after {
  content: '';
  position: absolute;
  inset: 38px;
  border-radius: 50%;
  background: var(--sw-bg);
}
@keyframes swWheelSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.sw-wheel__emoji {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 2px solid rgba(0, 240, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.25);
  top: 50%;
  left: 50%;
  z-index: 3;
}
.sw-wheel__emoji--e1 { transform: translate(-50%, -50%) rotate(0deg) translate(0, -140px) rotate(0deg); border-color: var(--sw-red-2); box-shadow: 0 0 24px rgba(192, 49, 60, 0.5); }
.sw-wheel__emoji--e2 { transform: translate(-50%, -50%) rotate(60deg) translate(0, -140px) rotate(-60deg); border-color: var(--sw-cyan); }
.sw-wheel__emoji--e3 { transform: translate(-50%, -50%) rotate(120deg) translate(0, -140px) rotate(-120deg); border-color: var(--sw-green); box-shadow: 0 0 24px rgba(57, 255, 20, 0.4); }
.sw-wheel__emoji--e4 { transform: translate(-50%, -50%) rotate(180deg) translate(0, -140px) rotate(-180deg); border-color: var(--sw-red-2); }
.sw-wheel__emoji--e5 { transform: translate(-50%, -50%) rotate(240deg) translate(0, -140px) rotate(-240deg); border-color: var(--sw-cyan); }
.sw-wheel__emoji--e6 { transform: translate(-50%, -50%) rotate(300deg) translate(0, -140px) rotate(-300deg); border-color: var(--sw-green); }

.sw-wheel__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sw-red-1), var(--sw-red-2), var(--sw-red-3));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 60px rgba(192, 49, 60, 0.7);
  z-index: 5;
  font-weight: 900;
}
.sw-wheel__center-t {
  font-size: 16px;
  line-height: 1;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}
.sw-wheel__center-s {
  font-size: 10px;
  opacity: 0.85;
  margin-top: 5px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================
   04 · CASE STUDY (LAPTOP)
============================================ */
.sw-cases {
  position: relative;
  padding: 80px 0;
  z-index: 2;
}

.sw-cases__sub {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sw-text-faint);
  margin: 0 0 24px;
}

.sw-cases__row {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.sw-cases__track {
  display: flex;
  gap: 24px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  padding: 12px 0 24px;
  width: max-content;
}
.sw-cases__track.is-dragging {
  cursor: grabbing;
}

.sw-laptop {
  flex: 0 0 380px;
}

.sw-laptop__screen {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #1a1a1a;
  border-radius: 12px 12px 4px 4px;
  border: 8px solid #2a2a2a;
  border-bottom: 14px solid #2a2a2a;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 240, 255, 0.08);
}
.sw-laptop__screen::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 5;
}
.sw-laptop__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.sw-laptop__base {
  width: 110%;
  height: 8px;
  background: linear-gradient(180deg, #444, #222);
  margin: 0 -5%;
  border-radius: 0 0 12px 12px;
}

.sw-laptop__info {
  padding: 16px 6px 0;
}

.sw-laptop__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border-radius: 4px;
  background: rgba(57, 255, 20, 0.12);
  border: 1px solid rgba(57, 255, 20, 0.4);
  font-size: 10px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  color: var(--sw-green);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.sw-laptop__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sw-green);
  box-shadow: 0 0 8px var(--sw-green);
  animation: swBlink 2s infinite;
}

.sw-laptop__name {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  margin: 0 0 4px;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

.sw-laptop__cat {
  font-size: 11px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  color: #888;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.sw-laptop__mets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.sw-laptop__met {
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(192, 49, 60, 0.12);
  border: 1px solid rgba(192, 49, 60, 0.3);
  color: var(--sw-red-3);
  font-weight: 700;
  font-size: 11px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.sw-laptop__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--sw-cyan);
  text-decoration: none;
  font-weight: 700;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  text-transform: lowercase;
  transition: color 0.2s;
}
.sw-laptop__link:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--sw-cyan);
}

/* ============================================
   05 · PRICING
============================================ */
.sw-pricing {
  position: relative;
  padding: 80px 0;
  z-index: 2;
}

.sw-pricing__sub {
  font-size: 14px;
  color: var(--sw-text-muted);
  margin: 0 0 30px;
  max-width: 540px;
}

.sw-pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  max-width: 1100px;
}

.sw-price-card {
  padding: 30px 20px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: all 0.3s;
}
.sw-price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.3);
}

.sw-price-card--featured {
  border: 2px solid var(--sw-red-2);
  background: rgba(192, 49, 60, 0.04);
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(192, 49, 60, 0.2);
}
.sw-price-card--featured:hover {
  transform: translateY(-18px);
}

.sw-price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--sw-red-1), var(--sw-red-2));
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 0 16px rgba(192, 49, 60, 0.5);
  white-space: nowrap;
}

.sw-price-card__emoji {
  font-size: 38px;
  margin-bottom: 10px;
  display: block;
}

.sw-price-card__tier {
  font-size: 11px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sw-cyan);
  margin-bottom: 6px;
}

.sw-price-card__name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 14px;
  text-transform: lowercase;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.sw-price-card__range {
  font-size: 28px;
  font-weight: 900;
  color: var(--sw-red-3);
  margin-bottom: 18px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  line-height: 1.1;
}
.sw-price-card__from {
  font-size: 11px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  display: block;
  margin-bottom: 4px;
  color: var(--sw-text-faint);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.sw-price-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 12px;
}
.sw-price-card__features li {
  padding: 7px 0;
  color: var(--sw-text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.sw-price-card__features li:last-child {
  border: none;
}

.sw-price-card__cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 100px;
  background: rgba(192, 49, 60, 0.15);
  color: var(--sw-red-3);
  font-weight: 800;
  font-size: 12px;
  text-transform: lowercase;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(192, 49, 60, 0.3);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.sw-price-card__cta:hover {
  background: rgba(192, 49, 60, 0.3);
}
.sw-price-card--featured .sw-price-card__cta {
  background: linear-gradient(135deg, var(--sw-red-1), var(--sw-red-2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(192, 49, 60, 0.4);
}

/* ============================================
   06 · FAQ
============================================ */
.sw-faq {
  position: relative;
  padding: 80px 0;
  z-index: 2;
}

.sw-faq__list {
  margin-top: 24px;
  max-width: 800px;
}

.sw-faq__item {
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.sw-faq__q {
  width: 100%;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s;
  background: transparent;
  border: none;
  color: inherit;
  text-align: left;
  font-family: 'Inter', system-ui, sans-serif;
}
.sw-faq__q:hover {
  color: var(--sw-cyan);
}

.sw-faq__q-txt {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: lowercase;
}
.sw-faq__q-num {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  color: var(--sw-cyan);
  padding: 4px 8px;
  border: 1px solid rgba(0, 240, 255, 0.4);
  border-radius: 4px;
  flex-shrink: 0;
}

.sw-faq__q-icon {
  font-size: 22px;
  color: var(--sw-red-2);
  transition: transform 0.3s;
  font-weight: 300;
}
.sw-faq__item.is-open .sw-faq__q-icon {
  transform: rotate(45deg);
}

.sw-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 14px;
  color: var(--sw-text-muted);
  line-height: 1.6;
  padding: 0 0 0 44px;
}
.sw-faq__item.is-open .sw-faq__a {
  max-height: 300px;
  padding: 0 0 20px 44px;
}

/* ============================================
   07 · CTA / LEAD FORM
============================================ */
.sw-cta-sec {
  position: relative;
  padding: 80px 0 120px;
  z-index: 2;
  overflow: hidden;
}

.sw-cta-sec__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(192, 49, 60, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 240, 255, 0.1), transparent 50%);
  pointer-events: none;
  filter: blur(60px);
}

.sw-cta-sec__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  margin-top: 30px;
  max-width: 1100px;
}

.sw-form {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.05);
  position: relative;
  z-index: 2;
}
.sw-form input,
.sw-form select,
.sw-form textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.15);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.2s;
}
.sw-form input::placeholder,
.sw-form textarea::placeholder {
  color: var(--sw-text-faint);
}
.sw-form select {
  color: var(--sw-text-faint);
}
.sw-form select option {
  background: #0d0d0d;
  color: #fff;
}
.sw-form input:focus,
.sw-form select:focus,
.sw-form textarea:focus {
  outline: none;
  border-color: var(--sw-cyan);
  background: rgba(0, 240, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
  color: #fff;
}
.sw-form textarea {
  resize: vertical;
  min-height: 80px;
  font-family: 'Inter', system-ui, sans-serif;
}

.sw-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sw-form__cta {
  padding: 15px;
  border-radius: 100px;
  border: none;
  background: linear-gradient(135deg, var(--sw-red-1), var(--sw-red-2));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(192, 49, 60, 0.4);
  position: relative;
  overflow: hidden;
  margin-top: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.sw-form__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(192, 49, 60, 0.6);
}
.sw-form__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: swShine 3s infinite;
}

.sw-form__aside {
  padding: 24px;
  border-radius: 16px;
  background: rgba(57, 255, 20, 0.04);
  border: 1px solid rgba(57, 255, 20, 0.25);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.08);
  position: relative;
  z-index: 2;
}
.sw-form__aside h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 10px;
  text-transform: lowercase;
}
.sw-form__aside p {
  font-size: 13px;
  color: var(--sw-text-muted);
  line-height: 1.5;
  margin: 0 0 14px;
}

.sw-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 100px;
  background: #25D366;
  color: #062b13;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
}
.sw-wa-btn:hover {
  transform: translateY(-2px);
}

.sw-form__aside-foot {
  margin-top: 16px !important;
  border-top: 1px solid rgba(57, 255, 20, 0.15);
  padding-top: 14px;
  font-size: 12px !important;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 960px) {
  .sw-hero { padding: 80px 0 60px; }
  .sw-hero__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .sw-cluster { height: 320px; }
  .sw-mini { width: 180px; height: 130px; }
  .sw-mini--2 { left: 110px; }
  .sw-mini--4 { left: 130px; }

  .sw-pain__grid { grid-template-columns: 1fr; }

  .sw-wheel__wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sw-wheel { width: 280px; height: 280px; }
  .sw-wheel__emoji {
    width: 56px; height: 56px; font-size: 26px;
  }
  .sw-wheel__emoji--e1 { transform: translate(-50%, -50%) rotate(0deg) translate(0, -110px) rotate(0deg); }
  .sw-wheel__emoji--e2 { transform: translate(-50%, -50%) rotate(60deg) translate(0, -110px) rotate(-60deg); }
  .sw-wheel__emoji--e3 { transform: translate(-50%, -50%) rotate(120deg) translate(0, -110px) rotate(-120deg); }
  .sw-wheel__emoji--e4 { transform: translate(-50%, -50%) rotate(180deg) translate(0, -110px) rotate(-180deg); }
  .sw-wheel__emoji--e5 { transform: translate(-50%, -50%) rotate(240deg) translate(0, -110px) rotate(-240deg); }
  .sw-wheel__emoji--e6 { transform: translate(-50%, -50%) rotate(300deg) translate(0, -110px) rotate(-300deg); }
  .sw-wheel__center { width: 110px; height: 110px; }

  .sw-laptop { flex: 0 0 320px; }

  .sw-pricing__grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .sw-price-card--featured { transform: none; }
  .sw-price-card--featured:hover { transform: translateY(-6px); }

  .sw-cta-sec__grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .sw-hero__title { font-size: 36px; }
  .sw-h2 { font-size: 32px; }
  .sw-mini { width: 140px; height: 100px; }
  .sw-mini--2 { left: 90px; }
  .sw-mini--3 { top: 110px; }
  .sw-mini--4 { left: 100px; top: 130px; }
  .sw-laptop { flex: 0 0 280px; }
  .sw-form__row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .sw-fly,
  .sw-mini,
  .sw-wheel__disk,
  .sw-wheel__pulse,
  .sw-cursor,
  .sw-cta::after,
  .sw-form__cta::after,
  .sw-laptop__live-dot,
  .sw-hero__glow--red {
    animation: none !important;
  }
}

/* ============================================
   FIX · EMOJI VOLANTI più grandi e visibili
============================================ */
.sw-fly {
  opacity: 0.65 !important;
  filter: drop-shadow(0 6px 20px rgba(192, 49, 60, 0.5));
}

/* ============================================
   FIX · MINI-BROWSER CONTENT (hero)
   E-commerce / Landing / Aziendale / Form
============================================ */

/* URL nella barra del mini browser */
.sw-mini__bar {
  position: relative;
  padding-right: 8px;
}
.sw-mini__url {
  flex: 1;
  margin-left: 8px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* === MINI 1 · E-COMMERCE === */
.sw-mini__content--ecom {
  background: linear-gradient(180deg, #1a0e0e, #2a1414) !important;
  padding: 8px !important;
  gap: 6px !important;
}
.sw-mini-ecom {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 6px;
}
.sw-mini-ecom__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  flex: 1;
}
.sw-mini-ecom__prod {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid rgba(192, 49, 60, 0.2);
}
.sw-mini-ecom__img {
  font-size: 20px;
  line-height: 1;
}
.sw-mini-ecom__price {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 8px;
  color: var(--sw-red-3);
  font-weight: 800;
}
.sw-mini-ecom__cart {
  background: linear-gradient(135deg, var(--sw-red-1), var(--sw-red-2));
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
}

/* === MINI 2 · LANDING PAGE === */
.sw-mini__content--landing {
  background: linear-gradient(180deg, #0d1d2a, #001a30) !important;
  padding: 10px !important;
  gap: 4px !important;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.sw-mini-land {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}
.sw-mini-land__h {
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}
.sw-mini-land__h span {
  color: var(--sw-cyan);
  text-shadow: 0 0 6px rgba(0, 240, 255, 0.5);
}
.sw-mini-land__cta {
  background: var(--sw-cyan);
  color: #000;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}
.sw-mini-land__stars {
  font-size: 9px;
  letter-spacing: 1px;
}
.sw-mini-land__sub {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 7px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
}

/* === MINI 3 · SITO AZIENDALE === */
.sw-mini__content--corp {
  background: linear-gradient(180deg, #1a0808, #2a0c0c) !important;
  padding: 0 !important;
  gap: 0 !important;
}
.sw-mini-corp {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sw-mini-corp__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.sw-mini-corp__logo {
  font-size: 8px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
}
.sw-mini-corp__menu {
  display: flex;
  gap: 4px;
}
.sw-mini-corp__menu span {
  width: 12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 1px;
}
.sw-mini-corp__hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8px;
  gap: 4px;
}
.sw-mini-corp__title {
  height: 5px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1px;
  width: 70%;
}
.sw-mini-corp__title--s {
  width: 50%;
  background: var(--sw-red-3);
  height: 3px;
}
.sw-mini-corp__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  padding: 4px 6px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(192, 49, 60, 0.3);
}
.sw-mini-corp__stats > div {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.sw-mini-corp__stats b {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 9px;
  color: var(--sw-red-3);
  font-weight: 800;
  line-height: 1;
}
.sw-mini-corp__stats span {
  font-size: 6px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  margin-top: 1px;
}

/* === MINI 4 · FORM CONTATTI === */
.sw-mini__content--form {
  background: linear-gradient(180deg, #0a1a0a, #0a200a) !important;
  padding: 8px !important;
  gap: 4px !important;
}
.sw-mini-form {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 4px;
}
.sw-mini-form__title {
  font-size: 9px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2px;
}
.sw-mini-form__field {
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 3px;
  font-size: 7px;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  height: 14px;
  display: flex;
  align-items: center;
}
.sw-mini-form__field--big {
  flex: 1;
  height: auto;
  min-height: 20px;
}
.sw-mini-form__btn {
  background: var(--sw-green);
  color: #062b13;
  padding: 5px;
  border-radius: 3px;
  font-size: 8px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.05em;
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
  margin-top: auto;
}

/* ============================================
   FIX · ALLINEAMENTO CENTRALE
============================================ */

/* TUTTE le sezioni centrate */
.sw-hero .container-soul,
.sw-pain .container-soul,
.sw-wheel-sec .container-soul,
.sw-cases .container-soul,
.sw-pricing .container-soul,
.sw-faq .container-soul,
.sw-cta-sec .container-soul {
  text-align: center;
}

/* Titoli h2 e tag già centrati di base, ma forziamo */
.sw-h2,
.sw-tag,
.sw-pricing__sub,
.sw-cases__sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* HERO · griglia centrata e copy verticale centrato */
.sw-hero__grid {
  text-align: center;
}
.sw-hero__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sw-hero__title {
  text-align: center;
}
.sw-terminal {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

/* PAIN · grid centrata + items dentro a sinistra */
.sw-pain__grid {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* RUOTA · info centrata */
.sw-wheel__wrap {
  text-align: center;
}
.sw-wheel__info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sw-wheel__h3,
.sw-wheel__p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.sw-wheel__list {
  margin-left: auto;
  margin-right: auto;
}

/* CASE STUDY · header centrato, carosello a sinistra (scrollabile) */
.sw-cases__row {
  text-align: left;
}
.sw-laptop__info {
  text-align: center;
}
.sw-laptop__mets {
  justify-content: center;
}

/* PRICING · grid centrata + card centrate */
.sw-pricing__grid {
  margin-left: auto;
  margin-right: auto;
}
.sw-price-card {
  text-align: center;
}
.sw-price-card__features {
  text-align: left;
  display: inline-block;
}

/* FAQ · header centrato, domande a sinistra dentro */
.sw-faq__list {
  margin-left: auto;
  margin-right: auto;
}
.sw-faq__item {
  text-align: left;
}

/* CTA FORM · centrato */
.sw-cta-sec__grid {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* CTA pulsante centrato come blocco */
.sw-cta {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FIX · sezioni vicine + blueprint continuo + emoji
============================================ */

.sw-hero { padding: 80px 0 50px !important; }
.sw-pain,
.sw-wheel-sec,
.sw-cases,
.sw-pricing,
.sw-faq { padding: 50px 0 !important; }
.sw-cta-sec { padding: 50px 0 80px !important; }

body.page-template-page-siti-web::before {
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.06) 1px, transparent 1px) !important;
  background-size: 60px 60px !important;
  opacity: 1 !important;
}

.sw-hero__grid-bg { display: none !important; }

.sw-h2 { margin-bottom: 16px !important; }

/* Emoji dentro i titoli gradient devono restare visibili */
.sw-grad-red .sw-emoji {
  -webkit-text-fill-color: initial !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}

/* Emoji dei titoli ben visibili con glow */
.sw-emoji {
  display: inline-block;
  font-size: 0.75em;
  margin-left: 8px;
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.4));
  transform: rotate(-8deg);
  vertical-align: middle;
}

/* ============================================
   FORM TICKET · biglietto cinematografico
============================================ */

.sw-ticket {
  background: linear-gradient(135deg, #1a0a0a, #2a0d0f);
  border-radius: 16px;
  padding: 28px 32px;
  position: relative;
  border: 2px dashed rgba(192, 49, 60, 0.5);
  box-shadow:
    0 0 60px rgba(192, 49, 60, 0.15),
    inset 0 0 0 1px rgba(0, 0, 0, 0.3);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sw-ticket::before,
.sw-ticket::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sw-bg, #0a0a0a);
  top: 50%;
  transform: translateY(-50%);
  border: 2px dashed rgba(192, 49, 60, 0.5);
  z-index: 3;
}
.sw-ticket::before { left: -14px; }
.sw-ticket::after { right: -14px; }

.sw-ticket__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(192, 49, 60, 0.35);
  gap: 12px;
}

.sw-ticket__head-l {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sw-ticket__head-meta {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sw-text-faint, rgba(242, 240, 237, 0.4));
}

.sw-ticket__head-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  line-height: 1;
}

.sw-ticket__stamp {
  padding: 6px 12px;
  border: 2.5px solid var(--sw-red-2, #c0313c);
  border-radius: 4px;
  transform: rotate(-7deg);
  color: var(--sw-red-2, #c0313c);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  background: rgba(192, 49, 60, 0.04);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(192, 49, 60, 0.2);
}

.sw-ticket__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sw-ticket__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sw-ticket__lbl {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sw-cyan, #00f0ff);
  font-weight: 700;
}

.sw-ticket input[type="text"],
.sw-ticket input[type="email"],
.sw-ticket input[type="tel"],
.sw-ticket textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.2s;
}

.sw-ticket input::placeholder,
.sw-ticket textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.sw-ticket input:focus,
.sw-ticket textarea:focus {
  outline: none;
  border-color: var(--sw-cyan, #00f0ff);
  background: rgba(0, 240, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.12);
}

.sw-ticket textarea {
  resize: vertical;
  min-height: 70px;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.5;
}

.sw-ticket__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.sw-ticket__pill {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Inter', system-ui, sans-serif;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.sw-ticket__pill:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(192, 49, 60, 0.3);
  color: #fff;
}

.sw-ticket__pill.is-active {
  background: linear-gradient(135deg, var(--sw-red-1, #8b1a22), var(--sw-red-2, #c0313c));
  color: #fff;
  border-color: var(--sw-red-2, #c0313c);
  box-shadow: 0 0 16px rgba(192, 49, 60, 0.4);
}

.sw-ticket__cta {
  width: 100%;
  padding: 15px;
  border-radius: 100px;
  border: none;
  background: linear-gradient(135deg, var(--sw-red-1, #8b1a22), var(--sw-red-2, #c0313c));
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(192, 49, 60, 0.4);
  position: relative;
  overflow: hidden;
  margin-top: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: lowercase;
  letter-spacing: 0.01em;
  font-family: 'Inter', system-ui, sans-serif;
}

.sw-ticket__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(192, 49, 60, 0.6);
}

.sw-ticket__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: swShine 3s infinite;
}

.sw-ticket__cta-emoji {
  font-size: 18px;
  filter: drop-shadow(0 0 6px rgba(245, 197, 24, 0.5));
}

.sw-ticket__foot {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--sw-text-faint, rgba(242, 240, 237, 0.4));
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

@media (max-width: 540px) {
  .sw-ticket { padding: 22px 20px; }
  .sw-ticket__row { grid-template-columns: 1fr; }
  .sw-ticket__head { flex-direction: column; gap: 10px; }
  .sw-ticket__stamp { align-self: flex-start; }
  .sw-ticket::before, .sw-ticket::after { display: none; }
  .sw-ticket__pills { gap: 5px; }
  .sw-ticket__pill { font-size: 11px; padding: 7px 11px; }
}

/* === sw-pain desc (FIX X — opzione D + pallino green tech) === */
.sw-pain__desc{
  font-family:'Inter',sans-serif;
  font-weight:400;
  font-size:13.5px;
  line-height:1.55;
  color:rgba(255,255,255,0.68);
  margin-top:14px;
  max-width:300px;
  display:flex;
  align-items:flex-start;
  gap:8px;
}
.sw-pain__dot{
  color:var(--sw-green);
  font-size:11px;
  line-height:1.55;
  flex-shrink:0;
  margin-top:1px;
}


/* SW MOBILE FIX — mini-browser centrate, card prezzo compatte, sezioni piu' strette */
@media (max-width: 960px){
  .sw-pain, .sw-wheel-sec, .sw-cases, .sw-pricing{ padding: 32px 0 !important; }
}
@media (max-width: 540px){
  .sw-hero__right{ overflow: visible; }
  .sw-cluster{ width: 100%; max-width: 340px; margin: 0 auto; height: 250px; }
  .sw-mini{ width: 135px; height: 95px; }
  .sw-mini--1{ top: 6px;  left: 8px;   right: auto; }
  .sw-mini--2{ top: 18px; left: auto;  right: 8px; }
  .sw-mini--3{ top: 120px;left: 26px;  right: auto; }
  .sw-mini--4{ top: 134px;left: auto;  right: 26px; }

  .sw-pricing__grid{ gap: 6px; }
  .sw-price-card{ padding: 14px 7px 14px; min-width: 0; }
  .sw-price-card__emoji{ font-size: 20px; }
  .sw-price-card__tier{ font-size: 8px; letter-spacing: .5px; }
  .sw-price-card__name{ font-size: 12px; line-height: 1.2; }
  .sw-price-card__range{ font-size: 15px; }
  .sw-price-card__from{ font-size: 8px; }
  .sw-price-card__features{ font-size: 9px; padding-left: 0; }
  .sw-price-card__features li{ margin: 4px 0; }
  .sw-price-card__cta{ font-size: 9px; padding: 8px 4px; }
  .sw-price-card--featured > span,
  .sw-price-card--featured__badge{ font-size: 8px !important; }
}
/* ============================================================ */