/* =========================================================
   ROSTYSLAV LANDING PAGE - CLEAN STYLES.CSS
   Versione pulita + logo immagine già pronto
   ========================================================= */

/* ------------------------------
   1. VARIABILI GLOBALI
------------------------------ */
:root {
  --black: #050607;
  --dark: #08090b;
  --dark2: #101216;
  --card: #111418;

  --gold: #a855f7;
  --gold2: #3b82f6;
  --gold3: #1e3a8a;

  --white: #ffffff;
  --muted: #b6b6b6;
  --line: rgba(59, 130, 246, 0.26);
  --shadow: 0 30px 120px rgba(0, 0, 0, 0.72);
}

/* ------------------------------
   2. RESET BASE
------------------------------ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Manrope, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 0% 10%, rgba(168, 85, 247, 0.22), transparent 38%),
    radial-gradient(circle at 100% 30%, rgba(34, 211, 238, 0.18), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.10), transparent 50%),
    linear-gradient(180deg, #050607, #08090b 45%, #050607);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1185px, 91.5%);
  margin: auto;
}

.gold {
  background: linear-gradient(90deg, #a855f7 0%, #60a5fa 50%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ------------------------------
   3. HEADER PREMIUM
------------------------------ */
.navbar {
  position: sticky;
  top: 14px;
  z-index: 100;
  margin: 0 auto;
  width: min(1500px, calc(100% - 44px));
  background: rgba(5, 6, 7, 0.78);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(59, 130, 246, 0.24);
  border-radius: 16px;
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.navbar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.92), transparent);
}

.navbar::after {
  content: "";
  position: absolute;
  top: -70px;
  left: 7%;
  width: 180px;
  height: 140px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent 70%);
  pointer-events: none;
}

.nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 15px;
  line-height: 1.05;
  position: relative;
  padding-right: 34px;
}

.brand::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 46px;
  background: rgba(59, 130, 246, 0.22);
}

.brand::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 70%);
  pointer-events: none;
}

.brand span {
  display: flex;
  flex-direction: column;
  font-weight: 900;
  letter-spacing: 1.6px;
  color: #ffffff;
}

/* LOGO IMMAGINE: usa <img src="images/logo.png" class="logo-img"> */
.logo-img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  transform: translateY(1px);
  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 10px rgba(59, 130, 246, 0.20))
    drop-shadow(0 0 24px rgba(59, 130, 246, 0.12));
}

/* Vecchio logo CSS disattivato. Puoi eliminarlo dall'HTML se usi .logo-img */
.mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--gold2);
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -6px;
  text-shadow: 0 0 22px rgba(59, 130, 246, 0.18);
  position: relative;
}

.mark::before {
  content: "";
  position: absolute;
  inset: 10px 18px 18px 8px;
  border-left: 4px solid var(--gold2);
  border-top: 4px solid var(--gold2);
  transform: skew(-10deg);
}

.mark::after {
  content: "";
  position: absolute;
  inset: 21px 8px 9px 20px;
  border-right: 4px solid var(--gold2);
  border-bottom: 4px solid var(--gold2);
  transform: skew(-10deg);
}

.nav {
  display: flex;
  gap: 46px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 13px;
  color: #f3f3f3;
}

.nav a {
  position: relative;
  padding: 8px 0;
  opacity: 0.92;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: var(--gold2);
  transform: translateX(-50%);
  transition: 0.25s;
}

.nav a:hover::after {
  width: 32px;
}

.nav a:hover {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--gold2);
  font-size: 34px;
  cursor: pointer;
}

/* ------------------------------
   4. BUTTONS
------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 16px 28px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: 0.25s;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  background: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #22d3ee 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.35), 0 6px 20px rgba(34, 211, 238, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(168, 85, 247, 0.45), 0 10px 28px rgba(34, 211, 238, 0.35);
  filter: brightness(1.08);
}

.btn-gold {
  background: #25D366;
  color: #ffffff;
  border: 0;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35), 0 6px 20px rgba(37, 211, 102, 0.25);
}

.btn-gold:hover {
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45), 0 10px 28px rgba(37, 211, 102, 0.35);
}

.btn-dark {
  background: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #22d3ee 100%);
  color: #ffffff;
  border: 0;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.35), 0 6px 20px rgba(34, 211, 238, 0.25);
}

/* ------------------------------
   5. HERO
------------------------------ */
.hero{
  position:relative;
  min-height:820px;
  display:flex;
  align-items:center;

  margin-top:-100px;
  padding-top:100px;

  overflow:hidden;

  border-bottom:1px solid rgba(59,130,246,.10);

  background:
    linear-gradient(
      90deg,
      rgba(5,6,7,.96) 0%,
      rgba(5,6,7,.90) 26%,
      rgba(5,6,7,.52) 54%,
      rgba(5,6,7,.82) 100%
    ),
    none;

  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    radial-gradient(
      circle at 12% 30%,
      rgba(139,92,246,.55),
      transparent 38%
    ),
    radial-gradient(
      circle at 88% 20%,
      rgba(34,211,238,.40),
      transparent 42%
    ),
    radial-gradient(
      circle at 70% 85%,
      rgba(99,102,241,.45),
      transparent 45%
    ),
    radial-gradient(
      circle at 25% 90%,
      rgba(168,85,247,.35),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      transparent 65%,
      #050607 100%
    );

  filter: blur(40px);
  z-index:0;
  pointer-events:none;
}


.hero-grid{
  position:relative;
  z-index:2;

  display:grid;
  grid-template-columns:0.9fr 1.1fr;

  align-items:center;

  min-height:820px;
}

.eyebrow {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold2);
  font-weight: 900;
  margin-bottom: 18px;
}

h1 {
  font-family: Montserrat, sans-serif;
  font-size: clamp(58px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -4px;
  text-transform: uppercase;
  font-weight: 900;
  max-width: 700px;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.hero-copy p {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
  color: #ededed;
  max-width: 520px;
  margin: 26px 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 25px;
}

.proof {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #d2d2d2;
  font-size: 13px;
}

.faces {
  display: flex;
}

.faces span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-left: -8px;
  border: 2px solid #08090b;
  background: none center/cover;
}

.faces span:first-child {
  margin-left: 0;
}

.faces span:nth-child(2) {
}

.faces span:nth-child(3) {
}

.faces span:nth-child(4) {
}

.hero-visual {
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.main-person {
  width: 640px;
  height: 640px;
  position: relative;
  filter: drop-shadow(0 50px 120px rgba(0, 0, 0, 0.82));
}

.main-person img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 640px;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
  filter: contrast(1.06) saturate(0.9) brightness(0.97);
}

.video-card {
  position: absolute;
  right: 10px;
  bottom: 120px;
  width: 285px;
  padding: 38px 28px;
  border: 1px solid rgba(59, 130, 246, 0.28);
  background: rgba(7, 9, 11, 0.58);
  backdrop-filter: blur(18px);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.play {
  width: 90px;
  height: 90px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  font-size: 30px;
}

.video-card h3 {
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  margin-bottom: 12px;
}

.video-card p {
  font-size: 13px;
  line-height: 1.65;
  color: #d0d0d0;
}

.video-card small {
  display: block;
  margin-top: 18px;
  color: #aaaaaa;
}

.hero-photo {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.28);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  background: rgba(7, 9, 11, 0.58);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.04) saturate(0.98);
}

