/* ============================================
   soluzione.css — Dynamic Landing Page Styles
   Design system: shift. (www.digitalshift.it)
   ============================================ */

/* ── Fonts ──────────────────────────── */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/inter-700.woff2') format('woff2'); }

@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 300; font-display: swap; src: url('/assets/fonts/poppins-300.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/poppins-500.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/poppins-700.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 800; font-display: swap; src: url('/assets/fonts/poppins-800.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 900; font-display: swap; src: url('/assets/fonts/poppins-900.woff2') format('woff2'); }

/* ── Design Tokens ──────────────────────────── */
:root {
  --accent: #FF5500;
  --accent-hover: #E64A00;
  --accent-glow: rgba(255, 85, 0, 0.35);
  --bg-white: #FFFFFF;
  --bg-off: #F8F9FA;
  --bg-dark: #111111;
  --text-dark: #111111;
  --text-light: #FFFFFF;
  --text-muted: rgba(100, 100, 100, 0.7);
  --border-light: rgba(0, 0, 0, 0.06);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

#solPage {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

/* ============================================
   LOADING SKELETON
   ============================================ */
.sol-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.sol-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sol-loader__logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -1px;
}

.sol-loader__logo span {
  color: var(--accent);
}

.sol-loader__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: sol-spin 0.8s linear infinite;
}

@keyframes sol-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   TOP NAVIGATION (minimal)
   ============================================ */
.sol-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}

.sol-nav.scrolled {
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.sol-nav__logo {
  height: clamp(32px, 4.5vw, 40px);
}

.sol-nav__logo img {
  height: 100%;
  display: block;
}

.sol-nav__back {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}

.sol-nav__back:hover {
  color: var(--accent);
}

/* ============================================
   HERO SECTION
   ============================================ */
.sol-hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 5vw 6rem;
  overflow: hidden;
}

.sol-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Radial gradient orb effect */
.sol-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  will-change: transform;
}

.sol-hero__orb--1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -150px;
  right: -100px;
  opacity: 0.15;
}

.sol-hero__orb--2 {
  width: 350px;
  height: 350px;
  background: #FF8C42;
  bottom: -100px;
  left: -80px;
  opacity: 0.1;
}

.sol-hero__content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.sol-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.sol-badge {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sol-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.sol-hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.sol-hero__scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2rem;
}

.sol-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: sol-scroll-pulse 2s ease-in-out infinite;
}

@keyframes sol-scroll-pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.3);
  }
}

/* ============================================
   VANTAGGI SECTION
   ============================================ */
.sol-vantaggi {
  padding: 8rem 5vw;
  background: var(--bg-off);
}

.sol-vantaggi__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.sol-vantaggi__header {
  text-align: center;
  margin-bottom: 4rem;
}

.sol-vantaggi__label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.sol-vantaggi__label-line {
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.sol-vantaggi__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -1px;
  line-height: 1.15;
}

.sol-vantaggi__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* ── Single Vantaggio Card ───────────────────── */
.sol-vantaggio {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 2rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  will-change: transform;
}

.sol-vantaggio:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 85, 0, 0.15);
}

.sol-vantaggio__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 85, 0, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 2px;
}

.sol-vantaggio__text {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}

/* ============================================
   CTA SECTION
   ============================================ */
.sol-cta {
  padding: 8rem 5vw;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sol-cta__orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(180px);
  opacity: 0.08;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.sol-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.sol-cta__headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.sol-cta__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.sol-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1.15rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px var(--accent-glow);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  will-change: transform;
}

.sol-cta__btn:hover {
  transform: scale(1.05);
  background: var(--accent-hover);
  box-shadow:
    0 12px 40px var(--accent-glow),
    0 0 60px rgba(255, 85, 0, 0.2);
}

.sol-cta__btn svg {
  transition: transform var(--transition);
}

.sol-cta__btn:hover svg {
  transform: translateX(4px);
}

/* Pulsing glow on CTA */
@keyframes sol-glow-pulse {

  0%,
  100% {
    box-shadow: 0 8px 30px var(--accent-glow);
  }

  50% {
    box-shadow: 0 8px 50px rgba(255, 85, 0, 0.5);
  }
}