@media (max-width: 900px) {
  .hero-photo {
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ------------------------------
   6. STATS
------------------------------ */
.stats {
  position: relative;
  border-top: 1px solid rgba(59, 130, 246, 0.08);
  border-bottom: 1px solid rgba(59, 130, 246, 0.08);
  background: linear-gradient(90deg, #070809, #0b0d10, #070809);
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 30px 26px;
  border-right: 1px solid rgba(59, 130, 246, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.stat:last-child {
  border-right: 0;
}

.stat i svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold2);
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.18));
}

.stat strong {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.stat p {
  color: #bdbdbd;
  font-size: 13px;
  margin-top: 6px;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

/* ------------------------------
   7. SEZIONI GENERALI
------------------------------ */
section {
  padding: 82px 0;
}

.section-dark {
  background: linear-gradient(180deg, #070809, #050607);
}

.two {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.label {
  color: var(--gold2);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 13px;
}

h2 {
  font-family: Montserrat, sans-serif;
  font-size: clamp(32px, 3.8vw, 47px);
  line-height: 1.12;
  letter-spacing: -1.7px;
  margin-bottom: 22px;
}

.lead {
  color: #cfcfcf;
  line-height: 1.85;
  font-size: 15.5px;
  margin-bottom: 20px;
}

.checks {
  list-style: none;
  margin: 22px 0;
}

.checks li {
  margin: 12px 0;
  color: #e8e8e8;
  font-size: 14.5px;
}

.checks li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  background: var(--gold2);
  color: #090704;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  margin-right: 10px;
}

/* ------------------------------
   8. CHI SONO
------------------------------ */
.cinema-frame{
    position: relative;
    width: 100%;
    max-width: 700px; /* PRIMA era più piccolo */
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(59,130,246,.35);
    box-shadow: 0 0 40px rgba(0,0,0,.45);
}

.cinema-frame img{
    width: 100%;
    height: 720px; /* aumenta altezza */
    object-fit: cover;
    display: block;
}

.cinema-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.88));
  z-index: 1;
}

.sign {
  position: absolute;
  right: 28px;
  bottom: 14px;
  z-index: 4;
  font-family: "Snell Roundhand", "Brush Script MT", "Segoe Script", cursive;
  font-style: italic;
  font-size: 74px;
  line-height: 0.74;
  color: #a855f7;
  transform: rotate(-6deg);
  opacity: 0.92;
}

.sign span {
  display: block;
  margin-left: 128px;
  margin-top: -10px;
}

/* ------------------------------
   9. AREE FORMATIVE
------------------------------ */
.center {
  text-align: center;
}

.areas-section {
  position: relative;
  background: linear-gradient(180deg, #050607 0%, #07090b 45%, #050607 100%);
  overflow: hidden;
}

.areas-title {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
  font-size: 30px;
}

.areas-title::before,
.areas-title::after {
  content: "";
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold2));
}

.areas-title::after {
  background: linear-gradient(90deg, var(--gold2), transparent);
}

.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.course {
  position: relative;
  height: 250px;
  border: 1px solid rgba(59, 130, 246, 0.34);
  border-radius: 4px;
  overflow: hidden;
  background: #060708;
  transition: 0.32s;
}

.course:hover {
  transform: translateY(-6px);
  border-color: #3b82f6;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.course-img {
  position: absolute;
  inset: 0;
}

.course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.48);
}

.course-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.96));
}

.course-body {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
}

.course h3 {
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  margin-bottom: 8px;
}

.course h3::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: #3b82f6;
  margin-bottom: 11px;
}

.course p {
  font-size: 12px;
  line-height: 1.5;
  color: #d7d7d7;
  margin-bottom: 15px;
}

.more {
  background: none;
  border: 0;
  color: var(--gold2);
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
}

.course-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(59, 130, 246, 0.24);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #3b82f6;
  background: rgba(0, 0, 0, 0.22);
}

.course-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* ------------------------------
   10. PERCORSO
------------------------------ */
.process {
  background: linear-gradient(180deg, #050607, #07090b 50%, #050607);
  padding-bottom: 72px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.step {
  text-align: center;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 54px;
  right: -18px;
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, #a855f7, transparent);
}

.num {
  font-family: Montserrat, sans-serif;
  color: #a855f7;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
}

.circle {
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  border: 1px solid rgba(59, 130, 246, 0.32);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.circle svg {
  width: 34px;
  height: 34px;
  stroke: #a855f7;
  stroke-width: 1.6;
  fill: none;
}

.step h3 {
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  color: #3b82f6;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step p {
  font-size: 13px;
  color: #d0d0d0;
  line-height: 1.6;
  max-width: 220px;
  margin: auto;
}

/* ------------------------------
   11. TESTIMONIANZE
------------------------------ */
.testimonial-carousel {
  position: relative;
  margin-top: 28px;
  overflow: hidden;
  padding: 4px 0 10px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: testimonialScroll 48s linear infinite;
}

.testimonial-carousel:hover .testimonial-track {
  animation-play-state: paused;
}

.quote {
  width: 370px;
  min-height: 195px;
  flex: 0 0 auto;
  background: linear-gradient(180deg, #12161c, #0b0d11);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 9px;
  padding: 25px;
}

@keyframes testimonialScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.stars {
  color: var(--gold2);
  letter-spacing: 3px;
  margin-bottom: 13px;
}

.quote p {
  font-size: 14px;
  line-height: 1.65;
}

.student {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 20px;
}

.student img {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  object-fit: cover;
}

/* ------------------------------
   12. FAQ + CTA
------------------------------ */
.bottom {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 26px;
}

.faq,
.cta {
  position: relative;
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(15, 18, 21, 0.96), rgba(7, 8, 9, 0.98));
  padding: 30px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.faq h3 {
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  color: #3b82f6;
  font-size: 24px;
}

.faq-sub {
  color: #a9a9a9;
  font-size: 13px;
  line-height: 1.6;
  margin: 8px 0 20px;
}

.faq-item {
  border: 1px solid rgba(59, 130, 246, 0.13);
  margin-top: 10px;
  border-radius: 9px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  color: #ffffff;
  padding: 17px 18px;
  display: flex;
  justify-content: space-between;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.faq-q span {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #3b82f6;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.faq-a p {
  padding: 0 18px 18px;
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.72;
}

.faq-item.active .faq-a {
  max-height: 500px;
}

.faq-item.active .faq-q span {
  transform: rotate(45deg);
}

/* CTA TELEFONO SISTEMATO */
.cta {
  min-height: 410px;
  padding: 42px 40px;
  background:
    radial-gradient(circle at 80% 82%, rgba(59, 130, 246, 0.22), transparent 25%),
    linear-gradient(135deg, #060708 0%, #0b0d10 48%, #050607 100%);
}

.cta-visual {
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 430px;
  height: 430px;
  z-index: 1;
  pointer-events: none;
}

.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.65));
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 430px;
}

.cta-kicker {
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #3b82f6;
  font-weight: 800;
  font-size: 18px;
}

.cta h2 {
  font-size: 52px;
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.cta h2 span {
  display: block;
  color: #3b82f6;
}

.cta-line {
  width: 70px;
  height: 1px;
  background: #3b82f6;
  margin: 24px 0;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.cta-feature {
  border-right: 1px solid rgba(59, 130, 246, 0.20);
  padding-right: 14px;
}

.cta-feature:last-child {
  border-right: 0;
}

.cta-feature svg {
  width: 25px;
  height: 25px;
  stroke: #3b82f6;
  margin-bottom: 8px;
}

.cta-feature strong {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

.cta-feature small {
  display: block;
  color: #bcbcbc;
  margin-top: 4px;
  font-size: 11px;
}

.limited {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #cfcfcf;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 20px;
}

.limited svg {
  width: 18px;
  height: 18px;
  stroke: #3b82f6;
}

/* ------------------------------
   13. FOOTER
------------------------------ */
footer {
  background: #020304;
  border-top: 1px solid var(--line);
  padding: 27px 0;
  color: #aaaaaa;
  font-size: 12px;
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.foot-links {
  display: flex;
  gap: 25px;
}

/* ------------------------------
   14. COURSE PAGES
------------------------------ */
.course-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
  margin-top: -100px;
  padding-top: 100px;
}

.course-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 7, 0.98), rgba(5, 6, 7, 0.48)), var(--course-bg) center/cover;
}

.course-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, #050607);
}

.course-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.back {
  margin-bottom: 30px;
}

.course-badge {
  display: inline-flex;
  border: 1px solid rgba(59, 130, 246, 0.24);
  background: rgba(59, 130, 246, 0.06);
  padding: 10px 14px;
  border-radius: 999px;
  color: #3b82f6;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 20px;
}

.page-title {
  font-family: Montserrat, sans-serif;
  font-size: clamp(48px, 6.8vw, 86px);
  line-height: 0.96;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.course-lead {
  font-size: 18px;
  line-height: 1.75;
  color: #ececec;
  max-width: 600px;
  margin-bottom: 28px;
}

.course-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.course-glass {
  border: 1px solid rgba(59, 130, 246, 0.22);
  background: linear-gradient(180deg, rgba(14, 17, 21, 0.72), rgba(6, 7, 8, 0.88));
  backdrop-filter: blur(16px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.58);
}

.course-glass img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  filter: brightness(0.72);
}

.course-glass-content {
  padding: 28px;
}

.course-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.meta-pill {
  border: 1px solid rgba(59, 130, 246, 0.14);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 13px;
}

.meta-pill strong {
  display: block;
  font-family: Montserrat, sans-serif;
  color: #3b82f6;
  font-size: 12px;
  text-transform: uppercase;
}

.meta-pill span {
  display: block;
  color: #cfcfcf;
  font-size: 12px;
  margin-top: 4px;
}

.course-section {
  padding: 78px 0;
}

.course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.premium-box,
.info-box {
  border: 1px solid rgba(59, 130, 246, 0.16);
  background: linear-gradient(180deg, #101216, #070809);
  border-radius: 16px;
  padding: 30px;
}

.premium-box h3 {
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.premium-list {
  list-style: none;
}

.premium-list li {
  display: flex;
  gap: 12px;
  color: #d7d7d7;
  font-size: 15px;
  line-height: 1.6;
  margin: 14px 0;
}

.premium-list li::before {
  content: "";
  min-width: 18px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5c2c);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.info-box .step-num {
  font-family: Montserrat, sans-serif;
  color: #3b82f6;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 14px;
}

.info-box h3 {
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 10px;
}

.info-box p {
  color: #cfcfcf;
  line-height: 1.7;
}

.course-final {
  margin-top: 34px;
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 18px;
  background: linear-gradient(135deg, #0d1013, #050607);
  padding: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.course-final h2 {
  font-size: 34px;
  margin: 0;
}

.course-final p {
  color: #cfcfcf;
  margin-top: 10px;
}

/* ------------------------------
   15. RESPONSIVE
------------------------------ */
@media (max-width: 1040px) {
  .navbar {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav-inner {
    height: 74px;
    padding: 0 14px;
  }

  .brand {
    font-size: 13px;
  }

  .logo-img {
    width: 60px;
    height: 60px;
  }

  .mark {
    width: 46px;
    height: 46px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .two,
  .bottom,
  .course-hero-inner,
  .course-grid,
  .course-final {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps,
  .info-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-card {
    right: 50%;
    transform: translateX(50%);
    bottom: 16px;
  }
}

@media (max-width: 640px) {
  .brand {
    font-size: 11px;
    gap: 12px;
  }

  .brand::after {
    display: none;
  }

  .logo-img {
    width: 54px;
    height: 54px;
  }

  .btn {
    padding: 12px 14px;
  }

  .hero {
    margin-top: -84px;
  }

  .hero-grid {
    padding-top: 48px;
  }

  h1 {
    font-size: 43px;
    letter-spacing: -2px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .main-person {
    width: 360px;
    height: 520px;
  }

  .main-person img {
    width: 340px;
    height: 500px;
  }

  .stats-grid,
  .cards,
  .steps,
  .info-grid,
  .course-meta {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .areas-title::before,
  .areas-title::after {
    width: 34px;
  }

  .course {
    height: 290px;
  }

  .quote {
    width: 310px;
  }

  .testimonial-track {
    animation-duration: 58s;
  }

  .foot {
    flex-direction: column;
    text-align: center;
  }

  .cta {
    padding: 30px 24px;
    min-height: 520px;
  }

  .cta-visual {
    right: -95px;
    bottom: -60px;
    width: 360px;
    height: 360px;
    opacity: 0.75;
  }

  .cta h2 {
    font-size: 38px;
  }

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

  .cta-feature {
    border-right: 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.14);
    padding-bottom: 12px;
  }

  .course-final {
    display: block;
  }

  .course-final .btn {
    margin-top: 18px;
  }
}


/* =========================================================
   SCROLL OFFSET FIX
   ========================================================= */
[id]{
   scroll-margin-top:120px;
}


/* =========================================================
   CTA PREMIUM REDESIGN
   Meno spazio vuoto, telefono più grande, layout più luxury
   ========================================================= */

.bottom {
  grid-template-columns: 0.9fr 1.2fr !important;
  align-items: flex-start !important;
}

.faq {
  align-self: flex-start !important;
}

.cta {
  position: relative !important;
  align-self: stretch !important;

  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;

  padding: 52px 48px !important;

  overflow: hidden !important;

  border-radius: 18px !important;

  background:
    radial-gradient(circle at 82% 76%, rgba(59,130,246,.26), transparent 24%),
    radial-gradient(circle at 92% 92%, rgba(59,130,246,.22), transparent 28%),
    linear-gradient(135deg, #080a0d 0%, #050607 54%, #080808 100%) !important;
}

.cta::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.22), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.cta::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,.55), transparent);
  transform: rotate(-18deg);
  pointer-events: none;
  z-index: 0;
}

.cta-content {
  position: relative !important;
  z-index: 5 !important;
  max-width: 455px !important;
}

.cta-kicker {
  font-size: 17px !important;
  letter-spacing: 7px !important;
}

.cta h2 {
  font-size: 54px !important;
  line-height: .95 !important;
  margin-bottom: 18px !important;
}

.cta-line {
  margin: 22px 0 !important;
}

.cta .lead {
  max-width: 430px !important;
  font-size: 15.5px !important;
  line-height: 1.8 !important;
}

.cta-features {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
  max-width: 450px !important;
  margin: 25px 0 22px !important;
}

.cta-feature {
  min-width: 0 !important;
}

.cta-feature strong {
  font-size: 10.5px !important;
}

.cta-feature small {
  font-size: 11px !important;
}

.cta .btn {
  margin-top: 2px !important;
}

.limited {
  margin-top: 18px !important;
}

/* Telefono più grande e più scenografico */
.cta-visual {
  position: absolute !important;
  right: -34px !important;
  bottom: -44px !important;

  width: 390px !important;
  height: auto !important;

  z-index: 2 !important;
  pointer-events: none !important;

  transform: none !important;
  opacity: 1 !important;
}

.cta-visual img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;

  filter:
    drop-shadow(0 42px 85px rgba(0, 0, 0, 0.78))
    drop-shadow(0 0 38px rgba(59, 130, 246, 0.14)) !important;
}

/* FAQ sempre stabile, niente micro salti */
.faq-a {
  transition: none !important;
}

.faq-item.active .faq-a {
  max-height: 260px !important;
}

/* Tablet/mobile */
@media (max-width: 1050px) {
  .bottom {
    grid-template-columns: 1fr !important;
  }

  .cta {
    height: 620px !important;
    min-height: 620px !important;
    max-height: 620px !important;
  }
}

@media (max-width: 900px) {
  .cta {
    height: auto !important;
    min-height: 760px !important;
    max-height: none !important;
    padding: 50px 30px 420px !important;
  }

  .cta-content,
  .cta .lead,
  .cta-features {
    max-width: 100% !important;
  }

  .cta-features {
    grid-template-columns: 1fr !important;
  }

  .cta-feature {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.14) !important;
    padding-bottom: 12px !important;
  }

  .cta-visual {
    right: 50% !important;
    transform: translateX(50%) !important;
    bottom: -20px !important;
    width: 300px !important;
  }
}


/* =========================================================
   LEGAL PAGES — Privacy Policy / Termini
   ========================================================= */
.legal-page {
  padding: 140px 0 90px;
  background:
    radial-gradient(circle at 18% 0%, rgba(59,130,246,.10), transparent 28%),
    linear-gradient(180deg, #050607 0%, #08090b 48%, #050607 100%);
}

.legal-wrap {
  width: min(980px, 91.5%);
  margin: auto;
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 18px;
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(180deg, rgba(15,18,21,.96), rgba(7,8,9,.98));
  box-shadow: 0 30px 120px rgba(0,0,0,.42);
}

.legal-kicker {
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--gold2);
  font-weight: 900;
  margin-bottom: 16px;
}

.legal-wrap h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -2.8px;
  margin-bottom: 18px;
}

.legal-updated {
  color: #aaa;
  margin-bottom: 34px;
  font-size: 14px;
}

.legal-wrap h2 {
  margin-top: 36px;
  margin-bottom: 14px;
  font-size: 24px;
  letter-spacing: -.8px;
}

.legal-wrap p,
.legal-wrap li {
  color: #d0d0d0;
  line-height: 1.78;
  font-size: 15.5px;
}

.legal-wrap ul {
  margin: 14px 0 0 20px;
}

.legal-note {
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid rgba(59,130,246,.18);
  border-radius: 12px;
  background: rgba(59,130,246,.05);
  color: #d8d8d8;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

@media (max-width: 640px) {
  .legal-page {
    padding-top: 115px;
  }

  .legal-wrap h1 {
    font-size: 38px;
  }
}


/* =========================================================
   TRADING PAGE PREMIUM
   ========================================================= */
.trading-page {
  background:
    radial-gradient(circle at 80% 0%, rgba(59,130,246,.10), transparent 28%),
    linear-gradient(180deg, #050607 0%, #08090b 45%, #050607 100%);
}

.trading-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  margin-top: -92px;
  padding-top: 92px;
  overflow: hidden;
  border-bottom: 1px solid rgba(59,130,246,.12);
  background:
    linear-gradient(90deg, rgba(5,6,7,.96) 0%, rgba(5,6,7,.78) 42%, rgba(5,6,7,.45) 100%),
    url("/__l5e/assets-v1/9d3f1d0d-30fd-42e7-a2d6-59be8895b2cc/trading-bg-rg.jpg") center/cover no-repeat;
}

.trading-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(59,130,246,.16), transparent 26%),
    linear-gradient(180deg, transparent 56%, #050607 100%);
  pointer-events: none;
}

.trading-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
  padding: 110px 0 80px;
}

.trading-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(59,130,246,.24);
  background: rgba(59,130,246,.07);
  color: var(--gold2);
  padding: 10px 15px;
  border-radius: 999px;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.trading-title {
  font-family: Montserrat, sans-serif;
  font-size: clamp(52px, 7vw, 92px);
  line-height: .94;
  letter-spacing: -4px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.trading-title span {
  color: var(--gold2);
}

.trading-lead {
  color: #eeeeee;
  font-size: 18px;
  line-height: 1.78;
  max-width: 680px;
  font-weight: 650;
  margin-bottom: 30px;
}

.trading-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trading-glass-card {
  border: 1px solid rgba(59,130,246,.20);
  background:
    radial-gradient(circle at 80% 0%, rgba(59,130,246,.16), transparent 26%),
    linear-gradient(180deg, rgba(15,18,21,.76), rgba(5,6,7,.94));
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 35px 120px rgba(0,0,0,.58);
}

.trading-glass-card h3 {
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 18px;
}

.trading-mini-list {
  display: grid;
  gap: 14px;
}

.trading-mini {
  border: 1px solid rgba(59,130,246,.13);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255,255,255,.025);
}

.trading-mini strong {
  display: block;
  color: var(--gold2);
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 6px;
}

.trading-mini p {
  color: #d4d4d4;
  font-size: 14px;
  line-height: 1.6;
}

.trading-section {
  padding: 84px 0;
}

.trading-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.trading-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59,130,246,.15);
  border-radius: 18px;
  padding: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(59,130,246,.10), transparent 30%),
    linear-gradient(180deg, #101216, #070809);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

.trading-box::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--gold2);
  margin-bottom: 22px;
}