.sol-cta__btn {
  animation: sol-glow-pulse 3s ease-in-out infinite;
}

.sol-cta__btn:hover {
  animation: none;
}

/* ============================================
   MINI FOOTER
   ============================================ */
.sol-footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
}

.sol-footer__brand {
  font-family: var(--font-heading);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.sol-footer__brand span {
  color: var(--accent);
}

.sol-footer__socials {
  display: flex;
  gap: 1.2rem;
}

.sol-footer__socials a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.sol-footer__socials a:hover {
  color: var(--accent);
}

/* ============================================
   PROMOZIONE VIEW
   ============================================ */
.sol-promo {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  padding: 8rem 5vw 4rem;
  text-align: center;
}

.sol-promo__banner {
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.1), rgba(0, 0, 0, 0.5));
  border: 1px solid rgba(255, 85, 0, 0.2);
  border-radius: var(--radius);
  padding: 4rem 2rem;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.sol-promo__banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.sol-promo__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.sol-promo__timer {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.sol-promo__timer-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.sol-promo__countdown {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 4px;
  text-shadow: 0 0 20px var(--accent-glow);
  font-variant-numeric: tabular-nums;
}

.sol-promo__benefit {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   OFFERTA VIEW
   ============================================ */
.sol-offerta {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-off);
  padding: 8rem 5vw 4rem;
}

.sol-offerta__card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-light);
  position: relative;
}

.sol-offerta__name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

.sol-offerta__pricing {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-light);
}

.sol-offerta__price-old {
  display: block;
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.sol-offerta__price-new {
  display: block;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 4px 20px var(--accent-glow);
}

.sol-offerta__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sol-offerta__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 500;
}

.sol-offerta__feature svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   ERROR / FALLBACK STATE
   ============================================ */
.sol-error {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--bg-dark);
  text-align: center;
  padding: 4rem 2rem;
  gap: 1.5rem;
}

.sol-error.is-visible {
  display: flex;
}

.sol-error__icon {
  width: 64px;
  height: 64px;
  color: rgba(255, 255, 255, 0.2);
}

.sol-error__title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-light);
}

.sol-error__msg {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 450px;
  line-height: 1.7;
}

.sol-error__retry {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  background: var(--accent);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px var(--accent-glow);
  transition:
    transform var(--transition),
    background var(--transition);
}

.sol-error__retry:hover {
  transform: scale(1.05);
  background: var(--accent-hover);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .sol-hero {
    padding: 7rem 1.5rem 4rem;
    min-height: 85vh;
  }

  .sol-hero__title {
    letter-spacing: -1px;
  }

  .sol-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .sol-hero__scroll-hint {
    display: none;
  }

  .sol-vantaggi {
    padding: 5rem 1.5rem;
  }

  .sol-vantaggi__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .sol-vantaggio {
    padding: 1.5rem;
  }

  .sol-cta {
    padding: 5rem 1.5rem;
  }

  .sol-cta__btn {
    width: 100%;
    justify-content: center;
    max-width: 380px;
  }

  .sol-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .sol-hero__badges {
    gap: 0.5rem;
  }

  .sol-badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.8rem;
  }

  .sol-vantaggio__text {
    font-size: 0.95rem;
  }
}

/* ============================================
   CONTAINER LIST VIEW STYLES (for /soluzioni)
   ============================================ */
.sol-list-section {
  padding: 8rem 5vw 6rem;
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sol-list-header {
  text-align: center;
  max-width: 800px;
  margin-bottom: 4rem;
}

.sol-list-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.sol-list-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.sol-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.sol-list-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.sol-list-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 85, 0, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.sol-list-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 85, 0, 0.4);
  box-shadow: 0 15px 35px rgba(255, 85, 0, 0.15);
}

.sol-list-card:hover::before {
  opacity: 1;
}

.sol-list-card__content {
  position: relative;
  z-index: 1;
}

.sol-list-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.sol-list-card__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.sol-list-card__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition);
  position: relative;
  z-index: 1;
}