.trading-box h3 {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.trading-box p {
  color: #cfcfcf;
  line-height: 1.75;
  font-size: 15px;
}

.trading-deep {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: stretch;
}

.trading-panel {
  border: 1px solid rgba(59,130,246,.16);
  border-radius: 20px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(15,18,21,.96), rgba(7,8,9,.98));
}

.trading-panel h2 {
  margin-bottom: 18px;
}

.trading-panel p {
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 16px;
}

.trading-checks {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.trading-checks li {
  color: #e5e5e5;
  line-height: 1.6;
  display: flex;
  gap: 11px;
}

.trading-checks li::before {
  content: "✓";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--gold2);
  color: #090704;
  font-size: 12px;
  font-weight: 900;
  margin-top: 2px;
}

.trading-warning {
  margin-top: 28px;
  border: 1px solid rgba(59,130,246,.18);
  border-radius: 16px;
  padding: 20px;
  background: rgba(59,130,246,.055);
  color: #d7d7d7;
  line-height: 1.7;
  font-size: 14px;
}

.trading-final {
  margin-top: 40px;
  border: 1px solid rgba(59,130,246,.22);
  border-radius: 22px;
  padding: 42px;
  background:
    radial-gradient(circle at 85% 80%, rgba(59,130,246,.18), transparent 28%),
    linear-gradient(135deg, #0d1013, #050607);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.trading-final h2 {
  margin-bottom: 8px;
}

.trading-final p {
  color: #cfcfcf;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .trading-hero-inner,
  .trading-deep,
  .trading-final {
    grid-template-columns: 1fr;
    display: grid;
  }

  .trading-grid {
    grid-template-columns: 1fr;
  }

  .trading-final {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .trading-title {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .trading-hero-inner {
    padding-top: 92px;
  }

  .trading-glass-card,
  .trading-panel,
  .trading-final {
    padding: 26px;
  }
}


/* =========================================================
   ECOMMERCE PAGE PREMIUM
   ========================================================= */
.ecommerce-page {
  background:
    radial-gradient(circle at 78% 0%, rgba(59,130,246,.10), transparent 28%),
    linear-gradient(180deg, #050607 0%, #08090b 45%, #050607 100%);
}

.ecommerce-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  margin-top: -92px;
  padding-top: 92px;
  overflow: hidden;
  border-bottom: 1px solid rgba(59,130,246,.12);
  background:
    linear-gradient(90deg, rgba(5,6,7,.78) 0%, rgba(5,6,7,.45) 50%, rgba(5,6,7,.2) 100%),
    url("/__l5e/assets-v1/1887397e-5dc4-4853-b51d-2e578998dfba/ecommerce-bg2.jpg") center/cover no-repeat;
}

.ecommerce-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(59,130,246,.16), transparent 26%),
    linear-gradient(180deg, transparent 56%, #050607 100%);
  pointer-events: none;
}

.ecommerce-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
  padding: 110px 0 80px;
}

.ecommerce-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(59,130,246,.24);
  background: rgba(59,130,246,.07);
  color: var(--gold2);
  padding: 10px 15px;
  border-radius: 999px;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.ecommerce-title {
  font-family: Montserrat, sans-serif;
  font-size: clamp(52px, 7vw, 92px);
  line-height: .94;
  letter-spacing: -4px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.ecommerce-title span {
  color: var(--gold2);
}

.ecommerce-lead {
  color: #eeeeee;
  font-size: 18px;
  line-height: 1.78;
  max-width: 680px;
  font-weight: 650;
  margin-bottom: 30px;
}

.ecommerce-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ecommerce-glass-card {
  border: 1px solid rgba(59,130,246,.20);
  background:
    radial-gradient(circle at 80% 0%, rgba(59,130,246,.16), transparent 26%),
    linear-gradient(180deg, rgba(15,18,21,.76), rgba(5,6,7,.94));
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 35px 120px rgba(0,0,0,.58);
}

.ecommerce-glass-card h3 {
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 18px;
}

.ecommerce-mini-list {
  display: grid;
  gap: 14px;
}

.ecommerce-mini {
  border: 1px solid rgba(59,130,246,.13);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255,255,255,.025);
}

.ecommerce-mini strong {
  display: block;
  color: var(--gold2);
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 6px;
}

.ecommerce-mini p {
  color: #d4d4d4;
  font-size: 14px;
  line-height: 1.6;
}

.ecommerce-section {
  padding: 84px 0;
}

.ecommerce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.ecommerce-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59,130,246,.15);
  border-radius: 18px;
  padding: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(59,130,246,.10), transparent 30%),
    linear-gradient(180deg, #101216, #070809);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

.ecommerce-box::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--gold2);
  margin-bottom: 22px;
}

.ecommerce-box h3 {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ecommerce-box p {
  color: #cfcfcf;
  line-height: 1.75;
  font-size: 15px;
}

.ecommerce-deep {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: stretch;
}

.ecommerce-panel {
  border: 1px solid rgba(59,130,246,.16);
  border-radius: 20px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(15,18,21,.96), rgba(7,8,9,.98));
}

.ecommerce-panel h2 {
  margin-bottom: 18px;
}

.ecommerce-panel p {
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 16px;
}

.ecommerce-checks {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.ecommerce-checks li {
  color: #e5e5e5;
  line-height: 1.6;
  display: flex;
  gap: 11px;
}

.ecommerce-checks li::before {
  content: "✓";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--gold2);
  color: #090704;
  font-size: 12px;
  font-weight: 900;
  margin-top: 2px;
}

.ecommerce-warning {
  margin-top: 28px;
  border: 1px solid rgba(59,130,246,.18);
  border-radius: 16px;
  padding: 20px;
  background: rgba(59,130,246,.055);
  color: #d7d7d7;
  line-height: 1.7;
  font-size: 14px;
}