.sol-list-card__cta span {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: border-color var(--transition);
}

.sol-list-card__cta svg {
  color: var(--accent);
  transition: transform var(--transition);
}

.sol-list-card:hover .sol-list-card__cta span {
  border-color: var(--text-light);
}

.sol-list-card:hover .sol-list-card__cta svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .sol-list-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================
   AWWWARDS-STYLE PREMIUM REDESIGN STYLES
   ============================================ */

.section-label-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.section-label-premium::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* ── Split Hero ──────────────────────────────── */
.sol-hero-split {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-light);
  display: flex;
  align-items: center;
  padding: 8rem 5vw 6rem;
  overflow: hidden;
}

.sol-hero-split__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.sol-hero-split__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

.sol-hero-split__orb--1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -100px;
  right: -100px;
  opacity: 0.15;
}

.sol-hero-split__orb--2 {
  width: 400px;
  height: 400px;
  background: #FF8C42;
  bottom: -150px;
  left: -100px;
  opacity: 0.1;
}

.sol-hero-split__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.sol-hero-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.sol-hero-split__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.sol-hero-split__title-wrap {
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.sol-hero-split__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
}

.sol-hero-split__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 3.5rem;
}

.sol-hero-split__scroll {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sol-hero-split__scroll-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.35), transparent);
}

.sol-hero-split__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sol-hero-split__image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.sol-hero-split__image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.4), transparent);
}

.sol-hero-split__image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  opacity: 0;
}

/* ── Sezione Problema ────────────────────────── */
.sol-problema {
  padding: 10rem 5vw;
  background: #141414;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.sol-problema__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}

.sol-problema__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--text-light);
}

.sol-problema__col-text {
  padding-top: 2rem;
}

.sol-problema__text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* ── Bento Grid ──────────────────────────────── */
.sol-bento-section {
  padding: 8rem 5vw;
  background: var(--bg-off);
}

.sol-bento-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sol-bento-section__header {
  text-align: left;
  margin-bottom: 4rem;
}

.sol-bento-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.sol-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.sol-bento-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 3rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
  will-change: transform;
}

.sol-bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(255, 85, 0, 0.12);
}

/* Bento card sizing classes */
.sol-bento-card--large {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-white) 0%, rgba(255, 85, 0, 0.03) 100%);
}

.sol-bento-card--tall {
  grid-row: span 2;
  justify-content: space-between;
}

.sol-bento-card__num {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sol-bento-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.sol-bento-card__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Bento Grid VIP & Slots Variations (Founder's Club) ── */
.sol-detail-vip .sol-bento-section {
  background: var(--bg-dark);
  color: var(--text-light);
}

.sol-detail-vip .sol-bento-section__title {
  color: var(--text-light);
}

.sol-detail-vip .sol-bento-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: var(--text-light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sol-detail-vip .sol-bento-card:hover {
  border-color: rgba(255, 85, 0, 0.4);
  box-shadow: 0 20px 45px rgba(255, 85, 0, 0.2);
}

.sol-detail-vip .sol-bento-card__title {
  color: var(--text-light);
}

.sol-detail-vip .sol-bento-card__desc {
  color: rgba(255, 255, 255, 0.6);
}

.sol-detail-vip .sol-bento-card--large {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 85, 0, 0.05) 100%);
}

/* Slots Card Elements */
.sol-bento-card--slots {
  display: flex;
  flex-direction: column;
}

.sol-slots-footer {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: auto;
  padding-top: 1.5rem;
}

.sol-slots-counter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
}

.sol-slots-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text-light);
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.sol-slots-divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.sol-slots-total {
  color: rgba(255, 255, 255, 0.45);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.sol-slots-status {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.sol-slots-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
}

.sol-slots-indicator::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  opacity: 0.4;
}

.sol-slots-indicator--active {
  background: #00FF66;
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.8);
}

.sol-slots-indicator--active::after {
  background: #00FF66;
  animation: sol-pulse-green 2s infinite;
}

.sol-slots-indicator--full {
  background: #FF3333;
  box-shadow: 0 0 10px rgba(255, 51, 51, 0.8);
}

.sol-slots-indicator--full::after {
  background: #FF3333;
  animation: sol-pulse-red 2s infinite;
}

.sol-slots-status-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes sol-pulse-green {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes sol-pulse-red {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Responsive Rules for Slots Card */
@media (max-width: 900px) {
  .sol-slots-footer {
    justify-content: flex-start;
  }

  .sol-slots-counter {
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ── Timeline Metodo ─────────────────────────── */
.sol-metodo-section {
  padding: 8rem 5vw;
  background: var(--bg-white);
}

.sol-metodo-section__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.sol-metodo-section__header {
  text-align: center;
  margin-bottom: 5rem;
}

.sol-metodo-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.sol-timeline-container {
  position: relative;
  margin-top: 4rem;
  padding: 2rem 0;
}

.sol-timeline-line {
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 85, 0, 0.1);
}

.sol-timeline-step {
  position: relative;
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
}

.sol-timeline-step:last-child {
  margin-bottom: 0;
}

.sol-timeline-step__marker {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid rgba(255, 85, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition);
}

.sol-timeline-step__marker-inner {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--bg-off);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.sol-timeline-step:hover .sol-timeline-step__marker {
  border-color: var(--accent);
}

.sol-timeline-step:hover .sol-timeline-step__marker-inner {
  background: var(--accent);
  color: var(--text-light);
}

.sol-timeline-step__content {
  padding-top: 1.5rem;
}

.sol-timeline-step__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.sol-timeline-step__text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 650px;
}

/* ── CTA Giant ───────────────────────────────── */
.sol-cta-giant {
  position: relative;
  padding: 12rem 5vw;
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
}

.sol-cta-giant__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.sol-cta-giant__orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(200px);
  opacity: 0.12;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sol-cta-giant__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.sol-cta-giant__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 2rem;
}

.sol-cta-giant__sub {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4rem;
}

.sol-cta-giant__btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--accent);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  padding: 1.5rem 3.5rem;
  border-radius: 60px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 40px var(--accent-glow);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  animation: sol-giant-glow 3s ease-in-out infinite;
}

.sol-cta-giant__btn:hover {
  transform: scale(1.05);
  background: var(--accent-hover);
  box-shadow: 0 15px 50px rgba(255, 85, 0, 0.4);
  animation: none;
}

.sol-cta-giant__btn svg {
  transition: transform var(--transition);
}

.sol-cta-giant__btn:hover svg {
  transform: translateX(6px);
}

@keyframes sol-giant-glow {

  0%,
  100% {
    box-shadow: 0 10px 40px var(--accent-glow);
  }

  50% {
    box-shadow: 0 10px 60px rgba(255, 85, 0, 0.5);
  }
}

/* ============================================
   RESPONSIVE PREMIUM LAYOUT
   ============================================ */
@media (max-width: 900px) {
  .sol-hero-split__container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .sol-hero-split__text {
    text-align: center;
  }

  .sol-hero-split__badges {
    justify-content: center;
  }

  .sol-hero-split__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .sol-hero-split__scroll {
    justify-content: center;
  }

  .sol-hero-split__image-container {
    aspect-ratio: 4/3;
    max-width: 500px;
  }

  .sol-problema__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sol-problema__col-text {
    padding-top: 0;
  }

  .sol-bento-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sol-bento-card--large {
    grid-column: span 1;
  }

  .sol-bento-card--tall {
    grid-row: span 1;
  }

  .sol-cta-giant__btn {
    width: 100%;
    justify-content: center;
    max-width: 400px;
    padding: 1rem 2rem;
  }
}

@media (max-width: 600px) {
  .sol-timeline-line {
    left: 25px;
  }

  .sol-timeline-step {
    gap: 1.5rem;
  }

  .sol-timeline-step__marker {
    width: 52px;
    height: 52px;
    border-width: 1px;
  }

  .sol-timeline-step__marker-inner {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .sol-timeline-step__content {
    padding-top: 0.5rem;
  }

  .sol-timeline-step__title {
    font-size: 1.15rem;
  }

  .sol-timeline-step__text {
    font-size: 0.95rem;
  }
}