.ecommerce-final {
  margin-top: 40px;
  border: 1px solid rgba(59,130,246,.22);
  border-radius: 22px;
  padding: 42px;
  background:
    radial-gradient(circle at 85% 80%, rgba(59,130,246,.18), transparent 28%),
    linear-gradient(135deg, #0d1013, #050607);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.ecommerce-final h2 {
  margin-bottom: 8px;
}

.ecommerce-final p {
  color: #cfcfcf;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .ecommerce-hero-inner,
  .ecommerce-deep,
  .ecommerce-final {
    grid-template-columns: 1fr;
    display: grid;
  }

  .ecommerce-grid {
    grid-template-columns: 1fr;
  }

  .ecommerce-final {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .ecommerce-title {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .ecommerce-hero-inner {
    padding-top: 92px;
  }

  .ecommerce-glass-card,
  .ecommerce-panel,
  .ecommerce-final {
    padding: 26px;
  }
}


/* =========================================================
   IMMOBILIARE PAGE PREMIUM
   ========================================================= */
.immobiliare-page {
  background:
    radial-gradient(circle at 80% 0%, rgba(59,130,246,.10), transparent 28%),
    linear-gradient(180deg, #050607 0%, #08090b 45%, #050607 100%);
}

.immobiliare-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  margin-top: -92px;
  padding-top: 92px;
  overflow: hidden;
  border-bottom: 1px solid rgba(59,130,246,.12);
  background:
    linear-gradient(90deg, rgba(5,6,7,.78) 0%, rgba(5,6,7,.45) 50%, rgba(5,6,7,.2) 100%),
    url("/__l5e/assets-v1/e2b69821-2e48-4bf6-b8c8-ae31d846c932/immobiliare-bg.jpg") center/cover no-repeat;
}

.immobiliare-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(59,130,246,.16), transparent 26%),
    linear-gradient(180deg, transparent 56%, #050607 100%);
  pointer-events: none;
}

.immobiliare-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
  padding: 110px 0 80px;
}

.immobiliare-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(59,130,246,.24);
  background: rgba(59,130,246,.07);
  color: var(--gold2);
  padding: 10px 15px;
  border-radius: 999px;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.immobiliare-title {
  font-family: Montserrat, sans-serif;
  font-size: clamp(52px, 7vw, 92px);
  line-height: .94;
  letter-spacing: -4px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.immobiliare-title span {
  color: var(--gold2);
}

.immobiliare-lead {
  color: #eeeeee;
  font-size: 18px;
  line-height: 1.78;
  max-width: 680px;
  font-weight: 650;
  margin-bottom: 30px;
}

.immobiliare-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.immobiliare-glass-card {
  border: 1px solid rgba(59,130,246,.20);
  background:
    radial-gradient(circle at 80% 0%, rgba(59,130,246,.16), transparent 26%),
    linear-gradient(180deg, rgba(15,18,21,.76), rgba(5,6,7,.94));
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 35px 120px rgba(0,0,0,.58);
}

.immobiliare-glass-card h3 {
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 18px;
}

.immobiliare-mini-list {
  display: grid;
  gap: 14px;
}

.immobiliare-mini {
  border: 1px solid rgba(59,130,246,.13);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255,255,255,.025);
}

.immobiliare-mini strong {
  display: block;
  color: var(--gold2);
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 6px;
}

.immobiliare-mini p {
  color: #d4d4d4;
  font-size: 14px;
  line-height: 1.6;
}

.immobiliare-section {
  padding: 84px 0;
}

.immobiliare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.immobiliare-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59,130,246,.15);
  border-radius: 18px;
  padding: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(59,130,246,.10), transparent 30%),
    linear-gradient(180deg, #101216, #070809);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

.immobiliare-box::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--gold2);
  margin-bottom: 22px;
}

.immobiliare-box h3 {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.immobiliare-box p {
  color: #cfcfcf;
  line-height: 1.75;
  font-size: 15px;
}

.immobiliare-deep {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: stretch;
}

.immobiliare-panel {
  border: 1px solid rgba(59,130,246,.16);
  border-radius: 20px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(15,18,21,.96), rgba(7,8,9,.98));
}

.immobiliare-panel h2 {
  margin-bottom: 18px;
}

.immobiliare-panel p {
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 16px;
}

.immobiliare-checks {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.immobiliare-checks li {
  color: #e5e5e5;
  line-height: 1.6;
  display: flex;
  gap: 11px;
}

.immobiliare-checks li::before {
  content: "✓";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--gold2);
  color: #090704;
  font-size: 12px;
  font-weight: 900;
  margin-top: 2px;
}

.immobiliare-warning {
  margin-top: 28px;
  border: 1px solid rgba(59,130,246,.18);
  border-radius: 16px;
  padding: 20px;
  background: rgba(59,130,246,.055);
  color: #d7d7d7;
  line-height: 1.7;
  font-size: 14px;
}

.immobiliare-final {
  margin-top: 40px;
  border: 1px solid rgba(59,130,246,.22);
  border-radius: 22px;
  padding: 42px;
  background:
    radial-gradient(circle at 85% 80%, rgba(59,130,246,.18), transparent 28%),
    linear-gradient(135deg, #0d1013, #050607);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.immobiliare-final h2 {
  margin-bottom: 8px;
}

.immobiliare-final p {
  color: #cfcfcf;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .immobiliare-hero-inner,
  .immobiliare-deep,
  .immobiliare-final {
    grid-template-columns: 1fr;
    display: grid;
  }

  .immobiliare-grid {
    grid-template-columns: 1fr;
  }

  .immobiliare-final {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .immobiliare-title {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .immobiliare-hero-inner {
    padding-top: 92px;
  }

  .immobiliare-glass-card,
  .immobiliare-panel,
  .immobiliare-final {
    padding: 26px;
  }
}


/* =========================================================
   UGC & PERSONAL BRAND PAGE PREMIUM
   ========================================================= */
.ugc-page {
  background:
    radial-gradient(circle at 82% 0%, rgba(59,130,246,.10), transparent 28%),
    linear-gradient(180deg, #050607 0%, #08090b 45%, #050607 100%);
}

.ugc-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  margin-top: -92px;
  padding-top: 92px;
  overflow: hidden;
  border-bottom: 1px solid rgba(59,130,246,.12);
  background:
    linear-gradient(90deg, rgba(5,6,7,.85) 0%, rgba(5,6,7,.55) 50%, rgba(5,6,7,.25) 100%),
    url("/__l5e/assets-v1/3209a3d4-fca9-4699-b07f-3e8943394c7f/ugc-bg.jpg") center/cover no-repeat;
}

.ugc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(59,130,246,.16), transparent 26%),
    linear-gradient(180deg, transparent 56%, #050607 100%);
  pointer-events: none;
}

.ugc-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
  padding: 110px 0 80px;
}

.ugc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(59,130,246,.24);
  background: rgba(59,130,246,.07);
  color: var(--gold2);
  padding: 10px 15px;
  border-radius: 999px;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.ugc-title {
  font-family: Montserrat, sans-serif;
  font-size: clamp(52px, 7vw, 92px);
  line-height: .94;
  letter-spacing: -4px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.ugc-title span {
  color: var(--gold2);
}

.ugc-lead {
  color: #eeeeee;
  font-size: 18px;
  line-height: 1.78;
  max-width: 680px;
  font-weight: 650;
  margin-bottom: 30px;
}

.ugc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ugc-glass-card {
  border: 1px solid rgba(59,130,246,.20);
  background:
    radial-gradient(circle at 80% 0%, rgba(59,130,246,.16), transparent 26%),
    linear-gradient(180deg, rgba(15,18,21,.76), rgba(5,6,7,.94));
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 35px 120px rgba(0,0,0,.58);
}

.ugc-glass-card h3 {
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 18px;
}

.ugc-mini-list {
  display: grid;
  gap: 14px;
}

.ugc-mini {
  border: 1px solid rgba(59,130,246,.13);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255,255,255,.025);
}

.ugc-mini strong {
  display: block;
  color: var(--gold2);
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 6px;
}

.ugc-mini p {
  color: #d4d4d4;
  font-size: 14px;
  line-height: 1.6;
}

.ugc-section {
  padding: 84px 0;
}

.ugc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.ugc-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59,130,246,.15);
  border-radius: 18px;
  padding: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(59,130,246,.10), transparent 30%),
    linear-gradient(180deg, #101216, #070809);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

.ugc-box::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--gold2);
  margin-bottom: 22px;
}

.ugc-box h3 {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ugc-box p {
  color: #cfcfcf;
  line-height: 1.75;
  font-size: 15px;
}

.ugc-deep {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: stretch;
}

.ugc-panel {
  border: 1px solid rgba(59,130,246,.16);
  border-radius: 20px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(15,18,21,.96), rgba(7,8,9,.98));
}

.ugc-panel h2 {
  margin-bottom: 18px;
}

.ugc-panel p {
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 16px;
}

.ugc-checks {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.ugc-checks li {
  color: #e5e5e5;
  line-height: 1.6;
  display: flex;
  gap: 11px;
}

.ugc-checks li::before {
  content: "✓";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--gold2);
  color: #090704;
  font-size: 12px;
  font-weight: 900;
  margin-top: 2px;
}

.ugc-warning {
  margin-top: 28px;
  border: 1px solid rgba(59,130,246,.18);
  border-radius: 16px;
  padding: 20px;
  background: rgba(59,130,246,.055);
  color: #d7d7d7;
  line-height: 1.7;
  font-size: 14px;
}

.ugc-final {
  margin-top: 40px;
  border: 1px solid rgba(59,130,246,.22);
  border-radius: 22px;
  padding: 42px;
  background:
    radial-gradient(circle at 85% 80%, rgba(59,130,246,.18), transparent 28%),
    linear-gradient(135deg, #0d1013, #050607);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.ugc-final h2 {
  margin-bottom: 8px;
}

.ugc-final p {
  color: #cfcfcf;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .ugc-hero-inner,
  .ugc-deep,
  .ugc-final {
    grid-template-columns: 1fr;
    display: grid;
  }

  .ugc-grid {
    grid-template-columns: 1fr;
  }

  .ugc-final {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .ugc-title {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .ugc-hero-inner {
    padding-top: 92px;
  }

  .ugc-glass-card,
  .ugc-panel,
  .ugc-final {
    padding: 26px;
  }
}


/* =========================================================
   NETWORK & MINDSET PAGE PREMIUM
   ========================================================= */
.network-page {
  background:
    radial-gradient(circle at 82% 0%, rgba(59,130,246,.10), transparent 28%),
    linear-gradient(180deg, #050607 0%, #08090b 45%, #050607 100%);
}

.network-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  margin-top: -92px;
  padding-top: 92px;
  overflow: hidden;
  border-bottom: 1px solid rgba(59,130,246,.12);
  background:
    linear-gradient(90deg, rgba(5,6,7,.85) 0%, rgba(5,6,7,.55) 50%, rgba(5,6,7,.25) 100%),
    url("/__l5e/assets-v1/98141cef-b10f-4802-bc30-7be00e9504d9/network-bg.jpg") center/cover no-repeat;
}

.network-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(59,130,246,.16), transparent 26%),
    linear-gradient(180deg, transparent 56%, #050607 100%);
  pointer-events: none;
}

.network-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
  padding: 110px 0 80px;
}

.network-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(59,130,246,.24);
  background: rgba(59,130,246,.07);
  color: var(--gold2);
  padding: 10px 15px;
  border-radius: 999px;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.network-title {
  font-family: Montserrat, sans-serif;
  font-size: clamp(52px, 7vw, 92px);
  line-height: .94;
  letter-spacing: -4px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.network-title span {
  color: var(--gold2);
}

.network-lead {
  color: #eeeeee;
  font-size: 18px;
  line-height: 1.78;
  max-width: 680px;
  font-weight: 650;
  margin-bottom: 30px;
}

.network-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.network-glass-card {
  border: 1px solid rgba(59,130,246,.20);
  background:
    radial-gradient(circle at 80% 0%, rgba(59,130,246,.16), transparent 26%),
    linear-gradient(180deg, rgba(15,18,21,.76), rgba(5,6,7,.94));
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 35px 120px rgba(0,0,0,.58);
}

.network-glass-card h3 {
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 18px;
}

.network-mini-list {
  display: grid;
  gap: 14px;
}

.network-mini {
  border: 1px solid rgba(59,130,246,.13);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255,255,255,.025);
}

.network-mini strong {
  display: block;
  color: var(--gold2);
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 6px;
}

.network-mini p {
  color: #d4d4d4;
  font-size: 14px;
  line-height: 1.6;
}

.network-section {
  padding: 84px 0;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.network-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59,130,246,.15);
  border-radius: 18px;
  padding: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(59,130,246,.10), transparent 30%),
    linear-gradient(180deg, #101216, #070809);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}

.network-box::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--gold2);
  margin-bottom: 22px;
}

.network-box h3 {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.network-box p {
  color: #cfcfcf;
  line-height: 1.75;
  font-size: 15px;
}

.network-deep {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: stretch;
}

.network-panel {
  border: 1px solid rgba(59,130,246,.16);
  border-radius: 20px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(15,18,21,.96), rgba(7,8,9,.98));
}

.network-panel h2 {
  margin-bottom: 18px;
}

.network-panel p {
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 16px;
}

.network-checks {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-top: 20px;
}

.network-checks li {
  color: #e5e5e5;
  line-height: 1.6;
  display: flex;
  gap: 11px;
}

.network-checks li::before {
  content: "✓";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--gold2);
  color: #090704;
  font-size: 12px;
  font-weight: 900;
  margin-top: 2px;
}

.network-warning {
  margin-top: 28px;
  border: 1px solid rgba(59,130,246,.18);
  border-radius: 16px;
  padding: 20px;
  background: rgba(59,130,246,.055);
  color: #d7d7d7;
  line-height: 1.7;
  font-size: 14px;
}

.network-final {
  margin-top: 40px;
  border: 1px solid rgba(59,130,246,.22);
  border-radius: 22px;
  padding: 42px;
  background:
    radial-gradient(circle at 85% 80%, rgba(59,130,246,.18), transparent 28%),
    linear-gradient(135deg, #0d1013, #050607);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.network-final h2 {
  margin-bottom: 8px;
}

.network-final p {
  color: #cfcfcf;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .network-hero-inner,
  .network-deep,
  .network-final {
    grid-template-columns: 1fr;
    display: grid;
  }

  .network-grid {
    grid-template-columns: 1fr;
  }

  .network-final {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .network-title {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .network-hero-inner {
    padding-top: 92px;
  }

  .network-glass-card,
  .network-panel,
  .network-final {
    padding: 26px;
  }
}


/* =========================================================
   AREE FORMATIVE ALIGN FIX
   Allinea righette oro, titoli, testi e bottoni nelle card
   ========================================================= */

.areas-section {
  padding-top: 88px !important;
  padding-bottom: 92px !important;
}

.areas-section .center {
  margin-bottom: 38px !important;
}

.areas-title {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 22px !important;
  width: auto !important;
  margin: 0 auto !important;
  line-height: 1 !important;
}

.areas-title::before,
.areas-title::after {
  width: 72px !important;
  height: 1px !important;
  flex: 0 0 72px !important;
  opacity: 0.9 !important;
}

.cards {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-top: 0 !important;
  align-items: stretch !important;
}

.course {
  height: 270px !important;
  min-height: 270px !important;
  border-radius: 6px !important;
  border: 1px solid rgba(59, 130, 246, 0.28) !important;
  background: #060708 !important;
}

/* overlay più premium */
.course-img::after {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.10) 0%,
      rgba(0, 0, 0, 0.45) 42%,
      rgba(0, 0, 0, 0.94) 100%
    ) !important;
}

/* corpo card con altezza fissa: così tutto parte uguale */
.course-body {
  position: absolute !important;
  z-index: 2 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;

  height: 158px !important;
  padding: 18px 18px 17px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

/* righetta oro sempre alla stessa altezza */
.course h3 {
  width: 100% !important;
  min-height: 44px !important;
  margin: 0 0 9px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;

  font-family: Montserrat, sans-serif !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.15px !important;
  text-transform: uppercase !important;
}

.course h3::before {
  content: "" !important;
  display: block !important;
  width: 28px !important;
  height: 1px !important;
  background: var(--gold2) !important;
  margin: 0 0 12px !important;
  flex: 0 0 auto !important;
}

/* descrizioni allineate */
.course p {
  min-height: 48px !important;
  margin: 0 0 13px !important;

  font-size: 12.2px !important;
  line-height: 1.48 !important;
  color: #d7d7d7 !important;
}

/* bottone sempre in basso */
.course .more,
.course a.more {
  margin-top: auto !important;
  display: inline-flex !important;
  align-items: center !important;

  color: var(--gold2) !important;
  font-family: Montserrat, sans-serif !important;
  font-weight: 900 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1px !important;
}

/* icone tutte uguali */
.course-icon {
  top: 14px !important;
  right: 14px !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(59, 130, 246, 0.26) !important;
  background: rgba(8, 8, 8, 0.42) !important;
  backdrop-filter: blur(10px) !important;
}

.course-icon svg {
  width: 19px !important;
  height: 19px !important;
  stroke: currentColor !important;
}

/* hover più pulito */
.course:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(59, 130, 246, 0.55) !important;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.50),
    0 0 35px rgba(59, 130, 246, 0.08) !important;
}

/* responsive mantenendo ordine e allineamento */
@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .course {
    height: 290px !important;
  }
}

@media (max-width: 640px) {
  .areas-title {
    gap: 12px !important;
    font-size: 25px !important;
  }

  .areas-title::before,
  .areas-title::after {
    width: 34px !important;
    flex-basis: 34px !important;
  }

  .cards {
    grid-template-columns: 1fr !important;
  }

  .course {
    height: 300px !important;
  }

  .course-body {
    height: 165px !important;
    padding: 20px !important;
  }
}


/* =========================================================
   FINAL REAL FIX — DESKTOP + MOBILE
   hero background: images/hero-main.png
   chi sono image: images/me2.png
   ========================================================= */

/* ---------- HEADER FIX ---------- */
body .navbar {
  position: sticky !important;
  top: 14px !important;
  z-index: 9999 !important;
  width: min(1500px, calc(100% - 44px)) !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  border: 1px solid rgba(59, 130, 246, 0.24) !important;
  background: rgba(5, 6, 7, 0.82) !important;
  backdrop-filter: blur(22px) !important;
  box-shadow: 0 18px 60px rgba(0,0,0,.42), inset 0 0 0 1px rgba(255,255,255,.02) !important;
}

body .navbar .nav-inner {
  height: 76px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  padding: 0 28px !important;
  position: relative !important;
  z-index: 2 !important;
}

body .navbar .brand {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex: 0 0 auto !important;
  min-width: 220px !important;
  max-width: 260px !important;
  padding-right: 26px !important;
  position: relative !important;
  overflow: visible !important;
  text-transform: uppercase !important;
  font-family: Montserrat, sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: 1.5px !important;
  line-height: 1.05 !important;
}

body .navbar .brand::before {
  display: none !important;
}

body .navbar .brand::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 1px !important;
  height: 44px !important;
  background: rgba(59,130,246,.22) !important;
}

body .navbar .logo-img,
body .navbar .brand img,
body .navbar img.logo-img {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  max-width: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;
  object-fit: contain !important;
  display: block !important;
  transform: none !important;
}

body .navbar .brand span {
  display: block !important;
  font-size: 14px !important;
  line-height: 1.05 !important;
  letter-spacing: 1.4px !important;
  color: #fff !important;
  white-space: nowrap !important;
}

body .navbar .nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(24px, 3vw, 44px) !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  font-family: Montserrat, sans-serif !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  font-size: 12px !important;
  color: #f3f3f3 !important;
}

body .navbar .nav a {
  padding: 8px 0 !important;
  white-space: nowrap !important;
}

body .navbar > .nav-inner > .btn {
  flex: 0 0 auto !important;
  min-width: 170px !important;
  height: 48px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
}

body .navbar .menu-toggle {
  display: none !important;
}

/* ---------- HERO DESKTOP COME SFONDO ---------- */
body .hero {
  position: relative !important;
  min-height: 820px !important;
  display: flex !important;
  align-items: center !important;
  margin-top: -100px !important;
  padding-top: 100px !important;
  overflow: hidden !important;
  border-bottom: 1px solid rgba(59, 130, 246, 0.12) !important;

  background:
    linear-gradient(
      90deg,
      rgba(5, 6, 7, 0.98) 0%,
      rgba(5, 6, 7, 0.90) 28%,
      rgba(5, 6, 7, 0.52) 56%,
      rgba(5, 6, 7, 0.88) 100%
    ),
    radial-gradient(circle at 68% 18%, rgba(59, 130, 246, 0.14), transparent 26%),
    none !important;

  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  background-color: #050607 !important;
}

body .hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, #050607 0%, transparent 15%, transparent 85%, #050607 100%),
    linear-gradient(180deg, transparent 55%, #050607 100%) !important;
}

body .hero::after {
  display: none !important;
}

body .hero .hero-grid {
  position: relative !important;
  z-index: 3 !important;
  display: grid !important;
  grid-template-columns: 0.9fr 1.1fr !important;
  align-items: center !important;
  min-height: 820px !important;
  padding: 70px 0 30px !important;
}

body .hero .main-person,
body .hero .main-person img {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

body .hero .hero-visual {
  position: relative !important;
  z-index: 4 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  min-height: 0 !important;
}


body .hero .video-card {
  display: block !important;
  position: absolute !important;
  right: 8% !important;
  top: 50% !important;
  left: auto !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  width: 300px !important;
  padding: 42px 30px !important;
  border: 1px solid rgba(59, 130, 246, 0.24) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(14, 17, 21, 0.76), rgba(6, 7, 8, 0.90)) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55) !important;
  text-align: center !important;
  pointer-events: auto !important;
  z-index: 10 !important;
}

@media (min-width: 1500px) {
  body .hero {
    background-size: auto 100% !important;
    background-position: center center !important;
  }
}

/* ---------- CHI SONO FOTO ---------- */
body #chi-sono .cinema-frame img {
  content: none !important;
}

/* ---------- FOOTER LOGO SAFE ---------- */
body footer .brand,
body footer .footer-brand {
  gap: 12px !important;
  padding-right: 0 !important;
  font-size: 11px !important;
  letter-spacing: 1.2px !important;
}

body footer .brand::before,
body footer .brand::after,
body footer .footer-brand::before,
body footer .footer-brand::after {
  display: none !important;
}

body footer .logo-img,
body footer .footer-logo {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  max-width: 46px !important;
  object-fit: contain !important;
}

/* ---------- MOBILE ---------- */
@media (max-width: 980px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body .container {
    width: calc(100% - 36px) !important;
    max-width: 1185px !important;
  }

  body .navbar {
    top: 10px !important;
    width: calc(100% - 20px) !important;
    overflow: visible !important;
    border-radius: 18px !important;
  }

  body .navbar .nav-inner {
    height: 74px !important;
    padding: 0 12px !important;
    gap: 10px !important;
  }

  body .navbar .brand {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: none !important;
    padding-right: 0 !important;
    gap: 10px !important;
  }

  body .navbar .brand::after,
  body .navbar .brand::before {
    display: none !important;
  }

  body .navbar .logo-img,
  body .navbar .brand img,
  body .navbar img.logo-img {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
  }

  body .navbar .brand span {
    font-size: 11px !important;
    line-height: 1.05 !important;
    letter-spacing: 1.1px !important;
  }

  body .navbar > .nav-inner > .btn {
    min-width: auto !important;
    height: 44px !important;
    padding: 0 14px !important;
    font-size: 10px !important;
  }

  body .navbar .menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--gold2) !important;
    font-size: 32px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    z-index: 10001 !important;
  }

  body .navbar .nav {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 12px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(59,130,246,.28) !important;
    background: rgba(5,6,7,.98) !important;
    backdrop-filter: blur(18px) !important;
    box-shadow: 0 24px 80px rgba(0,0,0,.70) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    transition: .22s ease !important;
    z-index: 10000 !important;
  }

  body.nav-open .navbar .nav {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  body .navbar .nav a {
    display: block !important;
    padding: 15px 12px !important;
    font-size: 13px !important;
    border-bottom: 1px solid rgba(59,130,246,.12) !important;
  }

  body .navbar .nav a:last-child {
    border-bottom: 0 !important;
  }

  /* Hero mobile: usa hero-main */
  body .hero {
    min-height: auto !important;
    display: block !important;
    margin-top: -84px !important;
    padding-top: 100px !important;
    padding-bottom: 70px !important;
    background:
      linear-gradient(
        180deg,
        rgba(5, 6, 7, 0.18) 0%,
        rgba(5, 6, 7, 0.48) 30%,
        rgba(5, 6, 7, 0.90) 62%,
        #050607 100%
      ),
      radial-gradient(circle at 70% 8%, rgba(59, 130, 246, 0.22), transparent 32%),
      none !important;
    background-repeat: no-repeat !important;
    background-size: auto 430px !important;
    background-position: center 0 !important;
  }

  body .hero::before,
  body .hero::after {
    display: none !important;
  }

  body .hero .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    min-height: auto !important;
    padding: 170px 0 0 !important;
    gap: 26px !important;
    position: relative !important;
    z-index: 3 !important;
  }

  body .hero h1 {
    font-size: clamp(40px, 10.8vw, 56px) !important;
    line-height: 0.94 !important;
    letter-spacing: -1.9px !important;
    max-width: 100% !important;
    margin-bottom: 22px !important;
  }

  body .hero-copy p {
    font-size: 17px !important;
    line-height: 1.72 !important;
    max-width: 100% !important;
    margin: 0 0 24px !important;
  }

  body .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-bottom: 26px !important;
  }

  body .hero-actions .btn {
    width: 100% !important;
    min-height: 56px !important;
    font-size: 12px !important;
  }

  body .proof {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    font-size: 15.5px !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
  }

  body .faces span {
    width: 39px !important;
    height: 39px !important;
  }

  body .hero .hero-visual {
    position: relative !important;
    inset: auto !important;
    z-index: 6 !important;
    display: block !important;
    width: 100% !important;
    min-height: auto !important;
    pointer-events: auto !important;
  }

  body .hero .video-card {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 28px 22px !important;
    border-radius: 18px !important;
  }

  /* Chi sono: usa me2 e non taglia su mobile */
  body #chi-sono .two {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  body #chi-sono .cinema-frame {
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 20px !important;
  }

  body #chi-sono .cinema-frame img {
    content: none !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center top !important;
    background: #050607 !important;
  }

  /* Aree title mobile */
  body .areas-title {
    display: block !important;
    width: min(100%, 360px) !important;
    margin: 0 auto !important;
    text-align: center !important;
    font-size: 31px !important;
    line-height: 1.08 !important;
    letter-spacing: -1px !important;
  }

  body .areas-title::before {
    content: "" !important;
    display: block !important;
    width: 74px !important;
    height: 1px !important;
    margin: 0 auto 16px !important;
    background: linear-gradient(90deg, transparent, var(--gold2), transparent) !important;
  }

  body .areas-title::after {
    display: none !important;
  }

  body .areas-title .gold {
    display: block !important;
    text-align: center !important;
  }

  /* Stats mobile allineate */
  body .stats-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  body .stat {
    width: 100% !important;
    min-height: 150px !important;
    padding: 34px 22px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    text-align: center !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.20) !important;
  }

  body .stat > div,
  body .stat strong,
  body .stat p {
    text-align: center !important;
    width: 100% !important;
  }

  body .stat strong {
    font-size: 48px !important;
    line-height: 1 !important;
  }

  body .stat p {
    margin-top: 6px !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
  }

  /* FAQ allineata */
  body .faq-q {
    min-height: 78px !important;
    padding: 18px 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    text-align: left !important;
    line-height: 1.22 !important;
    font-size: 16px !important;
  }

  body .faq-q > span {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    flex: 0 0 38px !important;
    display: grid !important;
    place-items: center !important;
    margin-left: auto !important;
  }
}

@media (max-width: 520px) {
  body .navbar .nav-inner {
    height: 72px !important;
    padding: 0 10px !important;
  }

  body .navbar .logo-img {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
  }

  body .navbar .brand span {
    font-size: 10px !important;
    letter-spacing: .9px !important;
  }

  body .navbar > .nav-inner > .btn {
    height: 40px !important;
    padding: 0 11px !important;
    font-size: 9px !important;
  }

  body .navbar .menu-toggle {
    width: 38px !important;
    height: 38px !important;
    flex-basis: 38px !important;
    font-size: 29px !important;
  }

  body .hero {
    background-size: auto 400px !important;
    background-position: center 0 !important;
  }

  body .hero .hero-grid {
    padding-top: 150px !important;
  }

  body .hero h1 {
    font-size: 39px !important;
    letter-spacing: -1.7px !important;
  }

  body .hero-copy p {
    font-size: 16.5px !important;
  }
}

@media (max-width: 390px) {
  body .hero h1 {
    font-size: 36px !important;
  }

  body .hero {
    background-size: auto 365px !important;
  }

  body .hero .hero-grid {
    padding-top: 135px !important;
  }
}

/* =========================================
   FIX LINEE PROCESSO MOBILE
========================================= */
@media (max-width: 980px){

  .steps{
    grid-template-columns:1fr !important;
    gap:40px !important;
  }

  .step{
    text-align:center !important;
  }

  .step::after{
    display:none !important;
  }

}

/* =========================================
   TESTIMONIANZE SWIPE MOBILE
========================================= */
@media (max-width: 980px){

  .testimonial-carousel{
    overflow-x:auto !important;
    overflow-y:hidden !important;

    -webkit-overflow-scrolling:touch !important;
    scroll-snap-type:x mandatory !important;

    mask-image:none !important;
    padding-bottom:10px !important;
  }

  .testimonial-track{
    animation:none !important;
    width:max-content !important;
  }

  .quote{
    scroll-snap-align:center !important;
  }

  .testimonial-carousel::-webkit-scrollbar{
    display:none;
  }

}


/* =========================================================
   FINAL CTA MOBILE CLEAN FIX
   Ultimo override pulito per mobile:
   - CTA telefono più compatta
   - feature non si sovrappongono
   - testimonial continuano a muoversi e si possono swipare
   - righe percorso tolte
   ========================================================= */

@media (max-width: 1040px) {
  body .process .step::after,
  body .process .step:not(:last-child)::after,
  body .steps .step::after,
  body .steps .step:not(:last-child)::after {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
  }
}

@media (max-width: 980px) {
  body .bottom {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  body .cta {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    padding: 34px 24px 230px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 82% 84%, rgba(59,130,246,.32), transparent 34%),
      radial-gradient(circle at 100% 100%, rgba(59,130,246,.18), transparent 36%),
      linear-gradient(145deg, #07090b 0%, #050607 58%, #080706 100%) !important;
  }

  body .cta-content {
    max-width: 100% !important;
    position: relative !important;
    z-index: 4 !important;
  }

  body .cta-kicker {
    font-size: 13px !important;
    letter-spacing: 6px !important;
    margin-bottom: 10px !important;
  }

  body .cta h2 {
    font-size: clamp(42px, 12vw, 58px) !important;
    line-height: .94 !important;
    letter-spacing: -2px !important;
    margin-bottom: 18px !important;
  }

  body .cta-line {
    width: 88px !important;
    margin: 20px 0 24px !important;
  }

  body .cta .lead {
    font-size: 16.5px !important;
    line-height: 1.75 !important;
    max-width: 100% !important;
    margin-bottom: 22px !important;
  }

  body .cta-features {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    max-width: 100% !important;
    margin: 22px 0 22px !important;
  }

  body .cta-feature {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    min-width: 0 !important;
    padding: 16px 18px !important;
    border: 1px solid rgba(59,130,246,.16) !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,.025) !important;
  }

  body .cta-feature svg {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    flex: 0 0 24px !important;
    margin: 0 !important;
    display: block !important;
  }

  body .cta-feature strong {
    display: block !important;
    font-size: 13px !important;
    line-height: 1.1 !important;
    margin: 0 0 3px !important;
    white-space: normal !important;
  }

  body .cta-feature small {
    display: block !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    opacity: .82 !important;
    white-space: normal !important;
  }

  body .cta .btn {
    width: 100% !important;
    min-height: 56px !important;
    margin-top: 4px !important;
  }

  body .limited {
    margin-top: 18px !important;
    font-size: 12px !important;
  }

  body .cta-visual {
    position: absolute !important;
    right: -34px !important;
    bottom: -42px !important;
    width: 255px !important;
    height: auto !important;
    transform: rotate(-8deg) !important;
    opacity: .98 !important;
    z-index: 2 !important;
    pointer-events: none !important;
  }

  body .cta-visual img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    filter:
      drop-shadow(0 34px 70px rgba(0,0,0,.75))
      drop-shadow(0 0 30px rgba(59,130,246,.16)) !important;
  }

  body .testimonial-carousel {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x proximity !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
    padding: 6px 0 18px !important;
    scrollbar-width: none !important;
    cursor: grab !important;
  }

  body .testimonial-carousel::-webkit-scrollbar {
    display: none !important;
  }

  body .testimonial-track {
    animation: none !important;
    transform: none !important;
    width: max-content !important;
    display: flex !important;
    gap: 18px !important;
  }

  body .quote {
    width: min(82vw, 340px) !important;
    flex: 0 0 min(82vw, 340px) !important;
    scroll-snap-align: center !important;
  }
}

@media (max-width: 420px) {
  body .cta {
    padding: 30px 20px 220px !important;
  }

  body .cta h2 {
    font-size: 42px !important;
  }

  body .cta-visual {
    width: 235px !important;
    right: -42px !important;
    bottom: -36px !important;
  }
}

