/* ==========================================
   BILANORA WEBSITE
   Palette ufficiale derivata dall'app
========================================== */

:root {
  --primary: #D99A1A;
  --primary-dark: #B97C0A;

  --anthracite: #2E2E2E;
  --dark: #181818;

  --background: #F6F1EA;
  --background-light: #F3EFE8;
  --sand: #F7F4EF;
  --appbar: #F4EFE6;

  --white: #FFFFFF;

  --text-soft: #68635C;
  --border: rgba(46, 46, 46, 0.10);

  --shadow:
    0 20px 60px rgba(46, 46, 46, 0.10);

  --radius: 24px;
}


/* ==========================================
   RESET
========================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--anthracite);
  background: var(--background);

  line-height: 1.6;
}

img {
  max-width: 100%;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}


/* ==========================================
   HEADER
========================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(246, 241, 234, 0.92);

  backdrop-filter: blur(18px);

  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;

  gap: 12px;

  font-size: 24px;
  font-weight: 900;

  letter-spacing: 0.5px;
}

.brand-logo {
  width: 48px;
  height: 48px;

  border-radius: 13px;

  object-fit: cover;

  box-shadow:
    0 6px 20px rgba(217, 154, 26, 0.20);
}

.main-nav {
  display: flex;
  align-items: center;

  gap: 30px;
}

.main-nav a {
  font-weight: 650;
  font-size: 15px;

  transition: 0.2s ease;
}

.main-nav a:hover {
  color: var(--primary-dark);
}

.header-button {
  padding: 11px 19px;

  background: var(--anthracite);
  color: white;

  border-radius: 12px;

  font-weight: 700;

  transition: 0.2s ease;
}

.header-button:hover {
  transform: translateY(-2px);
}


/* ==========================================
   HERO
========================================== */

.hero {
  position: relative;

  overflow: hidden;

  padding:
    100px 0
    110px;
}

.hero::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(217, 154, 26, 0.16),
      rgba(217, 154, 26, 0)
    );

  top: -220px;
  left: -240px;
}

.hero-grid {
  position: relative;

  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(430px, 0.95fr);

  align-items: center;

  gap: 80px;
}

.promo-badge {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  padding:
    8px 14px;

  border: 1px solid
    rgba(217, 154, 26, 0.30);

  background:
    rgba(217, 154, 26, 0.09);

  border-radius: 999px;

  font-size: 14px;
  font-weight: 750;

  margin-bottom: 25px;
}

.promo-dot {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: var(--primary);

  box-shadow:
    0 0 0 5px
    rgba(217, 154, 26, 0.12);
}

.hero h1 {
  margin: 0;

  max-width: 700px;

  font-size:
    clamp(48px, 6vw, 76px);

  line-height: 1.02;

  letter-spacing: -3px;
}

.hero h1 span {
  color: var(--primary-dark);
}

.hero-description {
  max-width: 650px;

  margin:
    28px 0
    32px;

  font-size: 19px;

  color: var(--text-soft);
}

.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;
}

.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding:
    0 24px;

  border-radius: 14px;

  font-size: 15px;
  font-weight: 800;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--primary);

  color: var(--anthracite);

  box-shadow:
    0 14px 30px
    rgba(217, 154, 26, 0.26);
}

.button-secondary {
  background: white;

  border:
    1px solid var(--border);

  color: var(--anthracite);
}

.button-dark {
  background: var(--dark);

  color: white;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;

  gap: 20px;

  margin-top: 32px;

  color: var(--text-soft);

  font-size: 14px;
  font-weight: 650;
}


/* ==========================================
   BILANORA APP SHOWCASE
========================================== */

.hero-visual {
  position: relative;
  min-height: 720px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.app-showcase {
  width: 100%;
  max-width: 470px;

  overflow: hidden;

  border-radius: 38px;

  background: var(--background);

  border: 1px solid rgba(46, 46, 46, 0.08);

  box-shadow:
    0 35px 90px rgba(46, 46, 46, 0.18);

  transform: rotate(1deg);
}


/* TESTATA */

.demo-app-header {
  min-height: 108px;

  padding: 22px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #0D0D0F;

  border-bottom:
    1px solid rgba(217, 154, 26, 0.35);
}

.demo-brand {
  display: flex;
  align-items: center;

  gap: 12px;
}

.demo-brand img {
  width: 48px;
  height: 48px;

  border-radius: 12px;

  object-fit: cover;
}

.demo-brand strong {
  display: block;

  color: white;

  font-size: 21px;
  font-weight: 900;
}

.demo-brand span {
  display: block;

  margin-top: 2px;

  color: var(--primary);

  font-size: 11px;
}

.demo-header-actions {
  display: flex;
  align-items: center;

  gap: 9px;
}

.demo-account,
.demo-menu {
  background: #18181A;

  border-radius: 14px;
}

.demo-account {
  padding: 7px 10px;

  text-align: center;
}

.demo-account-icon {
  width: 30px;
  height: 30px;

  margin: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--primary);

  font-weight: 900;
}

.demo-account span {
  display: block;

  margin-top: 2px;

  color: white;

  font-size: 9px;
  font-weight: 700;
}

.demo-menu {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--primary);

  font-size: 25px;
}


/* CONTI */

.demo-accounts {
  padding:
    13px 27px
    5px;

  background: var(--background);
}

.demo-account-row {
  min-height: 54px;

  display: grid;

  grid-template-columns:
    28px 1fr auto;

  align-items: center;

  gap: 10px;

  border-bottom:
    1px solid rgba(46,46,46,0.09);
}

.demo-account-row:last-child {
  border-bottom: 0;
}

.demo-account-type {
  color: var(--primary);

  font-size: 20px;
}

.demo-account-name {
  font-size: 14px;

  color: var(--anthracite);

  font-weight: 550;
}

.demo-account-row strong {
  font-size: 14px;
}

.amount-positive {
  color: #41856A;
}

.amount-negative {
  color: #C95548;
}

.amount-zero {
  color: var(--anthracite);
}


/* PANORAMICA */

.demo-month-summary {
  margin:
    14px 22px
    18px;

  padding:
    20px 24px
    22px;

  border-radius: 27px;

  background:
    linear-gradient(
      145deg,
      #151515,
      #0D0D0D
    );

  border:
    1px solid
    rgba(217,154,26,0.72);

  box-shadow:
    0 13px 30px
    rgba(46,46,46,0.13);
}

.demo-summary-title {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  color: #E3AA36;

  font-size: 14px;
  font-weight: 850;

  letter-spacing: .4px;
}

.demo-summary-values {
  margin-top: 20px;

  display: grid;

  grid-template-columns:
    1fr 1px 1fr;

  align-items: center;

  gap: 20px;
}

.demo-summary-values > div:not(.demo-summary-divider) {
  display: flex;
  flex-direction: column;

  gap: 4px;
}

.demo-summary-values span {
  color: rgba(255,255,255,.65);

  font-size: 12px;
}

.demo-summary-values strong {
  font-size: 25px;

  letter-spacing: -1px;
}

.demo-summary-values i {
  width: 35px;
  height: 3px;

  margin-top: 8px;

  display: block;

  border-radius: 99px;

  background: var(--primary);
}

.demo-summary-divider {
  width: 1px;
  height: 68px;

  background:
    rgba(255,255,255,.18);
}


/* SELETTORE MESE */

.demo-month-selector {
  width: 80%;

  margin:
    0 auto
    17px;

  min-height: 48px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding:
    0 17px;

  border-radius: 999px;

  background: #0A0A0A;

  color: white;
}

.demo-month-selector strong {
  font-size: 15px;
}

.demo-month-selector button {
  width: auto;
  min-height: auto;

  padding: 0;

  margin: 0;

  border: 0;

  background: none;

  color: var(--primary);

  font-size: 27px;
}


/* DONUT */

.demo-chart-card {
  margin:
    0 22px
    12px;

  min-height: 220px;

  padding: 20px;

  display: grid;

  grid-template-columns:
    .85fr 1px 1.15fr;

  align-items: center;

  gap: 15px;

  border-radius: 26px;

  background: #FBF9F5;

  border:
    1px solid rgba(46,46,46,.05);
}

.demo-donut {
  width: 130px;
  height: 130px;

  margin: auto;

  position: relative;

  border-radius: 50%;

  background:
    conic-gradient(
      #438568 0 40%,
      #B45143 40% 63%,
      #BDA477 63% 79%,
      #5D83BF 79% 92%,
      #946C91 92% 100%
    );
}

.demo-donut-hole {
  position: absolute;

  inset: 28px;

  border-radius: 50%;

  background: #FBF9F5;
}

.demo-chart-divider {
  width: 1px;
  height: 145px;

  background:
    rgba(46,46,46,.12);
}

.demo-chart-title {
  display: block;

  margin-bottom: 10px;

  font-size: 11px;

  color: var(--anthracite);
}

.demo-category {
  display: grid;

  grid-template-columns:
    9px 1fr auto;

  align-items: center;

  gap: 8px;

  margin:
    9px 0;
}

.category-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;
}

.demo-category b {
  display: block;

  font-size: 11px;

  color: var(--anthracite);
}

.demo-category small {
  display: block;

  margin-top: 1px;

  color: #77716A;

  font-size: 10px;
}

.demo-category > strong {
  font-size: 11px;
}

.category-green {
  background: #438568;
}

.category-red {
  background: #B45143;
}

.category-gold {
  background: #BDA477;
}

.category-blue {
  background: #5D83BF;
}

.category-green-text {
  color: #438568;
}

.category-red-text {
  color: #B45143;
}

.category-gold-text {
  color: #A88955;
}

.category-blue-text {
  color: #5D83BF;
}


/* BOTTOM NAV */

.demo-bottom-nav {
  position: relative;

  min-height: 76px;

  margin:
    0 17px
    16px;

  padding:
    10px 13px;

  display: grid;

  grid-template-columns:
    1fr 1fr 1.15fr 1fr 1fr;

  align-items: center;

  border-radius: 25px;

  background: #F4EAD7;

  border:
    1px solid rgba(217,154,26,.18);
}

.demo-nav-item {
  min-height: 50px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 2px;

  border-radius: 14px;

  color: var(--anthracite);
}

.demo-nav-item.active {
  background:
    rgba(217,154,26,.18);
}

.demo-nav-item span {
  font-size: 20px;
  font-weight: 800;
}

.demo-nav-item small {
  font-size: 8px;
}

.demo-ai-button {
  width: 66px;
  height: 66px;

  justify-self: center;

  margin-top: -25px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #F2C966,
      #D99A1A
    );

  border:
    4px solid #F6F1EA;

  box-shadow:
    0 8px 18px rgba(46,46,46,.16);

  color: var(--anthracite);
}

.demo-ai-button span {
  font-size: 21px;
}

.demo-ai-button small {
  font-size: 9px;
  font-weight: 800;
}

.demo-add-button {
  width: 49px;
  height: 49px;

  justify-self: center;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: var(--primary);

  color: var(--anthracite);

  font-size: 27px;
  font-weight: 500;
}


/* MOBILE */

@media (max-width: 1050px) {

  .hero-visual {
    min-height: 690px;
  }

  .app-showcase {
    max-width: 440px;

    transform: none;
  }

}

@media (max-width: 760px) {

  .hero-visual {
    min-height: auto;
  }

  .app-showcase {
    max-width: 430px;
  }

}

@media (max-width: 480px) {

  .demo-chart-card {
    grid-template-columns:
      1fr;

    text-align: center;
  }

  .demo-chart-divider {
    display: none;
  }

  .demo-category {
    text-align: left;
  }

}


/* ==========================================
   SEZIONI
========================================== */

.section {
  padding:
    110px 0;
}

.section-soft {
  background: var(--background-light);
}

.section-heading {
  max-width: 780px;

  margin:
    0 auto
    65px;

  text-align: center;
}

.eyebrow {
  display: inline-block;

  margin-bottom: 12px;

  color: var(--primary-dark);

  font-size: 13px;
  font-weight: 850;

  letter-spacing: 1.8px;
}

.section-heading h2,
.security-grid h2,
.download-inner h2 {
  margin:
    0 0
    18px;

  font-size:
    clamp(36px, 4vw, 52px);

  line-height: 1.08;

  letter-spacing: -1.8px;
}

.section-heading p {
  margin: 0;

  color: var(--text-soft);

  font-size: 18px;
}


/* ==========================================
   FEATURES
========================================== */

.features-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 18px;
}

.feature-card {
  padding: 26px;

  border-radius: var(--radius);

  background: var(--sand);

  border:
    1px solid var(--border);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-card:hover {
  transform:
    translateY(-6px);

  box-shadow: var(--shadow);
}

.feature-card-highlight {
  background:
    linear-gradient(
      145deg,
      rgba(217,154,26,0.18),
      var(--sand)
    );

  border:
    1px solid
    rgba(217,154,26,0.28);
}

.feature-icon {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  border-radius: 14px;

  background:
    rgba(217, 154, 26, 0.14);

  color: var(--primary-dark);

  font-size: 18px;
  font-weight: 900;
}

.feature-card h3 {
  margin:
    0 0
    9px;

  font-size: 19px;
}

.feature-card p {
  margin: 0;

  color: var(--text-soft);

  font-size: 14px;
}


/* ==========================================
   STEPS
========================================== */

.steps {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;
}

.step {
  padding: 34px;

  background: var(--sand);

  border-radius: var(--radius);

  border:
    1px solid var(--border);
}

.step > span {
  color: var(--primary);

  font-size: 36px;
  font-weight: 900;
}

.step h3 {
  margin:
    15px 0
    8px;

  font-size: 22px;
}

.step p {
  margin: 0;

  color: var(--text-soft);
}


/* ==========================================
   PROMO E PREZZI
========================================== */

.launch-promo {
  display: flex;

  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 10px;

  max-width: 700px;

  margin:
    -25px auto
    35px;

  padding:
    13px 20px;

  border-radius: 15px;

  background:
    rgba(217, 154, 26, 0.13);

  border:
    1px solid
    rgba(217, 154, 26, 0.25);

  text-align: center;
}

.pricing-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 430px));

  justify-content: center;

  gap: 24px;
}

.price-card {
  position: relative;

  padding: 36px;

  border-radius: 28px;

  background: var(--sand);

  border:
    1px solid var(--border);
}

.price-card-featured {
  border:
    2px solid
    var(--primary);

  box-shadow:
    0 25px 60px
    rgba(217,154,26,0.15);
}

.popular-label {
  position: absolute;

  top: -15px;
  right: 25px;

  padding:
    7px 13px;

  border-radius: 999px;

  background: var(--primary);

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 1px;
}

.price-name > span {
  font-size: 11px;

  color: var(--primary-dark);

  font-weight: 850;

  letter-spacing: 1.4px;
}

.price-name h3 {
  margin:
    4px 0
    18px;

  font-size: 28px;
}

.price strong {
  font-size: 44px;

  letter-spacing: -2px;
}

.price > span {
  color: var(--text-soft);
}

.price-card > p {
  color: var(--text-soft);
}

.price-card ul {
  padding: 0;

  margin:
    28px 0;

  list-style: none;
}

.price-card li {
  padding:
    8px 0;

  border-bottom:
    1px solid
    var(--border);

  font-size: 14px;
}

.full-button {
  width: 100%;
}


/* ==========================================
   SICUREZZA
========================================== */

.security-section {
  background: var(--anthracite);

  color: white;
}

.security-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  align-items: center;

  gap: 80px;
}

.security-grid p {
  color:
    rgba(255,255,255,0.68);

  font-size: 17px;
}

.security-card {
  padding: 20px;

  border-radius: 26px;

  background:
    rgba(255,255,255,0.07);

  border:
    1px solid
    rgba(255,255,255,0.10);
}

.security-card > div {
  padding: 20px;

  border-bottom:
    1px solid
    rgba(255,255,255,0.10);
}

.security-card > div:last-child {
  border-bottom: 0;
}

.security-card strong {
  display: block;

  color: #F2BF50;
}

.security-card span {
  display: block;

  margin-top: 5px;

  color:
    rgba(255,255,255,0.65);
}


/* ==========================================
   DOWNLOAD
========================================== */

.download-section {
  padding:
    100px 0;

  background:
    linear-gradient(
      135deg,
      #E3AA36,
      #D99A1A
    );
}

.download-inner {
  display: flex;

  align-items: center;

  gap: 50px;
}

.download-logo {
  width: 180px;
  height: 180px;

  object-fit: cover;

  border-radius: 42px;

  box-shadow:
    0 25px 60px
    rgba(46,46,46,0.25);
}

.download-inner h2 {
  max-width: 650px;
}

.download-inner p {
  font-size: 18px;
}


/* ==========================================
   FOOTER
========================================== */

.site-footer {
  padding:
    70px 0
    25px;

  background: #181818;

  color: white;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.7fr
    1fr
    1fr
    1fr;

  gap: 50px;
}

.footer-brand p {
  color:
    rgba(255,255,255,0.55);
}

.footer-grid > div:not(.footer-brand) {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.footer-grid > div > strong {
  margin-bottom: 7px;

  color: #F2BF50;
}

.footer-grid a {
  color:
    rgba(255,255,255,0.65);

  font-size: 14px;
}

.footer-grid a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 55px;

  padding-top: 24px;

  border-top:
    1px solid
    rgba(255,255,255,0.10);

  color:
    rgba(255,255,255,0.45);

  font-size: 13px;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1050px) {

  .main-nav {
    display: none;
  }

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

  .hero-content {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-visual {
    min-height: auto;
  }

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

}


@media (max-width: 760px) {

  .header-button {
    display: none;
  }

  .hero {
    padding:
      65px 0
      75px;
  }

  .hero h1 {
    font-size: 46px;
    letter-spacing: -2px;
  }

  .app-preview {
    transform: none;

    padding: 18px;
  }

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

  .features-grid,
  .steps,
  .pricing-grid,
  .security-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding:
      75px 0;
  }

  .security-grid {
    gap: 35px;
  }

  .download-inner {
    flex-direction: column;

    align-items: flex-start;
  }

  .download-logo {
    width: 120px;
    height: 120px;
  }

}


@media (max-width: 480px) {

  .container {
    width:
      min(
        100% - 26px,
        1180px
      );
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .price-card {
    padding: 27px;
  }
  

}

/* ==========================================
   BILANORA IN AZIONE
========================================== */

.app-experience {
  padding: 120px 0;
  overflow: hidden;
}

.experience-heading {
  max-width: 800px;
  margin: 0 auto 100px;
  text-align: center;
}

.experience-heading h2 {
  margin: 0 0 20px;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--anthracite);
}

.experience-heading p {
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.7;
}


/* ==========================================
   RIGHE ALTERNATE
========================================== */

.experience-row {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, .92fr);
  gap: 90px;
  align-items: center;
  margin-bottom: 145px;
}

.experience-row:last-child {
  margin-bottom: 0;
}

.experience-reverse {
  grid-template-columns:
    minmax(0, .92fr)
    minmax(0, 1fr);
}


/* ==========================================
   TESTI
========================================== */

.experience-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

.experience-text h3 {
  max-width: 530px;
  margin: 0 0 20px;
  color: var(--anthracite);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.experience-text p {
  max-width: 550px;
  margin: 0 0 28px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.72;
}

.experience-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.experience-benefits span {
  color: var(--anthracite);
  font-size: 15px;
  font-weight: 700;
}


/* ==========================================
   ANIMAZIONE LATERALE
========================================== */

.experience-visual {
  display: flex;
  justify-content: center;
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.2,.8,.2,1);
  opacity: 0;
}

.experience-from-left .experience-visual {
  transform: translateX(-90px);
}

.experience-from-right .experience-visual {
  transform: translateX(90px);
}

.experience-row.is-visible .experience-visual {
  opacity: 1;
  transform: translateX(0);
}


/* ==========================================
   CARD BASE MOCKUP
========================================== */

.experience-app-card {
  width: 100%;
  max-width: 535px;
  padding: 30px;
  border-radius: 36px;
  background: #FBF9F5;
  border: 1px solid rgba(46,46,46,.07);
  box-shadow: 0 30px 80px rgba(46,46,46,.12);
}

.experience-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.experience-card-header > strong {
  color: var(--anthracite);
  font-size: 28px;
  font-weight: 900;
}

.experience-card-header > span {
  color: var(--primary);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}


/* ==========================================
   MOVIMENTI
========================================== */

.demo-movement {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(46,46,46,.08);
}

.demo-movement:last-child {
  border-bottom: 0;
}

.demo-movement-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  font-size: 25px;
  font-weight: 900;
}

.demo-movement-icon.expense {
  color: #B45143;
  background: rgba(180,81,67,.09);
}

.demo-movement-icon.income {
  color: #438568;
  background: rgba(67,133,104,.09);
}

.demo-movement-icon.transfer {
  color: #A56F08;
  background: rgba(217,154,26,.13);
}

.demo-movement-info strong {
  display: block;
  color: var(--anthracite);
  font-size: 18px;
}

.demo-movement-info span {
  display: block;
  margin-top: 2px;
  color: #77716A;
  font-size: 13px;
}

.demo-movement-info small {
  display: block;
  margin-top: 4px;
  color: #A29B94;
  font-size: 12px;
}

.demo-expense,
.demo-income,
.demo-transfer {
  font-size: 17px;
  white-space: nowrap;
}

.demo-expense {
  color: #B45143;
}

.demo-income {
  color: #438568;
}

.demo-transfer {
  color: var(--anthracite);
}


/* ==========================================
   AGENDA
========================================== */

.demo-agenda-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(46,46,46,.08);
}

.demo-agenda-item:last-child {
  border-bottom: 0;
}

.demo-calendar-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(217,154,26,.09);
  color: var(--primary);
  font-size: 20px;
}

.demo-calendar-icon.green-icon {
  color: #6E9B87;
  background: rgba(67,133,104,.08);
}

.demo-agenda-item strong {
  display: block;
  color: var(--anthracite);
  font-size: 18px;
}

.demo-agenda-item span {
  display: block;
  margin: 2px 0 7px;
  color: #77716A;
  font-size: 13px;
}

.demo-days {
  display: inline-block !important;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(67,133,104,.10);
  color: #438568 !important;
  font-size: 11px !important;
  font-weight: 800;
}

.demo-days.urgent {
  background: rgba(217,154,26,.11);
  color: var(--primary-dark) !important;
}


/* ==========================================
   SPESE PER CATEGORIA
========================================== */

.category-showcase {
  width: 100%;
  max-width: 560px;
  padding: 28px;
}

.category-showcase .experience-card-header {
  margin-bottom: 22px;
}

.demo-category-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 24px;
  align-items: center;

  margin-bottom: 18px;
  padding: 20px;

  border-radius: 25px;
  background: #FCFAF7;
}

.demo-category-card:last-child {
  margin-bottom: 0;
}

.category-casa {
  border: 1px solid rgba(67,133,104,.14);
}

.category-spesa {
  border: 1px solid rgba(180,81,67,.14);
}

.category-trasporti {
  border: 1px solid rgba(189,164,119,.18);
}

.demo-category-ring {
  position: relative;

  width: 122px;
  height: 122px;

  margin: auto;

  overflow: hidden;
  border-radius: 50%;
}

.demo-category-ring::after {
  content: "";

  position: absolute;
  inset: 25px;

  border-radius: 50%;
  background: #FCFAF7;
}

.demo-category-ring > div {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.demo-category-ring strong {
  display: block;

  max-width: 72px;

  color: var(--anthracite);

  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.2px;

  text-align: center;
  white-space: nowrap;
}

.demo-category-ring span {
  display: block;

  margin-top: 7px;

  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.category-casa .demo-category-ring span {
  color: #438568;
}

.category-spesa .demo-category-ring span {
  color: #B45143;
}

.category-trasporti .demo-category-ring span {
  color: #BDA477;
}

.demo-category-info {
  min-width: 0;
}

.demo-category-info > strong {
  display: block;

  margin: 0;

  color: var(--anthracite);

  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
}

.demo-category-info > span {
  display: block;

  margin: 5px 0 14px;

  color: var(--text-soft);

  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.demo-subcategory {
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;

  margin-top: 9px;

  color: var(--anthracite);

  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}

.demo-subcategory i {
  width: 8px;
  height: 8px;

  border-radius: 50%;
}

.demo-subcategory span {
  min-width: 0;
}

.demo-subcategory b {
  margin-left: 8px;

  font-size: 13px;
  font-weight: 900;

  white-space: nowrap;
}


/* ==========================================
   SCADENZE
========================================== */

.deadlines-showcase {
  max-width: 530px;
}

.demo-deadline-card {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
  padding: 21px;
  border-radius: 25px;
  background: #FCFAF7;
  border: 1px solid rgba(46,46,46,.06);
}

.demo-deadline-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(217,154,26,.17);
  color: #A66C22;
  font-size: 23px;
}

.demo-deadline-main strong {
  display: block;
  color: var(--anthracite);
  font-size: 19px;
}

.demo-deadline-main span {
  display: block;
  margin: 3px 0 8px;
  color: var(--text-soft);
  font-size: 13px;
}

.demo-deadline-main small {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(67,133,104,.10);
  color: #438568;
  font-size: 11px;
  font-weight: 850;
}

.demo-deadline-card > b {
  color: var(--anthracite);
  font-size: 19px;
  white-space: nowrap;
}

.demo-paid-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
  padding-top: 22px;
  border-top: 1px solid rgba(46,46,46,.08);
}

.demo-paid-divider span {
  color: #438568;
  font-size: 20px;
}

.demo-paid-divider strong {
  color: var(--anthracite);
  font-size: 22px;
}

.demo-empty-paid {
  padding: 20px 0 4px;
  text-align: center;
  color: var(--text-soft);
  font-size: 13px;
}


/* ==========================================
   OBIETTIVI
========================================== */

.goal-showcase {
  max-width: 555px;
}

.demo-goal-main {
  display: grid;
  grid-template-columns: 175px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.demo-goal-ring {
  position: relative;
  width: 165px;
  height: 165px;
  margin: 8px auto 0;
  border-radius: 50%;
  background:
    conic-gradient(
      #B6CFB7 0 var(--goal-pct),
      #E7EEE6 var(--goal-pct) 100%
    );
}

.demo-goal-ring::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: #FBF9F5;
}

.demo-goal-ring > div {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.demo-goal-ring strong {
  color: var(--anthracite);
  font-size: 40px;
  line-height: 1;
}

.demo-goal-ring span {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 12px;
}

.demo-goal-title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.demo-goal-title > span {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(67,133,104,.08);
  color: #438568;
  font-size: 25px;
}

.demo-goal-title strong {
  display: block;
  color: var(--anthracite);
  font-size: 25px;
}

.demo-goal-title small {
  display: inline-block;
  margin-top: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(67,133,104,.10);
  color: #438568;
  font-size: 10px;
  font-weight: 850;
}

.demo-goal-separator {
  height: 1px;
  margin: 16px 0;
  background: rgba(46,46,46,.08);
}

.demo-goal-money {
  display: block;
  margin-bottom: 12px;
  color: var(--anthracite);
  font-size: 20px;
}

.demo-goal-detail {
  display: block;
  margin: 8px 0;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 650;
}

.demo-goal-missing {
  display: block;
  margin-top: 13px;
  color: var(--anthracite);
  font-size: 17px;
}

.demo-goal-saving {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 15px;
  align-items: center;
  margin-top: 25px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(67,133,104,.06);
  border: 1px solid rgba(67,133,104,.14);
}

.demo-goal-saving > span {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(67,133,104,.08);
  color: #438568;
  font-size: 22px;
}

.demo-goal-saving strong {
  display: block;
  color: #438568;
  font-size: 16px;
}

.demo-goal-saving small {
  display: block;
  margin-top: 5px;
  color: var(--text-soft);
  font-size: 13px;
}

.demo-goal-button {
  margin-top: 22px;
  padding: 15px 18px;
  border-radius: 17px;
  background: var(--primary);
  color: var(--anthracite);
  text-align: center;
  font-size: 15px;
  font-weight: 850;
}


/* ==========================================
   BILANORA AI - SEZIONE IN EVIDENZA
========================================== */

.experience-ai-panel {
  padding: 55px;
  border-radius: 42px;
  background:
    linear-gradient(
      145deg,
      rgba(217,154,26,.18),
      rgba(247,244,239,.94)
    );
  border: 1px solid rgba(217,154,26,.22);
  box-shadow: 0 30px 90px rgba(217,154,26,.10);
}

.experience-ai-panel .experience-text {
  padding-left: 5px;
}

.ai-capability-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}

.ai-capability-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(217,154,26,.13);
  border: 1px solid rgba(217,154,26,.20);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 850;
}

.ai-demo-phone {
  width: 100%;
  max-width: 470px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--background);
  border: 1px solid rgba(46,46,46,.08);
  box-shadow: 0 28px 70px rgba(46,46,46,.15);
}

.ai-demo-header {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 20px;
  background: #0D0D0F;
  color: white;
  border-bottom: 1px solid rgba(217,154,26,.35);
}

.ai-demo-header > span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #18181A;
  color: var(--primary);
  font-size: 22px;
}

.ai-demo-header strong {
  display: block;
  font-size: 20px;
}

.ai-demo-header small {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.55);
  font-size: 10px;
}

.ai-user-message {
  margin: 18px 18px 12px;
  padding: 16px 18px;
  border-radius: 20px 20px 7px 20px;
  background: var(--primary);
  color: var(--anthracite);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.ai-assistant-message {
  max-width: 86%;
  margin: 0 18px 14px;
  padding: 13px 15px;
  border-radius: 18px 18px 18px 7px;
  background: #FBF9F5;
  border: 1px solid rgba(46,46,46,.06);
  color: var(--anthracite);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.ai-preview-card {
  margin: 0 18px 17px;
  padding: 18px;
  border-radius: 23px;
  background: #FBF9F5;
  border: 1px solid rgba(217,154,26,.30);
}

.ai-preview-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
}

.ai-preview-title > span {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(217,154,26,.15);
  font-size: 19px;
}

.ai-preview-title strong {
  display: block;
  color: var(--anthracite);
  font-size: 17px;
}

.ai-preview-title small {
  display: block;
  margin-top: 3px;
  color: var(--text-soft);
  font-size: 10px;
}

.ai-detected-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 9px;
  padding: 11px 13px;
  border-radius: 14px;
  background: #F6F3ED;
  border: 1px solid rgba(46,46,46,.06);
  color: var(--anthracite);
  font-size: 12px;
  font-weight: 750;
}

.ai-preview-summary {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(46,46,46,.08);
}

.ai-preview-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
  font-size: 11px;
}

.ai-preview-summary span {
  color: var(--text-soft);
}

.ai-preview-summary strong {
  color: var(--anthracite);
}

.ai-confirm-button {
  margin-top: 17px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--primary);
  color: var(--anthracite);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.ai-demo-input {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 0 18px 18px;
  padding: 11px 12px;
  border-radius: 18px;
  background: #FBF9F5;
  color: var(--text-soft);
  font-size: 11px;
}

.ai-demo-input b {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--anthracite);
  font-size: 17px;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1050px) {

  .experience-row,
  .experience-row.experience-reverse {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .experience-reverse .experience-text {
    order: 2;
  }

  .experience-reverse .experience-visual {
    order: 1;
  }

  .experience-text {
    text-align: center;
  }

  .experience-text h3,
  .experience-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .experience-benefits {
    align-items: center;
  }

  .ai-capability-pills {
    justify-content: center;
  }

  .experience-ai-panel {
    padding: 42px 30px;
  }

}

@media (max-width: 650px) {

  .app-experience {
    padding: 80px 0;
  }

  .experience-heading {
    margin-bottom: 65px;
  }

  .experience-row {
    margin-bottom: 90px;
  }

  .experience-app-card {
    padding: 20px;
    border-radius: 27px;
  }

  .demo-movement {
    grid-template-columns: 46px 1fr;
  }

  .demo-movement-icon {
    width: 43px;
    height: 43px;
  }

  .demo-expense,
  .demo-income,
  .demo-transfer {
    grid-column: 2;
    justify-self: start;
  }

  .category-showcase {
    padding: 20px;
  }

  .demo-category-card {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 16px;
    padding: 17px;
    text-align: left;
  }

  .demo-category-ring {
    width: 102px;
    height: 102px;
  }

  .demo-category-ring::after {
    inset: 21px;
  }

  .demo-category-ring strong {
    max-width: 62px;
    font-size: 11px;
  }

  .demo-category-ring span {
    margin-top: 6px;
    font-size: 10px;
  }

  .demo-category-info > strong {
    font-size: 20px;
  }

  .demo-category-info > span,
  .demo-subcategory,
  .demo-subcategory b {
    font-size: 11px;
  }

  .demo-subcategory {
    text-align: left;
  }

  .demo-deadline-card {
    grid-template-columns: 55px 1fr;
  }

  .demo-deadline-card > b {
    grid-column: 2;
  }

  .demo-goal-main {
    grid-template-columns: 1fr;
  }

  .demo-goal-info {
    text-align: left;
  }

  .experience-ai-panel {
    padding: 28px 15px;
    border-radius: 30px;
  }

}

@media (prefers-reduced-motion: reduce) {

  .experience-visual {
    opacity: 1;
    transform: none !important;
    transition: none;
  }

}


/* ==========================================
   HERO - CTA PROMO FORTE
========================================== */

.hero-launch-card {
  position: relative;

  max-width: 700px;

  margin:
    0 0
    28px;

  padding:
    22px;

  overflow: hidden;

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      #121214 0%,
      #1B1B1E 58%,
      #101011 100%
    );

  border:
    1px solid rgba(217,154,26,.46);

  box-shadow:
    0 24px 55px rgba(46,46,46,.17),
    0 0 0 1px rgba(255,255,255,.015) inset;
}

.hero-launch-card::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  top: -170px;
  right: -80px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(217,154,26,.32),
      rgba(217,154,26,0) 70%
    );

  pointer-events: none;
}

.hero-launch-card-top {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;
}

.hero-launch-badge {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  padding:
    7px 10px;

  border-radius: 999px;

  border:
    1px solid rgba(217,154,26,.35);

  background:
    rgba(217,154,26,.10);

  color: #F0BD50;

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 1px;

  white-space: nowrap;
}

.hero-launch-badge i {
  width: 8px;
  height: 8px;

  display: block;

  border-radius: 50%;

  background: var(--primary);

  box-shadow:
    0 0 0 5px
    rgba(217,154,26,.12);
}

.hero-launch-offer {
  min-width: 0;

  text-align: right;
}

.hero-launch-offer strong {
  display: block;

  color: #F0BD50;

  font-size: 28px;
  font-weight: 950;

  line-height: .95;

  letter-spacing: -1px;
}

.hero-launch-offer span {
  display: block;

  margin-top: 5px;

  color:
    rgba(255,255,255,.62);

  font-size: 11px;
  font-weight: 700;
}

.hero-launch-copy {
  position: relative;
  z-index: 2;

  margin:
    18px 0
    16px;

  color:
    rgba(255,255,255,.72);

  font-size: 13px;
  line-height: 1.55;
}

.hero-launch-copy strong {
  color: white;
}

.hero-launch-examples {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    repeat(3, minmax(0,1fr));

  gap: 8px;
}

.hero-launch-example {
  min-width: 0;

  padding:
    11px 12px;

  border-radius: 14px;

  background:
    rgba(255,255,255,.055);

  border:
    1px solid rgba(255,255,255,.09);
}

.hero-launch-example small {
  display: block;

  color:
    rgba(255,255,255,.43);

  font-size: 8px;
  line-height: 1.2;
}


.hero-launch-example small:nth-of-type(2) {
  color: #89BFA5;
  font-weight: 850;
}

.hero-launch-example strong,
.hero-launch-example b {
  display: block;

  margin-top: 3px;

  color: white;

  font-size: 10px;
  font-weight: 900;

  line-height: 1.15;

  white-space: nowrap;
}

.hero-launch-example b {
  color: #F0BD50;
}

.hero-launch-example span {
  display: block;

  margin:
    5px 0;

  color: var(--primary);

  font-size: 10px;
  font-weight: 900;
}

.hero-launch-details {
  position: relative;
  z-index: 2;

  width: fit-content;

  margin-top: 14px;

  display: inline-flex;
  align-items: center;

  gap: 7px;

  color:
    rgba(255,255,255,.74);

  font-size: 10px;
  font-weight: 800;
}

.hero-launch-details span {
  color: #F0BD50;
  font-size: 14px;
}


/* ==========================================
   CTA PROMO LANCIO - GRANDE
========================================== */

.launch-cta-section {
  padding:
    10px 0
    125px;
}

.launch-cta {
  position: relative;

  overflow: hidden;

  padding:
    78px 72px
    64px;

  border-radius: 42px;

  background:
    linear-gradient(
      145deg,
      #111113 0%,
      #171719 58%,
      #0C0C0D 100%
    );

  border:
    1px solid rgba(217,154,26,.42);

  box-shadow:
    0 38px 100px rgba(24,24,24,.22);

  color: white;
}

.launch-cta::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      120deg,
      rgba(217,154,26,.08),
      transparent 36%,
      transparent 68%,
      rgba(217,154,26,.05)
    );
}

.launch-cta-glow {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(10px);
}

.launch-cta-glow-one {
  width: 430px;
  height: 430px;

  top: -250px;
  right: -120px;

  background:
    radial-gradient(
      circle,
      rgba(217,154,26,.30),
      rgba(217,154,26,0) 68%
    );
}

.launch-cta-glow-two {
  width: 330px;
  height: 330px;

  left: -160px;
  bottom: -190px;

  background:
    radial-gradient(
      circle,
      rgba(217,154,26,.17),
      rgba(217,154,26,0) 70%
    );
}

.launch-cta-head {
  position: relative;
  z-index: 2;

  max-width: 840px;

  margin: 0 auto 48px;

  text-align: center;
}

.launch-cta-badge {
  display: inline-flex;
  align-items: center;

  gap: 9px;

  margin-bottom: 22px;

  padding:
    8px 13px;

  border-radius: 999px;

  border:
    1px solid rgba(217,154,26,.33);

  background:
    rgba(217,154,26,.10);

  color: #F0BD50;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 1.1px;
}

.launch-cta-badge i {
  width: 8px;
  height: 8px;

  display: block;

  border-radius: 50%;

  background: var(--primary);

  box-shadow:
    0 0 0 5px
    rgba(217,154,26,.12);
}

.launch-cta-head h2 {
  margin: 0;

  color: white;

  font-size:
    clamp(42px, 5vw, 66px);

  line-height: 1.02;

  letter-spacing: -2.7px;
}

.launch-cta-head h2 span {
  color: #E5A72D;
}

.launch-cta-head p {
  max-width: 760px;

  margin:
    24px auto 0;

  color:
    rgba(255,255,255,.67);

  font-size: 17px;
  line-height: 1.75;
}

.launch-cta-head p strong {
  color: white;
}


.launch-example-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    repeat(3, minmax(0,1fr));

  gap: 18px;
}

.launch-example-card {
  position: relative;

  min-width: 0;

  padding: 25px;

  border-radius: 25px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.075),
      rgba(255,255,255,.035)
    );

  border:
    1px solid rgba(255,255,255,.10);

  box-shadow:
    inset 0 1px 0
    rgba(255,255,255,.04);
}

.launch-example-card.featured {
  border-color:
    rgba(217,154,26,.46);

  background:
    linear-gradient(
      145deg,
      rgba(217,154,26,.14),
      rgba(255,255,255,.035)
    );

  transform: translateY(-8px);
}

.launch-example-number {
  position: absolute;

  top: 18px;
  right: 20px;

  color:
    rgba(255,255,255,.10);

  font-size: 34px;
  font-weight: 950;

  line-height: 1;
}

.launch-example-label {
  display: block;

  margin-bottom: 24px;

  color: #E5A72D;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 1.1px;
}

.launch-example-date small,
.launch-example-free small {
  display: block;

  margin-bottom: 4px;

  color:
    rgba(255,255,255,.49);

  font-size: 10px;
  font-weight: 650;
}

.launch-example-date strong,
.launch-example-free strong {
  display: block;

  color: white;

  font-size: 21px;
  font-weight: 900;

  line-height: 1.15;
}

.launch-example-free strong {
  color: #F0BD50;
}

.launch-example-arrow {
  margin:
    16px 0;

  color: var(--primary);

  font-size: 19px;
  font-weight: 900;
}

.launch-example-duration {
  width: fit-content;

  margin-top: 19px;

  display: inline-block;

  padding:
    6px 10px;

  border-radius: 999px;

  background:
    rgba(67,133,104,.16);

  color: #89BFA5;

  font-size: 10px;
  font-weight: 850;
}


.launch-cta-bottom {
  position: relative;
  z-index: 2;

  margin-top: 35px;
  padding-top: 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  border-top:
    1px solid rgba(255,255,255,.09);
}

.launch-cta-bottom-copy strong {
  display: block;

  margin-bottom: 4px;

  color: white;

  font-size: 17px;
  font-weight: 900;
}

.launch-cta-bottom-copy span {
  display: block;

  max-width: 570px;

  color:
    rgba(255,255,255,.53);

  font-size: 12px;
  line-height: 1.55;
}

.launch-cta-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  flex: 0 0 auto;
}

.launch-cta-primary {
  background: var(--primary);

  color: var(--anthracite);

  box-shadow:
    0 14px 32px
    rgba(217,154,26,.20);
}

.launch-cta-secondary {
  background:
    rgba(255,255,255,.06);

  border:
    1px solid rgba(255,255,255,.16);

  color: white;
}


/* ==========================================
   CTA PROMO - RESPONSIVE
========================================== */

@media (max-width: 1050px) {

  .hero-launch-card {
    max-width: 100%;
  }

.launch-cta {
    padding:
      62px 44px
      52px;
  }

  .launch-example-grid {
    grid-template-columns: 1fr;
  }

  .launch-example-card.featured {
    transform: none;
  }

  .launch-cta-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

}


@media (max-width: 760px) {

  .hero-launch-card {
    padding: 18px;
    border-radius: 20px;
  }

  .hero-launch-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .hero-launch-offer {
    text-align: left;
  }

  .hero-launch-offer strong {
    font-size: 25px;
  }

  .hero-launch-examples {
    grid-template-columns: 1fr;
  }

  .hero-launch-example {
    display: grid;
    grid-template-columns: minmax(0, .9fr) 18px minmax(0, 1.25fr);
    grid-template-areas:
      "register-label arrow bonus-label"
      "register-date  arrow bonus-date";
    gap: 4px 8px;
    align-items: center;
  }

  .hero-launch-example small,
  .hero-launch-example strong,
  .hero-launch-example b,
  .hero-launch-example span {
    display: block;
    margin: 0;
    min-width: 0;
  }

  .hero-launch-example small:first-of-type {
    grid-area: register-label;
  }

  .hero-launch-example strong {
    grid-area: register-date;
    justify-self: start;
    white-space: nowrap;
  }

  .hero-launch-example span {
    grid-area: arrow;
    justify-self: center;
    align-self: center;
    margin: 0;
  }

  .hero-launch-example small:nth-of-type(2) {
    grid-area: bonus-label;
    line-height: 1.25;
  }

  .hero-launch-example b {
    grid-area: bonus-date;
    justify-self: start;
    white-space: nowrap;
  }

  .launch-cta-section {
    padding-bottom: 90px;
  }

  .launch-cta {
    padding:
      48px 25px
      35px;

    border-radius: 30px;
  }

  .launch-cta-head {
    margin-bottom: 35px;
  }

  .launch-cta-head h2 {
    letter-spacing: -1.8px;
  }

  .launch-cta-actions {
    width: 100%;
  }

  .launch-cta-actions .button {
    width: 100%;
  }

}

/* ==========================================================
   VITA REALE / EMOZIONE / USO CONCRETO
========================================================== */
.real-life-section {position:relative;overflow:hidden;padding:120px 0 110px;background:linear-gradient(180deg,#F7F2EA 0%,#F3EEE6 46%,#F6F1EA 100%)}
.real-life-section::before,.real-life-section::after{content:"";position:absolute;border-radius:50%;pointer-events:none}
.real-life-section::before{width:440px;height:440px;top:-180px;left:-190px;background:radial-gradient(circle,rgba(217,154,26,.12),rgba(217,154,26,0) 70%)}
.real-life-section::after{width:520px;height:520px;right:-260px;top:280px;background:radial-gradient(circle,rgba(67,133,104,.075),rgba(67,133,104,0) 70%)}
.real-life-heading{position:relative;z-index:2;max-width:790px;margin:0 auto 54px;text-align:center}
.real-life-heading h2{margin:5px 0 16px;font-size:clamp(42px,5vw,66px);line-height:1.02;letter-spacing:-2.7px}
.real-life-heading p{max-width:700px;margin:0 auto;color:var(--text-soft);font-size:17px;line-height:1.75}
.real-life-problems{position:relative;z-index:2;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.real-life-card{position:relative;min-height:310px;padding:30px;overflow:hidden;border-radius:28px;background:rgba(255,255,255,.63);border:1px solid rgba(46,46,46,.085);box-shadow:0 24px 60px rgba(46,46,46,.055);transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease}
.real-life-card:hover{transform:translateY(-6px);border-color:rgba(217,154,26,.34);box-shadow:0 30px 70px rgba(46,46,46,.09)}
.real-life-icon{width:54px;height:54px;display:grid;place-items:center;margin-bottom:24px;border-radius:17px;color:var(--primary-dark);background:rgba(217,154,26,.13);border:1px solid rgba(217,154,26,.18)}
.real-life-icon svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.real-life-kicker{color:var(--primary-dark);font-size:10px;font-weight:900;letter-spacing:1.35px}
.real-life-card h3{max-width:290px;margin:9px 0 12px;font-size:23px;line-height:1.12;letter-spacing:-.5px}
.real-life-card p{margin:0;color:var(--text-soft);font-size:14px;line-height:1.65}
.real-life-thought{position:absolute;left:30px;right:30px;bottom:24px;padding-top:15px;border-top:1px solid rgba(46,46,46,.075);color:rgba(46,46,46,.68);font-size:12px;font-weight:700;font-style:italic}
.before-after{position:relative;z-index:2;margin-top:88px}
.before-after-title{max-width:760px;margin:0 auto 30px;text-align:center}
.before-after-title h3{margin:5px 0 0;font-size:clamp(30px,4vw,46px);line-height:1.08;letter-spacing:-1.6px}
.before-after-list{display:grid;gap:12px;max-width:900px;margin:0 auto}
.before-after-row{display:grid;grid-template-columns:1fr 56px 1fr;align-items:stretch}
.before-side,.after-side{min-height:102px;display:flex;flex-direction:column;justify-content:center;padding:20px 24px;border-radius:20px}
.before-side{background:rgba(255,255,255,.52);border:1px solid rgba(46,46,46,.08)}
.after-side{background:linear-gradient(145deg,rgba(217,154,26,.12),rgba(255,255,255,.62));border:1px solid rgba(217,154,26,.32)}
.before-after-label{display:block;margin-bottom:5px;color:var(--text-soft);font-size:9px;font-weight:900;letter-spacing:1.1px}
.after-side .before-after-label{color:var(--primary-dark)}
.before-side strong,.after-side strong{font-size:16px;line-height:1.35}
.before-side strong{color:rgba(46,46,46,.66)}
.before-after-arrow{width:40px;height:40px;align-self:center;justify-self:center;display:grid;place-items:center;border-radius:50%;background:var(--sand);border:1px solid rgba(46,46,46,.10);color:var(--primary-dark);font-size:18px;font-weight:900;box-shadow:0 10px 25px rgba(46,46,46,.07)}
.month-story{position:relative;z-index:2;margin-top:105px}
.month-story-heading{max-width:760px;margin:0 auto 56px;text-align:center}
.month-story-heading h2{margin:5px 0 14px;font-size:clamp(38px,4.7vw,58px);line-height:1.04;letter-spacing:-2.2px}
.month-story-heading p{margin:0;color:var(--text-soft);font-size:16px}
.month-timeline{position:relative;max-width:1030px;margin:0 auto;display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}
.month-timeline::before{content:"";position:absolute;left:4%;right:4%;top:45px;height:2px;background:linear-gradient(90deg,rgba(217,154,26,.15),rgba(217,154,26,.75),rgba(217,154,26,.15))}
.month-event{position:relative;min-width:0;padding-top:82px}
.month-date{position:absolute;top:0;left:50%;transform:translateX(-50%);color:var(--primary-dark);font-size:10px;font-weight:900;letter-spacing:1.1px}
.month-dot{position:absolute;top:36px;left:50%;width:18px;height:18px;transform:translateX(-50%);border-radius:50%;background:var(--background);border:5px solid var(--primary);box-shadow:0 0 0 5px rgba(217,154,26,.11)}
.month-event-card{height:100%;padding:20px 18px;border-radius:22px;background:rgba(255,255,255,.66);border:1px solid rgba(46,46,46,.08);box-shadow:0 20px 45px rgba(46,46,46,.055)}
.month-event-card small{display:block;margin-bottom:8px;color:var(--primary-dark);font-size:9px;font-weight:900;letter-spacing:1.1px}
.month-event-card h3{margin:0 0 6px;font-size:18px;line-height:1.15}
.month-event-card>strong{display:block;margin-bottom:4px;font-size:20px;font-weight:900}
.month-event-card>span{color:var(--text-soft);font-size:11px;font-weight:700}
.month-event-card p{margin:14px 0 0;color:var(--text-soft);font-size:12px;line-height:1.55}
.month-positive{color:#438568}.month-negative{color:#B45143}
.month-chip{width:fit-content;display:inline-flex!important;margin-top:2px;padding:5px 8px;border-radius:999px;background:rgba(67,133,104,.11);color:#438568!important}
.month-event-card-final{background:linear-gradient(145deg,#181818,#242424);color:white;border-color:rgba(217,154,26,.32)}
.month-event-card-final small{color:#F0BD50}.month-event-card-final p,.month-event-card-final>span{color:rgba(255,255,255,.62)}
.month-summary-grid{display:grid;gap:7px;margin-top:13px}.month-summary-grid span{color:rgba(255,255,255,.64);font-size:10px}.month-summary-grid b{color:white}
.ready-categories{position:relative;z-index:2;margin-top:92px;padding:38px 42px;display:grid;grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);align-items:center;gap:48px;border-radius:30px;background:rgba(255,255,255,.60);border:1px solid rgba(46,46,46,.08);box-shadow:0 22px 60px rgba(46,46,46,.055)}
.ready-categories-copy h2{margin:5px 0 12px;font-size:clamp(30px,4vw,44px);line-height:1.06;letter-spacing:-1.6px}.ready-categories-copy p{margin:0;color:var(--text-soft);font-size:14px;line-height:1.7}
.ready-category-pills{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:10px}.ready-category-pills span{display:inline-flex;align-items:center;gap:7px;padding:10px 14px;border-radius:999px;background:rgba(217,154,26,.075);border:1px solid rgba(217,154,26,.18);color:var(--anthracite);font-size:12px;font-weight:800}.ready-category-pills span:nth-child(2),.ready-category-pills span:nth-child(5){background:rgba(67,133,104,.075);border-color:rgba(67,133,104,.16)}
.real-life-closing{position:relative;z-index:2;max-width:850px;margin:46px auto 0;text-align:center}.real-life-closing strong{display:block;font-size:21px;font-weight:900}.real-life-closing span{display:block;margin-top:4px;color:var(--text-soft);font-size:14px}
/* BILANORA AI - COME FUNZIONA */
.ai-how-section{position:relative;padding:115px 0 120px;overflow:hidden;background:linear-gradient(180deg,#F3EFE8 0%,#F8F4EE 100%)}
.ai-how-section::before{content:"";position:absolute;width:620px;height:620px;right:-270px;top:-270px;border-radius:50%;background:radial-gradient(circle,rgba(217,154,26,.13),rgba(217,154,26,0) 70%)}
.ai-how-heading{position:relative;z-index:2;max-width:820px;margin:0 auto 52px;text-align:center}.ai-how-heading h2{margin:5px 0 16px;font-size:clamp(42px,5vw,64px);line-height:1.02;letter-spacing:-2.6px}.ai-how-heading h2 span{color:var(--primary-dark)}.ai-how-heading p{max-width:760px;margin:0 auto;color:var(--text-soft);font-size:16px;line-height:1.75}
.ai-how-grid{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);align-items:center;gap:70px}
.ai-how-demo{overflow:hidden;border-radius:34px;background:#F8F3EB;border:1px solid rgba(217,154,26,.28);box-shadow:0 35px 90px rgba(46,46,46,.13)}
.ai-demo-topbar{min-height:92px;display:grid;grid-template-columns:44px 1fr 44px;align-items:center;gap:12px;padding:18px 20px;background:#101014;color:white;border-bottom:1px solid rgba(217,154,26,.42)}
.ai-demo-topbar strong{display:block;font-size:18px;font-weight:900}.ai-demo-topbar span{display:block;margin-top:1px;color:rgba(255,255,255,.52);font-size:9px}.ai-demo-back,.ai-demo-spark{width:42px;height:42px;display:grid;place-items:center;border-radius:13px;background:rgba(255,255,255,.055);color:#F0BD50;font-size:18px;font-weight:900}
.ai-demo-chat{margin:24px 24px 13px;padding:16px 18px;border-radius:18px 18px 7px 18px;background:#E3A116;color:#2E2E2E;font-size:14px;font-weight:800;line-height:1.45}.ai-demo-answer{margin:0 24px 18px;padding:14px 16px;border-radius:16px 16px 16px 7px;background:white;border:1px solid rgba(46,46,46,.08);color:var(--anthracite);font-size:12px;font-weight:750}
.ai-demo-preview{margin:0 24px 24px;padding:20px;border-radius:24px;background:rgba(255,255,255,.68);border:1px solid rgba(217,154,26,.26)}.ai-demo-preview-title{display:flex;align-items:center;gap:12px;margin-bottom:15px}.ai-demo-preview-title>span{width:38px;height:38px;display:grid;place-items:center;border-radius:12px;background:rgba(217,154,26,.14);color:var(--primary-dark);font-weight:900}.ai-demo-preview-title strong{display:block;font-size:14px}.ai-demo-preview-title small{display:block;margin-top:2px;color:var(--text-soft);font-size:9px}
.ai-demo-row{display:flex;align-items:center;justify-content:space-between;gap:15px;padding:11px 12px;margin-top:7px;border-radius:13px;background:rgba(246,241,234,.85);border:1px solid rgba(46,46,46,.07);font-size:11px}.ai-demo-row strong{white-space:nowrap}.ai-demo-summary{display:grid;grid-template-columns:1fr auto;gap:6px 16px;margin-top:15px;color:var(--text-soft);font-size:10px}.ai-demo-summary strong{color:var(--anthracite)}.ai-demo-confirm{margin-top:17px;padding:12px 14px;border-radius:13px;background:var(--primary);color:var(--anthracite);text-align:center;font-size:11px;font-weight:900}
.ai-how-steps{display:grid;gap:13px}.ai-how-step{display:grid;grid-template-columns:64px 1fr;gap:20px;padding:23px 24px;border-radius:22px;background:rgba(255,255,255,.60);border:1px solid rgba(46,46,46,.08);transition:transform .25s ease,border-color .25s ease}.ai-how-step:hover{transform:translateX(5px);border-color:rgba(217,154,26,.30)}.ai-step-number{color:rgba(217,154,26,.42);font-size:33px;font-weight:950;line-height:1}.ai-how-step small{display:block;margin-bottom:4px;color:var(--primary-dark);font-size:9px;font-weight:900;letter-spacing:1.05px}.ai-how-step h3{margin:0 0 7px;font-size:23px;line-height:1.1}.ai-how-step p{margin:0;color:var(--text-soft);font-size:13px;line-height:1.6}
.ai-how-note{display:grid;grid-template-columns:46px 1fr;gap:15px;margin-top:5px;padding:20px 22px;border-radius:20px;background:linear-gradient(145deg,rgba(217,154,26,.12),rgba(255,255,255,.58));border:1px solid rgba(217,154,26,.24)}.ai-how-note>span{width:42px;height:42px;display:grid;place-items:center;border-radius:50%;background:var(--primary);color:var(--anthracite);font-size:18px}.ai-how-note p{margin:0;color:var(--text-soft);font-size:12px;line-height:1.6}.ai-how-note strong{color:var(--anthracite)}
/* REVEAL */
.story-reveal,.ai-flow-reveal{opacity:0;transform:translateY(26px);transition:opacity .7s ease,transform .7s ease}.story-reveal.is-visible,.ai-flow-reveal.is-visible{opacity:1;transform:translateY(0)}
@media (max-width:1050px){.real-life-problems{grid-template-columns:1fr}.real-life-card{min-height:265px}.month-timeline{grid-template-columns:1fr;gap:14px}.month-timeline::before{left:22px;right:auto;top:0;bottom:0;width:2px;height:auto}.month-event{padding:0 0 0 62px}.month-date{top:6px;left:0;width:46px;transform:none;text-align:center}.month-dot{top:37px;left:14px;transform:none}.ready-categories{grid-template-columns:1fr}.ready-category-pills{justify-content:flex-start}.ai-how-grid{grid-template-columns:1fr;gap:42px}.ai-how-demo{max-width:620px;margin:0 auto;width:100%}}
@media (max-width:760px){.real-life-section{padding:85px 0 80px}.real-life-heading{margin-bottom:36px}.real-life-card{padding:24px}.real-life-thought{left:24px;right:24px}.before-after{margin-top:65px}.before-after-row{grid-template-columns:1fr;gap:7px}.before-after-arrow{width:34px;height:34px;transform:rotate(90deg)}.month-story{margin-top:78px}.ready-categories{margin-top:70px;padding:28px 24px;gap:28px}.ready-category-pills{gap:8px}.ready-category-pills span{padding:9px 11px;font-size:10px}.ai-how-section{padding:85px 0 90px}.ai-demo-chat,.ai-demo-answer,.ai-demo-preview{margin-left:16px;margin-right:16px}.ai-how-step{grid-template-columns:50px 1fr;padding:20px}.ai-step-number{font-size:27px}.ai-how-note{grid-template-columns:1fr}}

/* ==========================================================
   PIANI PREMIUM - V5
========================================================== */

.pricing-section {
  position: relative;

  padding:
    118px 0
    120px;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #EEE8DF 0%,
      #F7F2EA 18%,
      #F7F2EA 82%,
      #EEE8DF 100%
    );

  border-top:
    1px solid rgba(217,154,26,.10);
}

.pricing-section::before {
  content: "";

  position: absolute;

  width: 680px;
  height: 680px;

  top: -350px;
  left: 50%;

  transform: translateX(-50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(217,154,26,.13),
      rgba(217,154,26,0) 68%
    );

  pointer-events: none;
}

.pricing-heading {
  position: relative;
  z-index: 2;

  margin-bottom: 42px;
}

.pricing-promo-box {
  position: relative;
  z-index: 2;

  max-width: 920px;

  margin:
    0 auto
    42px;

  padding: 20px 22px;

  display: grid;
  grid-template-columns:
    52px minmax(0,1fr) minmax(250px,.85fr);

  gap: 18px;
  align-items: center;

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.74),
      rgba(247,242,234,.84)
    );

  border:
    1px solid rgba(217,154,26,.28);

  box-shadow:
    0 18px 50px rgba(46,46,46,.06);
}

.pricing-promo-icon {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 15px;

  background: var(--primary);

  color: var(--anthracite);

  font-size: 20px;
  font-weight: 900;
}

.pricing-promo-copy strong,
.pricing-promo-note strong {
  display: block;

  margin-bottom: 4px;

  color: var(--anthracite);

  font-size: 14px;
  font-weight: 900;
}

.pricing-promo-copy span,
.pricing-promo-note span {
  display: block;

  color: var(--text-soft);

  font-size: 11px;
  line-height: 1.5;
}

.pricing-promo-note {
  padding-left: 18px;

  border-left:
    1px solid rgba(46,46,46,.09);
}

.pricing-promo-note strong {
  color: #438568;
}


.pricing-grid-premium {
  position: relative;
  z-index: 2;

  grid-template-columns:
    repeat(2, minmax(0, 500px));

  align-items: stretch;

  gap: 28px;
}

.price-card-premium {
  display: flex;
  flex-direction: column;

  padding: 34px;

  background:
    rgba(255,255,255,.68);

  border:
    1px solid rgba(46,46,46,.10);

  box-shadow:
    0 28px 70px rgba(46,46,46,.07);
}

.price-card-duo {
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.84),
      rgba(217,154,26,.065)
    );
}

.price-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 20px;
}

.price-account-pill {
  display: inline-flex;

  padding:
    7px 10px;

  border-radius: 999px;

  background:
    rgba(46,46,46,.055);

  color: var(--anthracite);

  font-size: 10px;
  font-weight: 900;
}

.price-account-pill-duo {
  background:
    rgba(217,154,26,.15);

  color: var(--primary-dark);

  border:
    1px solid rgba(217,154,26,.20);
}

.price-card-lead {
  min-height: 54px;

  margin:
    12px 0
    24px;

  color: var(--text-soft);

  font-size: 14px;
  line-height: 1.6;
}

.price-card-lead strong {
  color: var(--anthracite);
}

.price-feature-group {
  margin-top: 2px;
}

.price-feature-title {
  display: block;

  margin-bottom: 10px;

  color: var(--primary-dark);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 1.15px;
}

.price-feature-list {
  margin:
    0 0
    22px !important;
}

.price-feature-list li {
  display: grid;
  grid-template-columns:
    24px 1fr;

  gap: 9px;

  padding:
    10px 0 !important;

  border-bottom:
    1px solid rgba(46,46,46,.075) !important;
}

.price-feature-list li > span {
  color: #438568;

  font-weight: 900;
}

.price-feature-list li > div strong {
  display: block;

  color: var(--anthracite);

  font-size: 12px;
  font-weight: 850;

  line-height: 1.3;
}

.price-feature-list li > div small {
  display: block;

  margin-top: 3px;

  color: var(--text-soft);

  font-size: 10px;
  line-height: 1.45;
}

.price-feature-list .price-feature-ai > span {
  color: var(--primary-dark);
}

.price-feature-list .price-feature-ai > div strong {
  color: var(--primary-dark);
}


.price-best-for {
  margin:
    auto 0
    18px;

  padding:
    15px 16px;

  border-radius: 16px;

  background:
    rgba(67,133,104,.075);

  border:
    1px solid rgba(67,133,104,.13);
}

.price-best-for strong {
  display: block;

  margin-bottom: 3px;

  color: #438568;

  font-size: 10px;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: .8px;
}

.price-best-for span {
  color: var(--text-soft);

  font-size: 11px;
  line-height: 1.45;
}


/* Duo */

.duo-accounts-visual {
  display: grid;
  grid-template-columns:
    1fr 28px 1fr;

  gap: 8px;
  align-items: center;

  margin:
    0 0
    15px;
}

.duo-account-card {
  min-width: 0;

  display: grid;
  grid-template-columns:
    38px 1fr;

  gap: 10px;
  align-items: center;

  padding:
    12px;

  border-radius: 16px;

  background:
    rgba(255,255,255,.58);

  border:
    1px solid rgba(217,154,26,.20);
}

.duo-avatar {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #F0C260,
      #D99A1A
    );

  color: #2E2E2E;

  font-size: 12px;
  font-weight: 900;
}

.duo-account-card strong {
  display: block;

  font-size: 11px;
  font-weight: 900;
}

.duo-account-card small {
  display: block;

  margin-top: 2px;

  color: var(--text-soft);

  font-size: 8px;
  line-height: 1.35;
}

.duo-plus {
  justify-self: center;

  color: var(--primary-dark);

  font-size: 18px;
  font-weight: 900;
}

.duo-separation-note {
  display: grid;
  grid-template-columns:
    32px 1fr;

  gap: 10px;

  margin-bottom: 22px;

  padding:
    14px 15px;

  border-radius: 16px;

  background:
    rgba(46,46,46,.035);

  border:
    1px solid rgba(46,46,46,.075);
}

.duo-separation-note > span {
  font-size: 16px;
}

.duo-separation-note p {
  margin: 0;

  color: var(--text-soft);

  font-size: 10px;
  line-height: 1.45;
}

.duo-separation-note strong {
  color: var(--anthracite);
}

.duo-saving {
  margin:
    auto 0
    18px;

  padding:
    15px 16px;

  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      rgba(217,154,26,.15),
      rgba(217,154,26,.07)
    );

  border:
    1px solid rgba(217,154,26,.23);
}

.duo-saving span,
.duo-saving strong,
.duo-saving small {
  display: block;
}

.duo-saving span {
  color: var(--primary-dark);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: .9px;
}

.duo-saving strong {
  margin-top: 3px;

  color: var(--anthracite);

  font-size: 20px;
  font-weight: 900;
}

.duo-saving small {
  margin-top: 2px;

  color: var(--text-soft);

  font-size: 9px;
}


/* Promo explainer */

.pricing-promo-explainer {
  position: relative;
  z-index: 2;

  max-width: 1000px;

  margin:
    45px auto
    0;

  padding:
    28px 30px;

  border-radius: 26px;

  background:
    #171719;

  color: white;

  border:
    1px solid rgba(217,154,26,.30);

  box-shadow:
    0 24px 65px rgba(46,46,46,.13);
}

.pricing-promo-explainer-head {
  text-align: center;
}

.pricing-promo-explainer-head h3 {
  margin:
    5px 0
    22px;

  color: white;

  font-size: 25px;
}

.pricing-promo-steps {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0,1fr));

  gap: 12px;
}

.pricing-promo-step {
  display: grid;
  grid-template-columns:
    36px 1fr;

  gap: 10px;

  padding:
    16px;

  border-radius: 17px;

  background:
    rgba(255,255,255,.055);

  border:
    1px solid rgba(255,255,255,.08);
}

.pricing-promo-step > span {
  color: #F0BD50;

  font-size: 18px;
  font-weight: 900;
}

.pricing-promo-step strong {
  display: block;

  color: white;

  font-size: 11px;
}

.pricing-promo-step p {
  margin:
    5px 0
    0;

  color:
    rgba(255,255,255,.60);

  font-size: 9px;
  line-height: 1.5;
}

.pricing-promo-fineprint {
  margin:
    18px 0
    0;

  color:
    rgba(255,255,255,.46);

  font-size: 9px;

  text-align: center;
}


/* ==========================================================
   FAQ
========================================================== */

.faq-section {
  padding:
    105px 0
    115px;

  background:
    #FBF8F3;
}

.faq-heading {
  max-width: 760px;

  margin:
    0 auto
    38px;

  text-align: center;
}

.faq-heading h2 {
  margin:
    5px 0
    13px;

  font-size:
    clamp(36px, 4.6vw, 54px);

  line-height: 1.04;

  letter-spacing: -2px;
}

.faq-heading p {
  margin: 0;

  color: var(--text-soft);

  font-size: 14px;
  line-height: 1.7;
}

.faq-grid {
  max-width: 940px;

  margin: 0 auto;

  display: grid;
  grid-template-columns:
    repeat(2, minmax(0,1fr));

  gap: 12px;
}

.faq-item {
  align-self: start;

  overflow: hidden;

  border-radius: 18px;

  background:
    rgba(255,255,255,.72);

  border:
    1px solid rgba(46,46,46,.08);

  box-shadow:
    0 14px 40px rgba(46,46,46,.035);
}

.faq-item[open] {
  border-color:
    rgba(217,154,26,.30);

  box-shadow:
    0 18px 45px rgba(217,154,26,.06);
}

.faq-item summary {
  list-style: none;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;

  padding:
    18px 19px;

  color: var(--anthracite);

  font-size: 12px;
  font-weight: 850;

  line-height: 1.35;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  flex: 0 0 auto;

  width: 26px;
  height: 26px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    rgba(217,154,26,.11);

  color: var(--primary-dark);

  font-style: normal;

  transition:
    transform .25s ease;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-answer {
  padding:
    0 19px
    18px;
}

.faq-answer p {
  margin: 0;

  color: var(--text-soft);

  font-size: 11px;
  line-height: 1.6;
}


/* ==========================================================
   FOOTER FINALE
========================================================== */

.footer-brand-note {
  display: block;

  max-width: 300px;

  margin-top: 10px;

  color:
    rgba(255,255,255,.38);

  font-size: 11px;
  line-height: 1.5;
}

.footer-bottom-final {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}


/* ==========================================================
   RESPONSIVE PIANI / FAQ
========================================================== */

@media (max-width: 1050px) {

  .pricing-promo-box {
    grid-template-columns:
      52px 1fr;
  }

  .pricing-promo-note {
    grid-column: 1 / -1;

    padding:
      15px 0 0;

    border-left: 0;

    border-top:
      1px solid rgba(46,46,46,.09);
  }

  .pricing-grid-premium {
    grid-template-columns:
      minmax(0, 620px);
  }

  .pricing-promo-steps {
    grid-template-columns: 1fr;
  }

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

}


@media (max-width: 700px) {

  .pricing-section {
    padding:
      85px 0
      90px;
  }

  .pricing-promo-box {
    grid-template-columns: 1fr;

    padding: 18px;
  }

  .pricing-promo-icon {
    width: 44px;
    height: 44px;
  }

  .pricing-promo-note {
    grid-column: auto;
  }

  .price-card-premium {
    padding: 25px 20px;
  }

  .price-card-top {
    gap: 12px;
  }

  .price strong {
    font-size: 38px;
  }

  .duo-accounts-visual {
    grid-template-columns: 1fr;
  }

  .duo-plus {
    transform: rotate(90deg);
  }

  .pricing-promo-explainer {
    padding:
      24px 18px;
  }

  .faq-section {
    padding:
      80px 0
      90px;
  }

  .footer-bottom-final {
    align-items: flex-start;
    flex-direction: column;
  }

}

/* ==========================================================
   V6 - DUO: UN ACCOUNT, DUE PROFILI
========================================================== */

.price-card-duo .duo-account-card {
  min-height: 72px;
}

.price-card-duo .duo-account-card small {
  line-height: 1.45;
}

.price-card-duo .duo-separation-note {
  background:
    linear-gradient(
      145deg,
      rgba(217,154,26,.075),
      rgba(255,255,255,.45)
    );

  border-color:
    rgba(217,154,26,.18);
}

/* ==========================================================
   CONTATTI E SUPPORTO
   Pagina interna soft BILANORA
========================================================== */

.nav-current {
  color: var(--primary-dark) !important;
}


/* HERO */

.support-hero {
  position: relative;

  overflow: hidden;

  padding:
    105px 0
    95px;

  background:
    linear-gradient(
      180deg,
      #F6F1EA 0%,
      #F8F4EE 100%
    );
}

.support-hero::before {
  content: "";

  position: absolute;

  width: 620px;
  height: 620px;

  top: -330px;
  left: -250px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(217,154,26,.14),
      rgba(217,154,26,0) 70%
    );

  pointer-events: none;
}

.support-hero::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -280px;
  bottom: -300px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(67,133,104,.07),
      rgba(67,133,104,0) 70%
    );

  pointer-events: none;
}

.support-hero-inner {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(350px, .9fr);

  align-items: center;

  gap: 80px;
}

.support-hero-copy {
  max-width: 690px;
}

.support-hero h1 {
  margin:
    2px 0
    22px;

  font-size:
    clamp(48px, 6vw, 72px);

  line-height: 1.02;

  letter-spacing: -3px;
}

.support-hero h1 span {
  display: block;

  color: var(--primary-dark);
}

.support-hero-copy > p {
  max-width: 650px;

  margin: 0;

  color: var(--text-soft);

  font-size: 18px;
  line-height: 1.75;
}

.support-hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 30px;
}


/* CONTACT CARD */

.support-contact-card {
  position: relative;

  padding: 34px;

  border-radius: 30px;

  background:
    rgba(255,255,255,.72);

  border:
    1px solid rgba(46,46,46,.085);

  box-shadow:
    0 28px 75px rgba(46,46,46,.075);
}

.support-contact-card::before {
  content: "";

  position: absolute;

  inset:
    0 auto auto 34px;

  width: 80px;
  height: 3px;

  border-radius:
    0 0 999px 999px;

  background:
    linear-gradient(
      90deg,
      var(--primary),
      #F0BD50
    );
}

.support-contact-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  margin-bottom: 23px;

  border-radius: 18px;

  background:
    rgba(217,154,26,.11);

  color: var(--primary-dark);
}

.support-contact-icon svg {
  width: 28px;
  height: 28px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-contact-label {
  display: block;

  margin-bottom: 7px;

  color: var(--text-soft);

  font-size: 10px;
  font-weight: 900;

  letter-spacing: 1.25px;
}

.support-email {
  display: inline-block;

  color: var(--anthracite);

  font-size:
    clamp(21px, 2.6vw, 30px);

  font-weight: 900;

  letter-spacing: -.7px;

  transition:
    color .2s ease;
}

.support-email:hover {
  color: var(--primary-dark);
}

.support-contact-card > p {
  margin:
    12px 0
    0;

  color: var(--text-soft);

  font-size: 13px;
  line-height: 1.65;
}

.support-contact-note {
  display: grid;
  grid-template-columns:
    30px 1fr;

  gap: 10px;

  align-items: start;

  margin-top: 24px;

  padding:
    14px 15px;

  border-radius: 16px;

  background:
    rgba(67,133,104,.07);

  border:
    1px solid rgba(67,133,104,.12);
}

.support-contact-note > span {
  color: #438568;

  font-weight: 900;
}

.support-contact-note p {
  margin: 0;

  color: var(--text-soft);

  font-size: 11px;
  line-height: 1.5;
}


/* SEZIONE ARGOMENTI */

.support-topics {
  padding:
    105px 0
    110px;

  background: #FBF8F3;
}

.support-section-heading {
  max-width: 760px;

  margin:
    0 auto
    50px;

  text-align: center;
}

.support-section-heading h2 {
  margin:
    3px 0
    14px;

  font-size:
    clamp(38px, 4.8vw, 56px);

  line-height: 1.05;

  letter-spacing: -2px;
}

.support-section-heading p {
  max-width: 650px;

  margin: 0 auto;

  color: var(--text-soft);

  font-size: 15px;
  line-height: 1.7;
}

.support-topic-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0,1fr));

  gap: 16px;
}

.support-topic-card {
  min-height: 245px;

  padding: 26px;

  border-radius: 24px;

  background:
    rgba(255,255,255,.68);

  border:
    1px solid rgba(46,46,46,.075);

  box-shadow:
    0 18px 48px rgba(46,46,46,.04);

  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.support-topic-card:hover {
  transform: translateY(-5px);

  border-color:
    rgba(217,154,26,.25);

  box-shadow:
    0 24px 58px rgba(46,46,46,.07);
}

.support-topic-icon {
  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  margin-bottom: 23px;

  border-radius: 15px;

  background:
    rgba(217,154,26,.10);

  color: var(--primary-dark);
}

.support-topic-icon svg {
  width: 25px;
  height: 25px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-topic-icon-ai span {
  font-size: 21px;
}

.support-topic-card h3 {
  margin:
    0 0
    10px;

  font-size: 20px;
  line-height: 1.15;

  letter-spacing: -.4px;
}

.support-topic-card p {
  margin: 0;

  color: var(--text-soft);

  font-size: 12px;
  line-height: 1.65;
}


/* COSA INDICARE */

.support-info-section {
  position: relative;

  padding:
    115px 0;

  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #F3EEE7,
      #F7F2EA
    );
}

.support-info-section::after {
  content: "";

  position: absolute;

  width: 540px;
  height: 540px;

  right: -310px;
  top: -220px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(217,154,26,.09),
      rgba(217,154,26,0) 70%
    );

  pointer-events: none;
}

.support-info-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(0,.78fr)
    minmax(0,1.22fr);

  gap: 75px;
  align-items: start;
}

.support-info-copy {
  position: sticky;
  top: 125px;
}

.support-info-copy h2 {
  margin:
    3px 0
    16px;

  font-size:
    clamp(38px,4.7vw,54px);

  line-height: 1.05;

  letter-spacing: -2px;
}

.support-info-copy p {
  margin: 0;

  color: var(--text-soft);

  font-size: 15px;
  line-height: 1.7;
}

.support-checklist {
  display: grid;

  gap: 12px;
}

.support-check-item {
  display: grid;
  grid-template-columns:
    54px 1fr;

  gap: 18px;

  padding:
    24px;

  border-radius: 22px;

  background:
    rgba(255,255,255,.62);

  border:
    1px solid rgba(46,46,46,.075);
}

.support-check-item > span {
  color:
    rgba(217,154,26,.48);

  font-size: 26px;
  font-weight: 950;

  line-height: 1;
}

.support-check-item h3 {
  margin:
    0 0
    7px;

  font-size: 18px;
  line-height: 1.2;
}

.support-check-item p {
  margin: 0;

  color: var(--text-soft);

  font-size: 12px;
  line-height: 1.65;
}


/* ACCOUNT */

.support-account-section {
  padding:
    85px 0;

  background: #FBF8F3;
}

.support-account-card {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 45px;

  padding:
    34px 38px;

  border-radius: 28px;

  background:
    rgba(255,255,255,.72);

  border:
    1px solid rgba(46,46,46,.08);

  box-shadow:
    0 20px 55px rgba(46,46,46,.045);
}

.support-account-copy h2 {
  margin:
    3px 0
    9px;

  font-size:
    clamp(30px, 4vw, 43px);

  line-height: 1.05;

  letter-spacing: -1.4px;
}

.support-account-copy p {
  max-width: 600px;

  margin: 0;

  color: var(--text-soft);

  font-size: 13px;
  line-height: 1.65;
}

.support-account-card .button {
  flex: 0 0 auto;
}


/* CTA FINALE */

.support-final {
  padding:
    20px 0
    100px;

  background: #FBF8F3;
}

.support-final-card {
  position: relative;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 50px;

  padding:
    45px 48px;

  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      #F3E8D2,
      #FBF7F0
    );

  border:
    1px solid rgba(217,154,26,.22);
}

.support-final-card::after {
  content: "";

  position: absolute;

  width: 240px;
  height: 240px;

  right: -100px;
  top: -110px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(217,154,26,.16),
      rgba(217,154,26,0) 70%
    );
}

.support-final-card > * {
  position: relative;
  z-index: 2;
}

.support-final-card h2 {
  margin:
    3px 0
    10px;

  font-size:
    clamp(30px, 4vw, 43px);

  line-height: 1.05;

  letter-spacing: -1.5px;
}

.support-final-card p {
  max-width: 620px;

  margin: 0;

  color: var(--text-soft);

  font-size: 13px;
  line-height: 1.65;
}

.support-final-card .button {
  flex: 0 0 auto;
}


/* REVEAL */

.support-reveal {
  opacity: 0;

  transform: translateY(18px);

  transition:
    opacity .65s ease,
    transform .65s ease;
}

.support-reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}


/* RESPONSIVE SUPPORTO */

@media (max-width: 1050px) {

  .support-hero-inner {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .support-hero-copy {
    max-width: 760px;
  }

  .support-contact-card {
    max-width: 650px;
  }

  .support-topic-grid {
    grid-template-columns:
      repeat(2, minmax(0,1fr));
  }

  .support-info-grid {
    grid-template-columns: 1fr;

    gap: 42px;
  }

  .support-info-copy {
    position: static;

    max-width: 720px;
  }

}


@media (max-width: 760px) {

  .support-hero {
    padding:
      72px 0
      70px;
  }

  .support-hero h1 {
    font-size: 46px;

    letter-spacing: -2px;
  }

  .support-hero-copy > p {
    font-size: 16px;
  }

  .support-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .support-hero-actions .button {
    width: 100%;
  }

  .support-contact-card {
    padding: 26px 22px;
  }

  .support-email {
    font-size: 21px;
  }

  .support-topics {
    padding:
      80px 0
      85px;
  }

  .support-topic-grid {
    grid-template-columns: 1fr;
  }

  .support-topic-card {
    min-height: auto;
  }

  .support-info-section {
    padding:
      85px 0;
  }

  .support-check-item {
    grid-template-columns:
      44px 1fr;

    padding: 20px;
  }

  .support-account-section {
    padding:
      65px 0;
  }

  .support-account-card,
  .support-final-card {
    align-items: flex-start;
    flex-direction: column;

    padding: 28px 24px;
  }

  .support-account-card .button,
  .support-final-card .button {
    width: 100%;
  }

  .support-final {
    padding-bottom: 80px;
  }

}


@media (prefers-reduced-motion: reduce) {

  .support-reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }

}

/* ==========================================================
   ELIMINA ACCOUNT
   Pagina interna BILANORA
========================================================== */


/* HERO */

.delete-hero {
  position: relative;

  overflow: hidden;

  padding:
    105px 0
    95px;

  background:
    linear-gradient(
      180deg,
      #F6F1EA 0%,
      #F8F4EE 100%
    );
}

.delete-hero::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  top: -340px;
  left: -270px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(180,81,67,.07),
      rgba(180,81,67,0) 70%
    );

  pointer-events: none;
}

.delete-hero::after {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -300px;
  bottom: -300px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(217,154,26,.10),
      rgba(217,154,26,0) 70%
    );

  pointer-events: none;
}

.delete-hero-inner {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(0,1.1fr)
    minmax(350px,.9fr);

  align-items: center;

  gap: 75px;
}

.delete-hero-copy {
  max-width: 700px;
}

.delete-hero h1 {
  margin:
    3px 0
    22px;

  font-size:
    clamp(48px, 6vw, 72px);

  line-height: 1.02;

  letter-spacing: -3px;
}

.delete-hero h1 span {
  display: block;

  color: var(--primary-dark);
}

.delete-hero-copy > p {
  max-width: 650px;

  margin: 0;

  color: var(--text-soft);

  font-size: 18px;
  line-height: 1.75;
}


/* WARNING */

.delete-warning-card {
  padding: 32px;

  border-radius: 28px;

  background:
    rgba(255,255,255,.72);

  border:
    1px solid rgba(180,81,67,.16);

  box-shadow:
    0 28px 70px rgba(46,46,46,.065);
}

.delete-warning-icon {
  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  margin-bottom: 22px;

  border-radius: 16px;

  background:
    rgba(180,81,67,.08);

  color: #A44A3E;
}

.delete-warning-icon svg {
  width: 27px;
  height: 27px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delete-warning-label {
  display: block;

  margin-bottom: 7px;

  color: #A44A3E;

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 1.1px;
}

.delete-warning-card h2 {
  margin:
    0 0
    10px;

  font-size: 27px;
  line-height: 1.08;
}

.delete-warning-card p {
  margin: 0;

  color: var(--text-soft);

  font-size: 13px;
  line-height: 1.6;
}

.delete-play-button {
  width: 100%;

  margin-top: 21px;
}

.delete-warning-card small {
  display: block;

  margin-top: 12px;

  color:
    rgba(46,46,46,.53);

  font-size: 10px;
  line-height: 1.5;
}


/* PATHS */

.delete-paths-section {
  padding:
    105px 0
    115px;

  background: #FBF8F3;
}

.delete-section-heading {
  max-width: 760px;

  margin:
    0 auto
    48px;

  text-align: center;
}

.delete-section-heading h2 {
  margin:
    3px 0
    14px;

  font-size:
    clamp(38px,4.8vw,56px);

  line-height: 1.05;

  letter-spacing: -2px;
}

.delete-section-heading p {
  max-width: 650px;

  margin: 0 auto;

  color: var(--text-soft);

  font-size: 15px;
  line-height: 1.7;
}

.delete-path-grid {
  max-width: 1030px;

  margin: 0 auto;

  display: grid;
  grid-template-columns:
    repeat(2,minmax(0,1fr));

  gap: 22px;
}

.delete-path-card {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: 32px;

  border-radius: 26px;

  background:
    rgba(255,255,255,.70);

  border:
    1px solid rgba(46,46,46,.085);

  box-shadow:
    0 22px 58px rgba(46,46,46,.05);
}

.delete-path-card-primary {
  background:
    linear-gradient(
      145deg,
      rgba(217,154,26,.09),
      rgba(255,255,255,.76)
    );

  border-color:
    rgba(217,154,26,.23);
}

.delete-path-number {
  position: absolute;

  top: 22px;
  right: 26px;

  color:
    rgba(217,154,26,.30);

  font-size: 35px;
  font-weight: 950;
}

.delete-path-kicker {
  display: block;

  margin-bottom: 9px;

  color: var(--primary-dark);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 1.1px;
}

.delete-path-card h3 {
  max-width: 380px;

  margin:
    0 0
    13px;

  font-size: 28px;
  line-height: 1.08;

  letter-spacing: -.8px;
}

.delete-path-card > p {
  margin:
    0 0
    24px;

  color: var(--text-soft);

  font-size: 13px;
  line-height: 1.65;
}

.delete-path-card > p strong {
  color: var(--anthracite);
}

.delete-mini-steps {
  display: grid;

  gap: 10px;

  margin-top: auto;
}

.delete-mini-steps > div {
  display: grid;
  grid-template-columns:
    30px 1fr;

  gap: 10px;

  align-items: start;

  padding:
    12px 13px;

  border-radius: 15px;

  background:
    rgba(255,255,255,.50);

  border:
    1px solid rgba(46,46,46,.065);
}

.delete-mini-steps > div > span {
  width: 27px;
  height: 27px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    rgba(217,154,26,.13);

  color: var(--primary-dark);

  font-size: 10px;
  font-weight: 900;
}

.delete-mini-steps p {
  margin: 0;

  color: var(--text-soft);

  font-size: 10px;
  line-height: 1.55;
}

.delete-request-button {
  margin-top: auto;
}

.delete-email-box {
  margin-top: 14px;

  padding:
    14px 15px;

  border-radius: 14px;

  background:
    rgba(46,46,46,.035);

  border:
    1px solid rgba(46,46,46,.065);
}

.delete-email-box span {
  display: block;

  margin-bottom: 3px;

  color: var(--text-soft);

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 1px;
}

.delete-email-box a {
  color: var(--anthracite);

  font-size: 13px;
  font-weight: 850;
}


/* DATA */

.delete-data-section {
  position: relative;

  overflow: hidden;

  padding:
    115px 0;

  background:
    linear-gradient(
      180deg,
      #F3EEE7,
      #F7F2EA
    );
}

.delete-data-grid {
  display: grid;
  grid-template-columns:
    minmax(0,.78fr)
    minmax(0,1.22fr);

  gap: 75px;
  align-items: start;
}

.delete-data-copy {
  position: sticky;
  top: 120px;
}

.delete-data-copy h2 {
  margin:
    3px 0
    15px;

  font-size:
    clamp(38px,4.8vw,55px);

  line-height: 1.05;

  letter-spacing: -2px;
}

.delete-data-copy > p {
  margin: 0;

  color: var(--text-soft);

  font-size: 15px;
  line-height: 1.7;
}

.delete-final-note {
  display: grid;
  grid-template-columns:
    36px 1fr;

  gap: 11px;

  margin-top: 26px;

  padding:
    15px 16px;

  border-radius: 17px;

  background:
    rgba(180,81,67,.055);

  border:
    1px solid rgba(180,81,67,.12);
}

.delete-final-note > span {
  width: 31px;
  height: 31px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    rgba(180,81,67,.11);

  color: #A44A3E;

  font-weight: 950;
}

.delete-final-note p {
  margin: 0;

  color: var(--text-soft);

  font-size: 11px;
  line-height: 1.5;
}

.delete-data-list {
  display: grid;

  gap: 12px;
}

.delete-data-item {
  display: grid;
  grid-template-columns:
    52px 1fr;

  gap: 16px;

  padding:
    22px;

  border-radius: 21px;

  background:
    rgba(255,255,255,.64);

  border:
    1px solid rgba(46,46,46,.075);
}

.delete-data-icon {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 14px;

  background:
    rgba(217,154,26,.095);

  color: var(--primary-dark);
}

.delete-data-icon svg {
  width: 24px;
  height: 24px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.delete-data-item h3 {
  margin:
    0 0
    7px;

  font-size: 17px;
}

.delete-data-item p {
  margin: 0;

  color: var(--text-soft);

  font-size: 11px;
  line-height: 1.6;
}


/* SUBSCRIPTION */

.delete-subscription-section {
  padding:
    95px 0;

  background: #FBF8F3;
}

.delete-subscription-card {
  max-width: 1050px;

  margin: 0 auto;

  padding:
    38px 40px;

  border-radius: 28px;

  background:
    rgba(255,255,255,.72);

  border:
    1px solid rgba(217,154,26,.19);

  box-shadow:
    0 22px 58px rgba(46,46,46,.045);
}

.delete-subscription-copy h2 {
  max-width: 760px;

  margin:
    3px 0
    13px;

  font-size:
    clamp(32px,4.3vw,48px);

  line-height: 1.05;

  letter-spacing: -1.7px;
}

.delete-subscription-copy > p {
  max-width: 790px;

  margin: 0;

  color: var(--text-soft);

  font-size: 13px;
  line-height: 1.7;
}

.delete-subscription-points {
  display: grid;
  grid-template-columns:
    repeat(3,minmax(0,1fr));

  gap: 12px;

  margin:
    28px 0
    22px;
}

.delete-subscription-points > div {
  display: grid;
  grid-template-columns:
    26px 1fr;

  gap: 8px;

  padding:
    15px;

  border-radius: 16px;

  background:
    rgba(217,154,26,.055);

  border:
    1px solid rgba(217,154,26,.12);
}

.delete-subscription-points span {
  color: #438568;

  font-weight: 900;
}

.delete-subscription-points p {
  margin: 0;

  color: var(--text-soft);

  font-size: 10px;
  line-height: 1.55;
}

.delete-subscription-points strong {
  color: var(--anthracite);
}


/* EMAIL REQUEST */

.delete-request-info {
  padding:
    105px 0;

  background:
    linear-gradient(
      180deg,
      #F6F1EA,
      #F1ECE4
    );
}

.delete-request-info-grid {
  display: grid;
  grid-template-columns:
    minmax(0,.9fr)
    minmax(0,1.1fr);

  gap: 70px;

  align-items: center;
}

.delete-request-info-copy h2 {
  margin:
    3px 0
    14px;

  font-size:
    clamp(36px,4.5vw,52px);

  line-height: 1.05;

  letter-spacing: -1.8px;
}

.delete-request-info-copy p {
  margin: 0;

  color: var(--text-soft);

  font-size: 14px;
  line-height: 1.7;
}

.delete-request-info-card {
  padding: 30px;

  border-radius: 24px;

  background:
    rgba(255,255,255,.70);

  border:
    1px solid rgba(46,46,46,.08);

  box-shadow:
    0 20px 55px rgba(46,46,46,.04);
}

.delete-request-info-card > strong {
  display: block;

  margin-bottom: 15px;

  font-size: 16px;
}

.delete-request-info-card ul {
  display: grid;

  gap: 10px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.delete-request-info-card li {
  display: grid;
  grid-template-columns:
    24px 1fr;

  gap: 8px;

  color: var(--text-soft);

  font-size: 11px;
  line-height: 1.55;
}

.delete-request-info-card li span {
  color: #438568;

  font-weight: 900;
}

.delete-never-send {
  display: grid;
  grid-template-columns:
    30px 1fr;

  gap: 10px;

  margin-top: 20px;

  padding:
    14px 15px;

  border-radius: 15px;

  background:
    rgba(180,81,67,.055);

  border:
    1px solid rgba(180,81,67,.11);
}

.delete-never-send > span {
  color: #A44A3E;

  font-weight: 900;
}

.delete-never-send p {
  margin: 0;

  color: #7A4740;

  font-size: 10px;
  line-height: 1.5;
}


/* FINAL CTA */

.delete-final-section {
  padding:
    25px 0
    100px;

  background: #FBF8F3;
}

.delete-final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 45px;

  padding:
    42px 46px;

  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      #F3E8D2,
      #FBF7F0
    );

  border:
    1px solid rgba(217,154,26,.22);
}

.delete-final-card h2 {
  margin:
    3px 0
    10px;

  font-size:
    clamp(30px,4vw,43px);

  line-height: 1.05;

  letter-spacing: -1.5px;
}

.delete-final-card p {
  max-width: 650px;

  margin: 0;

  color: var(--text-soft);

  font-size: 13px;
  line-height: 1.65;
}

.delete-final-card .button {
  flex: 0 0 auto;
}


/* REVEAL */

.delete-reveal {
  opacity: 0;

  transform: translateY(18px);

  transition:
    opacity .65s ease,
    transform .65s ease;
}

.delete-reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}


/* RESPONSIVE */

@media (max-width: 1050px) {

  .delete-hero-inner,
  .delete-data-grid,
  .delete-request-info-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .delete-warning-card {
    max-width: 650px;
  }

  .delete-data-copy {
    position: static;

    max-width: 730px;
  }

  .delete-subscription-points {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 760px) {

  .delete-hero {
    padding:
      72px 0
      70px;
  }

  .delete-hero h1 {
    font-size: 46px;

    letter-spacing: -2px;
  }

  .delete-hero-copy > p {
    font-size: 16px;
  }

  .delete-warning-card {
    padding: 25px 22px;
  }

  .delete-paths-section,
  .delete-data-section,
  .delete-request-info {
    padding:
      82px 0;
  }

  .delete-path-grid {
    grid-template-columns: 1fr;
  }

  .delete-path-card {
    padding: 25px 21px;
  }

  .delete-data-item {
    grid-template-columns:
      46px 1fr;

    padding: 19px;
  }

  .delete-subscription-section {
    padding:
      70px 0;
  }

  .delete-subscription-card {
    padding:
      28px 23px;
  }

  .delete-final-card {
    align-items: flex-start;
    flex-direction: column;

    padding:
      28px 24px;
  }

  .delete-final-card .button {
    width: 100%;
  }

  .delete-final-section {
    padding-bottom: 80px;
  }

}


@media (prefers-reduced-motion: reduce) {

  .delete-reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }

}

/* ==========================================================
   PRIVACY POLICY
   Pagina legale BILANORA
========================================================== */


/* HERO */

.privacy-hero {
  position: relative;

  overflow: hidden;

  padding:
    105px 0
    92px;

  background:
    linear-gradient(
      180deg,
      #F6F1EA 0%,
      #F9F5EF 100%
    );
}

.privacy-hero::before {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  top: -360px;
  left: -300px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(217,154,26,.13),
      rgba(217,154,26,0) 70%
    );

  pointer-events: none;
}

.privacy-hero::after {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -280px;
  bottom: -320px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(67,133,104,.07),
      rgba(67,133,104,0) 70%
    );

  pointer-events: none;
}

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

  display: grid;
  grid-template-columns:
    minmax(0,1.15fr)
    minmax(340px,.85fr);

  gap: 78px;

  align-items: center;
}

.privacy-hero-copy {
  max-width: 730px;
}

.privacy-hero h1 {
  margin:
    3px 0
    21px;

  font-size:
    clamp(48px,6vw,72px);

  line-height: 1.02;

  letter-spacing: -3px;
}

.privacy-hero h1 span {
  display: block;

  color: var(--primary-dark);
}

.privacy-hero-copy > p {
  max-width: 670px;

  margin: 0;

  color: var(--text-soft);

  font-size: 18px;
  line-height: 1.75;
}

.privacy-meta {
  display: flex;
  flex-wrap: wrap;

  gap: 10px;

  margin-top: 30px;
}

.privacy-meta > span {
  display: flex;
  flex-direction: column;

  min-width: 170px;

  padding:
    11px 14px;

  border-radius: 14px;

  background:
    rgba(255,255,255,.56);

  border:
    1px solid rgba(46,46,46,.07);

  color: var(--text-soft);

  font-size: 10px;
}

.privacy-meta strong {
  margin-bottom: 2px;

  color: var(--anthracite);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: .7px;

  text-transform: uppercase;
}


/* CONTROLLER */

.privacy-controller-card {
  padding: 32px;

  border-radius: 28px;

  background:
    rgba(255,255,255,.72);

  border:
    1px solid rgba(217,154,26,.18);

  box-shadow:
    0 28px 72px rgba(46,46,46,.065);
}

.privacy-controller-icon {
  width: 56px;
  height: 56px;

  display: grid;
  place-items: center;

  margin-bottom: 22px;

  border-radius: 17px;

  color: var(--primary-dark);

  background:
    rgba(217,154,26,.11);
}

.privacy-controller-icon svg {
  width: 28px;
  height: 28px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-controller-label {
  display: block;

  margin-bottom: 7px;

  color: var(--primary-dark);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 1.05px;
}

.privacy-controller-card h2 {
  margin:
    0 0
    10px;

  font-size: 30px;
  line-height: 1.08;
}

.privacy-controller-card p {
  margin: 0;

  color: var(--text-soft);

  font-size: 13px;
  line-height: 1.7;
}

.privacy-controller-email {
  display: inline-block;

  margin-top: 17px;

  color: var(--anthracite);

  font-size: 14px;
  font-weight: 900;
}

.privacy-controller-email:hover {
  color: var(--primary-dark);
}


/* SUMMARY */

.privacy-summary-section {
  padding:
    32px 0
    88px;

  background: #FBF8F3;
}

.privacy-summary-grid {
  display: grid;
  grid-template-columns:
    repeat(4,minmax(0,1fr));

  gap: 13px;
}

.privacy-summary-card {
  min-height: 200px;

  padding: 23px;

  border-radius: 21px;

  background:
    rgba(255,255,255,.72);

  border:
    1px solid rgba(46,46,46,.07);

  box-shadow:
    0 15px 42px rgba(46,46,46,.035);
}

.privacy-summary-card > span {
  color:
    rgba(217,154,26,.45);

  font-size: 23px;
  font-weight: 950;
}

.privacy-summary-card h3 {
  margin:
    18px 0
    9px;

  font-size: 18px;
  line-height: 1.15;
}

.privacy-summary-card p {
  margin: 0;

  color: var(--text-soft);

  font-size: 11px;
  line-height: 1.65;
}


/* BODY */

.privacy-body-section {
  position: relative;

  padding:
    100px 0
    112px;

  background:
    linear-gradient(
      180deg,
      #F3EEE7 0%,
      #F8F4EE 100%
    );
}

.privacy-layout {
  display: grid;
  grid-template-columns:
    245px
    minmax(0,1fr);

  gap: 65px;

  align-items: start;
}


/* INDEX */

.privacy-index {
  position: sticky;
  top: 110px;

  padding: 20px;

  border-radius: 20px;

  background:
    rgba(255,255,255,.55);

  border:
    1px solid rgba(46,46,46,.07);
}

.privacy-index-label {
  display: block;

  margin-bottom: 11px;

  color: var(--primary-dark);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 1.05px;
}

.privacy-index nav {
  display: grid;

  gap: 2px;
}

.privacy-index a {
  padding:
    8px 9px;

  border-radius: 10px;

  color: var(--text-soft);

  font-size: 10px;
  font-weight: 700;

  transition:
    background .2s ease,
    color .2s ease,
    transform .2s ease;
}

.privacy-index a:hover {
  transform: translateX(3px);

  color: var(--anthracite);

  background:
    rgba(217,154,26,.08);
}


/* ARTICLE */

.privacy-content {
  display: grid;

  gap: 18px;
}

.privacy-article {
  position: relative;

  scroll-margin-top: 110px;

  padding:
    34px 36px;

  border-radius: 26px;

  background:
    rgba(255,255,255,.67);

  border:
    1px solid rgba(46,46,46,.075);

  box-shadow:
    0 18px 48px rgba(46,46,46,.035);
}

.privacy-number {
  display: block;

  margin-bottom: 8px;

  color:
    rgba(217,154,26,.55);

  font-size: 12px;
  font-weight: 950;

  letter-spacing: .8px;
}

.privacy-article h2 {
  margin:
    0 0
    15px;

  font-size:
    clamp(28px,3.6vw,40px);

  line-height: 1.07;

  letter-spacing: -1.25px;
}

.privacy-article > p {
  margin:
    0 0
    14px;

  color: var(--text-soft);

  font-size: 13px;
  line-height: 1.75;
}

.privacy-article > p:last-child {
  margin-bottom: 0;
}

.privacy-subtitle {
  margin:
    25px 0
    10px;

  font-size: 17px;
}


/* INFO BOX */

.privacy-info-box {
  display: flex;
  flex-direction: column;

  gap: 3px;

  margin:
    18px 0;

  padding:
    18px 20px;

  border-radius: 17px;

  background:
    rgba(217,154,26,.065);

  border:
    1px solid rgba(217,154,26,.15);
}

.privacy-info-box strong {
  font-size: 16px;
}

.privacy-info-box span {
  color: var(--text-soft);

  font-size: 11px;
}

.privacy-info-box a {
  margin-top: 3px;

  color: var(--primary-dark);

  font-size: 11px;
  font-weight: 850;
}


/* DATA GRID */

.privacy-data-grid {
  display: grid;
  grid-template-columns:
    repeat(2,minmax(0,1fr));

  gap: 10px;

  margin-top: 20px;
}

.privacy-data-card {
  padding:
    17px 18px;

  border-radius: 16px;

  background:
    rgba(246,241,234,.76);

  border:
    1px solid rgba(46,46,46,.06);
}

.privacy-data-card h3 {
  margin:
    0 0
    7px;

  font-size: 14px;
}

.privacy-data-card p {
  margin: 0;

  color: var(--text-soft);

  font-size: 10px;
  line-height: 1.6;
}


/* PURPOSES */

.privacy-purpose-list,
.privacy-retention-list {
  display: grid;

  gap: 9px;

  margin-top: 20px;
}

.privacy-purpose-list > div,
.privacy-retention-list > div {
  padding:
    16px 17px;

  border-radius: 15px;

  background:
    rgba(246,241,234,.74);

  border:
    1px solid rgba(46,46,46,.06);
}

.privacy-purpose-list strong,
.privacy-purpose-list span,
.privacy-purpose-list small,
.privacy-retention-list strong,
.privacy-retention-list span {
  display: block;
}

.privacy-purpose-list strong,
.privacy-retention-list strong {
  font-size: 12px;
}

.privacy-purpose-list span,
.privacy-retention-list span {
  margin-top: 4px;

  color: var(--text-soft);

  font-size: 10px;
  line-height: 1.55;
}

.privacy-purpose-list small {
  margin-top: 7px;

  color: var(--primary-dark);

  font-size: 9px;
  font-weight: 750;
}


/* FLOW */

.privacy-flow {
  display: grid;
  grid-template-columns:
    1fr 30px 1fr 30px 1fr;

  align-items: center;

  gap: 5px;

  margin:
    24px 0;
}

.privacy-flow > div {
  min-height: 122px;

  padding: 15px;

  border-radius: 16px;

  background:
    rgba(246,241,234,.75);

  border:
    1px solid rgba(217,154,26,.11);
}

.privacy-flow > div > span {
  display: grid;
  place-items: center;

  width: 28px;
  height: 28px;

  margin-bottom: 10px;

  border-radius: 50%;

  background:
    rgba(217,154,26,.12);

  color: var(--primary-dark);

  font-size: 9px;
  font-weight: 900;
}

.privacy-flow strong,
.privacy-flow small {
  display: block;
}

.privacy-flow strong {
  font-size: 11px;
}

.privacy-flow small {
  margin-top: 4px;

  color: var(--text-soft);

  font-size: 9px;
  line-height: 1.45;
}

.privacy-flow > i {
  color:
    rgba(217,154,26,.65);

  font-size: 18px;
  font-style: normal;
  font-weight: 900;

  text-align: center;
}


/* NOTES */

.privacy-note {
  display: grid;
  grid-template-columns:
    34px 1fr;

  gap: 10px;

  margin:
    19px 0;

  padding:
    14px 15px;

  border-radius: 15px;

  background:
    rgba(217,154,26,.065);

  border:
    1px solid rgba(217,154,26,.13);
}

.privacy-note > span {
  width: 29px;
  height: 29px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    rgba(217,154,26,.13);

  color: var(--primary-dark);

  font-size: 10px;
  font-weight: 900;
}

.privacy-note p {
  margin: 0;

  color: var(--text-soft);

  font-size: 10px;
  line-height: 1.55;
}

.privacy-note-green {
  background:
    rgba(67,133,104,.055);

  border-color:
    rgba(67,133,104,.12);
}

.privacy-note-green > span {
  background:
    rgba(67,133,104,.11);

  color: #438568;
}


/* AI */

.privacy-bullet-list {
  display: grid;

  gap: 7px;

  margin:
    14px 0
    20px;

  padding: 0;

  list-style: none;
}

.privacy-bullet-list li {
  position: relative;

  padding-left: 22px;

  color: var(--text-soft);

  font-size: 11px;
  line-height: 1.6;
}

.privacy-bullet-list li::before {
  content: "✓";

  position: absolute;

  left: 0;
  top: 0;

  color: #438568;

  font-weight: 900;
}

.privacy-ai-card {
  display: grid;
  grid-template-columns:
    46px 1fr;

  gap: 14px;

  margin:
    20px 0;

  padding:
    18px;

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(217,154,26,.10),
      rgba(255,255,255,.53)
    );

  border:
    1px solid rgba(217,154,26,.19);
}

.privacy-ai-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--primary);

  color: var(--anthracite);

  font-size: 17px;
  font-weight: 900;
}

.privacy-ai-card strong {
  display: block;

  font-size: 12px;
}

.privacy-ai-card p {
  margin:
    5px 0
    0;

  color: var(--text-soft);

  font-size: 10px;
  line-height: 1.55;
}


/* EXTERNAL LINKS */

.privacy-external-link {
  display: inline-flex;

  margin-top: 5px;

  color: var(--primary-dark);

  font-size: 11px;
  font-weight: 850;

  border-bottom:
    1px solid rgba(217,154,26,.24);

  padding-bottom: 2px;
}


/* PROVIDERS */

.privacy-provider-list {
  display: grid;

  gap: 9px;

  margin-top: 20px;
}

.privacy-provider-list > div {
  padding:
    16px 17px;

  border-radius: 15px;

  background:
    rgba(246,241,234,.75);

  border:
    1px solid rgba(46,46,46,.06);
}

.privacy-provider-list strong,
.privacy-provider-list span,
.privacy-provider-list a {
  display: block;
}

.privacy-provider-list strong {
  font-size: 12px;
}

.privacy-provider-list span {
  margin-top: 4px;

  color: var(--text-soft);

  font-size: 10px;
  line-height: 1.55;
}

.privacy-provider-list a {
  width: fit-content;

  margin-top: 6px;

  color: var(--primary-dark);

  font-size: 9px;
  font-weight: 800;
}


/* DELETE */

.privacy-delete-box {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin:
    20px 0;

  padding:
    19px 20px;

  border-radius: 18px;

  background:
    rgba(255,255,255,.53);

  border:
    1px solid rgba(217,154,26,.16);
}

.privacy-delete-box strong,
.privacy-delete-box span {
  display: block;
}

.privacy-delete-box strong {
  font-size: 13px;
}

.privacy-delete-box span {
  max-width: 520px;

  margin-top: 3px;

  color: var(--text-soft);

  font-size: 10px;
  line-height: 1.5;
}

.privacy-delete-box .button {
  flex: 0 0 auto;
}


/* RIGHTS */

.privacy-rights-grid {
  display: grid;
  grid-template-columns:
    repeat(2,minmax(0,1fr));

  gap: 9px;

  margin-top: 20px;
}

.privacy-rights-grid > div {
  padding:
    16px;

  border-radius: 15px;

  background:
    rgba(246,241,234,.74);

  border:
    1px solid rgba(46,46,46,.06);
}

.privacy-rights-grid strong,
.privacy-rights-grid span {
  display: block;
}

.privacy-rights-grid strong {
  font-size: 12px;
}

.privacy-rights-grid span {
  margin-top: 4px;

  color: var(--text-soft);

  font-size: 10px;
  line-height: 1.5;
}

.privacy-contact-rights {
  margin-top: 18px;

  padding:
    15px 17px;

  border-radius: 15px;

  background:
    rgba(67,133,104,.055);

  border:
    1px solid rgba(67,133,104,.11);
}

.privacy-contact-rights strong {
  margin-right: 5px;

  font-size: 11px;
}

.privacy-contact-rights a {
  color: #438568;

  font-size: 11px;
  font-weight: 850;
}


/* UPDATE */

.privacy-update-box {
  display: grid;
  grid-template-columns:
    86px 1fr;

  gap: 16px;

  margin-top: 20px;

  padding:
    17px 18px;

  border-radius: 16px;

  background:
    rgba(246,241,234,.75);

  border:
    1px solid rgba(46,46,46,.06);
}

.privacy-update-box > span {
  color: var(--primary-dark);

  font-size: 11px;
  font-weight: 900;
}

.privacy-update-box strong {
  display: block;

  font-size: 11px;
}

.privacy-update-box p {
  margin:
    5px 0
    0;

  color: var(--text-soft);

  font-size: 9px;
  line-height: 1.5;
}


/* FINAL CTA */

.privacy-final-section {
  padding:
    25px 0
    100px;

  background: #FBF8F3;
}

.privacy-final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 45px;

  padding:
    42px 46px;

  border-radius: 28px;

  background:
    linear-gradient(
      145deg,
      #F3E8D2,
      #FBF7F0
    );

  border:
    1px solid rgba(217,154,26,.22);
}

.privacy-final-card h2 {
  margin:
    3px 0
    10px;

  font-size:
    clamp(30px,4vw,43px);

  line-height: 1.05;

  letter-spacing: -1.5px;
}

.privacy-final-card p {
  max-width: 650px;

  margin: 0;

  color: var(--text-soft);

  font-size: 13px;
  line-height: 1.65;
}

.privacy-final-card .button {
  flex: 0 0 auto;
}


/* REVEAL */

.privacy-reveal {
  opacity: 0;

  transform: translateY(18px);

  transition:
    opacity .65s ease,
    transform .65s ease;
}

.privacy-reveal.is-visible {
  opacity: 1;

  transform: translateY(0);
}


/* RESPONSIVE */

@media (max-width: 1100px) {

  .privacy-hero-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .privacy-controller-card {
    max-width: 620px;
  }

  .privacy-summary-grid {
    grid-template-columns:
      repeat(2,minmax(0,1fr));
  }

  .privacy-layout {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .privacy-index {
    position: static;
  }

  .privacy-index nav {
    grid-template-columns:
      repeat(3,minmax(0,1fr));

    gap: 4px;
  }

}


@media (max-width: 760px) {

  .privacy-hero {
    padding:
      72px 0
      70px;
  }

  .privacy-hero h1 {
    font-size: 46px;

    letter-spacing: -2px;
  }

  .privacy-hero-copy > p {
    font-size: 16px;
  }

  .privacy-controller-card {
    padding:
      25px 22px;
  }

  .privacy-summary-section {
    padding-bottom: 70px;
  }

  .privacy-summary-grid {
    grid-template-columns: 1fr;
  }

  .privacy-summary-card {
    min-height: auto;
  }

  .privacy-body-section {
    padding:
      75px 0
      85px;
  }

  .privacy-index nav {
    grid-template-columns:
      repeat(2,minmax(0,1fr));
  }

  .privacy-article {
    padding:
      25px 21px;
  }

  .privacy-data-grid,
  .privacy-rights-grid {
    grid-template-columns: 1fr;
  }

  .privacy-flow {
    grid-template-columns: 1fr;

    gap: 7px;
  }

  .privacy-flow > div {
    min-height: auto;
  }

  .privacy-flow > i {
    transform: rotate(90deg);
  }

  .privacy-delete-box,
  .privacy-final-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .privacy-delete-box .button,
  .privacy-final-card .button {
    width: 100%;
  }

  .privacy-update-box {
    grid-template-columns: 1fr;
  }

  .privacy-final-card {
    padding:
      28px 24px;
  }

  .privacy-final-section {
    padding-bottom: 80px;
  }

}


@media (max-width: 460px) {

  .privacy-index nav {
    grid-template-columns: 1fr;
  }

}


@media (prefers-reduced-motion: reduce) {

  .privacy-reveal {
    opacity: 1;

    transform: none;

    transition: none;
  }

}

/* ==========================================================
   TERMINI E CONDIZIONI
   Pagina legale BILANORA
========================================================== */

.terms-hero {
  position: relative;
  overflow: hidden;
  padding: 105px 0 92px;
  background:
    linear-gradient(180deg,#F6F1EA 0%,#F9F5EF 100%);
}

.terms-hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -360px;
  left: -285px;
  border-radius: 50%;
  background:
    radial-gradient(circle,rgba(217,154,26,.13),rgba(217,154,26,0) 70%);
  pointer-events: none;
}

.terms-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -285px;
  bottom: -320px;
  border-radius: 50%;
  background:
    radial-gradient(circle,rgba(67,133,104,.065),rgba(67,133,104,0) 70%);
  pointer-events: none;
}

.terms-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(340px,.85fr);
  gap: 78px;
  align-items: center;
}

.terms-hero-copy {
  max-width: 730px;
}

.terms-hero h1 {
  margin: 3px 0 21px;
  font-size: clamp(48px,6vw,72px);
  line-height: 1.02;
  letter-spacing: -3px;
}

.terms-hero h1 span {
  display: block;
  color: var(--primary-dark);
}

.terms-hero-copy > p {
  max-width: 670px;
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.75;
}

.terms-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.terms-meta > span {
  display: flex;
  flex-direction: column;
  min-width: 170px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(46,46,46,.07);
  color: var(--text-soft);
  font-size: 10px;
}

.terms-meta strong {
  margin-bottom: 2px;
  color: var(--anthracite);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.terms-provider-card {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(217,154,26,.18);
  box-shadow: 0 28px 72px rgba(46,46,46,.065);
}

.terms-provider-label {
  display: block;
  margin-bottom: 7px;
  color: var(--primary-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.05px;
}

.terms-provider-card h2 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.08;
}

.terms-provider-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.7;
}

.terms-provider-email {
  display: inline-block;
  margin-top: 17px;
  color: var(--anthracite);
  font-size: 14px;
  font-weight: 900;
}

.terms-provider-email:hover {
  color: var(--primary-dark);
}

.terms-summary-section {
  padding: 32px 0 88px;
  background: #FBF8F3;
}

.terms-summary-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 13px;
}

.terms-summary-card {
  min-height: 200px;
  padding: 23px;
  border-radius: 21px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(46,46,46,.07);
  box-shadow: 0 15px 42px rgba(46,46,46,.035);
}

.terms-summary-card > span {
  color: rgba(217,154,26,.45);
  font-size: 23px;
  font-weight: 950;
}

.terms-summary-card h3 {
  margin: 18px 0 9px;
  font-size: 18px;
  line-height: 1.15;
}

.terms-summary-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.65;
}

.terms-body-section {
  padding: 100px 0 112px;
  background:
    linear-gradient(180deg,#F3EEE7 0%,#F8F4EE 100%);
}

.terms-layout {
  display: grid;
  grid-template-columns: 245px minmax(0,1fr);
  gap: 65px;
  align-items: start;
}

.terms-index {
  position: sticky;
  top: 110px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(46,46,46,.07);
}

.terms-index-label {
  display: block;
  margin-bottom: 11px;
  color: var(--primary-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.05px;
}

.terms-index nav {
  display: grid;
  gap: 2px;
}

.terms-index a {
  padding: 8px 9px;
  border-radius: 10px;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 700;
  transition: background .2s ease,color .2s ease,transform .2s ease;
}

.terms-index a:hover {
  transform: translateX(3px);
  color: var(--anthracite);
  background: rgba(217,154,26,.08);
}

.terms-content {
  display: grid;
  gap: 18px;
}

.terms-article {
  scroll-margin-top: 110px;
  padding: 34px 36px;
  border-radius: 26px;
  background: rgba(255,255,255,.67);
  border: 1px solid rgba(46,46,46,.075);
  box-shadow: 0 18px 48px rgba(46,46,46,.035);
}

.terms-number {
  display: block;
  margin-bottom: 8px;
  color: rgba(217,154,26,.55);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .8px;
}

.terms-article h2 {
  margin: 0 0 15px;
  font-size: clamp(28px,3.6vw,40px);
  line-height: 1.07;
  letter-spacing: -1.25px;
}

.terms-article > p {
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.75;
}

.terms-article > p:last-child {
  margin-bottom: 0;
}

.terms-article > p a {
  color: var(--primary-dark);
  font-weight: 800;
}

.terms-note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  margin: 19px 0;
  padding: 14px 15px;
  border-radius: 15px;
  background: rgba(217,154,26,.065);
  border: 1px solid rgba(217,154,26,.13);
}

.terms-note > span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(217,154,26,.13);
  color: var(--primary-dark);
  font-size: 10px;
  font-weight: 900;
}

.terms-note p {
  margin: 0;
  color: var(--text-soft);
  font-size: 10px;
  line-height: 1.55;
}

.terms-note-warning {
  background: rgba(180,81,67,.055);
  border-color: rgba(180,81,67,.11);
}

.terms-note-warning > span {
  background: rgba(180,81,67,.11);
  color: #A44A3E;
}

.terms-rule-list {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.terms-rule-list > div {
  padding: 16px 17px;
  border-radius: 15px;
  background: rgba(246,241,234,.74);
  border: 1px solid rgba(46,46,46,.06);
}

.terms-rule-list strong,
.terms-rule-list span {
  display: block;
}

.terms-rule-list strong {
  font-size: 12px;
}

.terms-rule-list span {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 10px;
  line-height: 1.55;
}

.terms-duo-card {
  margin: 20px 0;
  padding: 20px;
  border-radius: 18px;
  background:
    linear-gradient(145deg,rgba(217,154,26,.09),rgba(255,255,255,.55));
  border: 1px solid rgba(217,154,26,.17);
}

.terms-duo-card > span {
  display: block;
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .9px;
}

.terms-duo-card > div {
  display: grid;
  grid-template-columns: 1fr 45px 1fr;
  align-items: center;
  gap: 8px;
}

.terms-duo-card strong {
  padding: 13px;
  border-radius: 14px;
  background: rgba(255,255,255,.64);
  text-align: center;
  font-size: 11px;
}

.terms-duo-card i {
  color: var(--primary-dark);
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.terms-duo-card p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 10px;
  line-height: 1.55;
}

.terms-ai-warning {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  margin: 20px 0;
  padding: 18px;
  border-radius: 18px;
  background:
    linear-gradient(145deg,rgba(217,154,26,.10),rgba(255,255,255,.53));
  border: 1px solid rgba(217,154,26,.19);
}

.terms-ai-warning > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  font-size: 17px;
  font-weight: 900;
}

.terms-ai-warning strong {
  display: block;
  font-size: 12px;
}

.terms-ai-warning p {
  margin: 5px 0 0;
  color: var(--text-soft);
  font-size: 10px;
  line-height: 1.55;
}

.terms-plan-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
  margin: 20px 0;
}

.terms-plan-card {
  padding: 21px;
  border-radius: 18px;
  background: rgba(246,241,234,.75);
  border: 1px solid rgba(46,46,46,.07);
}

.terms-plan-card-featured {
  border-color: rgba(217,154,26,.20);
  background:
    linear-gradient(145deg,rgba(217,154,26,.095),rgba(255,255,255,.58));
}

.terms-plan-card > span {
  display: block;
  color: var(--primary-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
}

.terms-plan-card > strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
}

.terms-plan-card small {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-soft);
}

.terms-plan-card p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 10px;
  line-height: 1.5;
}

.terms-promo-flow {
  display: grid;
  grid-template-columns: 1fr 35px 1fr 35px 1fr;
  gap: 7px;
  align-items: center;
  margin: 22px 0;
}

.terms-promo-flow > div {
  padding: 17px;
  border-radius: 16px;
  background: rgba(246,241,234,.76);
  border: 1px solid rgba(217,154,26,.12);
}

.terms-promo-flow > div > span {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: rgba(217,154,26,.13);
  color: var(--primary-dark);
  font-size: 9px;
  font-weight: 900;
}

.terms-promo-flow strong {
  font-size: 11px;
  line-height: 1.35;
}

.terms-promo-flow > i {
  text-align: center;
  color: var(--primary-dark);
  font-style: normal;
  font-weight: 900;
}

.terms-promo-total {
  background:
    linear-gradient(145deg,rgba(217,154,26,.12),rgba(255,255,255,.58)) !important;
}

.terms-promo-examples {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 9px;
  margin: 18px 0;
}

.terms-promo-examples > div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(46,46,46,.06);
}

.terms-promo-examples strong,
.terms-promo-examples span {
  display: block;
}

.terms-promo-examples strong {
  font-size: 10px;
}

.terms-promo-examples span {
  margin-top: 3px;
  color: var(--text-soft);
  font-size: 9px;
}

.terms-google-button {
  margin: 7px 0 3px;
}

.terms-delete-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 20px 0;
  padding: 19px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.53);
  border: 1px solid rgba(217,154,26,.16);
}

.terms-delete-box strong,
.terms-delete-box span {
  display: block;
}

.terms-delete-box strong {
  font-size: 13px;
}

.terms-delete-box span {
  margin-top: 3px;
  color: var(--text-soft);
  font-size: 10px;
}

.terms-delete-box .button {
  flex: 0 0 auto;
}

.terms-bullet-list {
  display: grid;
  gap: 7px;
  margin: 14px 0 20px;
  padding: 0;
  list-style: none;
}

.terms-bullet-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.6;
}

.terms-bullet-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #438568;
  font-weight: 900;
}

.terms-update-box {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  margin-top: 20px;
  padding: 17px 18px;
  border-radius: 16px;
  background: rgba(246,241,234,.75);
  border: 1px solid rgba(46,46,46,.06);
}

.terms-update-box > span {
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 900;
}

.terms-update-box strong {
  display: block;
  font-size: 11px;
}

.terms-update-box p {
  margin: 5px 0 0;
  color: var(--text-soft);
  font-size: 9px;
  line-height: 1.5;
}

.terms-contact-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 17px;
  background: rgba(217,154,26,.065);
  border: 1px solid rgba(217,154,26,.15);
}

.terms-contact-card strong {
  font-size: 16px;
}

.terms-contact-card span {
  color: var(--text-soft);
  font-size: 11px;
}

.terms-contact-card a {
  margin-top: 3px;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 850;
}

.terms-final-section {
  padding: 25px 0 100px;
  background: #FBF8F3;
}

.terms-final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding: 42px 46px;
  border-radius: 28px;
  background:
    linear-gradient(145deg,#F3E8D2,#FBF7F0);
  border: 1px solid rgba(217,154,26,.22);
}

.terms-final-card h2 {
  margin: 3px 0 10px;
  font-size: clamp(30px,4vw,43px);
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.terms-final-card p {
  max-width: 650px;
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.65;
}

.terms-final-card .button {
  flex: 0 0 auto;
}

.terms-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease,transform .65s ease;
}

.terms-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {

  .terms-hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .terms-provider-card {
    max-width: 620px;
  }

  .terms-summary-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .terms-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .terms-index {
    position: static;
  }

  .terms-index nav {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 4px;
  }

}

@media (max-width: 760px) {

  .terms-hero {
    padding: 72px 0 70px;
  }

  .terms-hero h1 {
    font-size: 46px;
    letter-spacing: -2px;
  }

  .terms-hero-copy > p {
    font-size: 16px;
  }

  .terms-provider-card {
    padding: 25px 22px;
  }

  .terms-summary-section {
    padding-bottom: 70px;
  }

  .terms-summary-grid,
  .terms-plan-grid,
  .terms-promo-examples {
    grid-template-columns: 1fr;
  }

  .terms-summary-card {
    min-height: auto;
  }

  .terms-body-section {
    padding: 75px 0 85px;
  }

  .terms-index nav {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .terms-article {
    padding: 25px 21px;
  }

  .terms-promo-flow {
    grid-template-columns: 1fr;
  }

  .terms-promo-flow > i {
    transform: rotate(90deg);
  }

  .terms-duo-card > div {
    grid-template-columns: 1fr;
  }

  .terms-delete-box,
  .terms-final-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .terms-delete-box .button,
  .terms-final-card .button {
    width: 100%;
  }

  .terms-update-box {
    grid-template-columns: 1fr;
  }

  .terms-final-card {
    padding: 28px 24px;
  }

  .terms-final-section {
    padding-bottom: 80px;
  }

}

@media (max-width: 460px) {

  .terms-index nav {
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {

  .terms-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

}


/* ==========================================
   HERO PROMO - CLONE COMPATTO DEL BLOCCO RESPONSIVE
   Usa la stessa struttura del blocco promo grande,
   ma con dimensioni ridotte nella parte iniziale.
========================================== */

.launch-cta-hero {
  max-width: 700px;
  margin: 0 0 28px;
  padding: 30px 28px 24px;
  border-radius: 28px;
}

.launch-cta-hero .launch-cta-head {
  max-width: none;
  margin: 0 0 22px;
  text-align: left;
}

.launch-cta-hero .launch-cta-badge {
  margin-bottom: 14px;
  padding: 7px 11px;
  font-size: 9px;
  letter-spacing: .9px;
}

.launch-cta-hero .launch-cta-head h2 {
  font-size: clamp(30px, 3.25vw, 44px);
  line-height: 1.02;
  letter-spacing: -1.55px;
}

.launch-cta-hero .launch-cta-head p {
  max-width: 590px;
  margin: 13px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

.launch-cta-hero .launch-example-grid {
  gap: 10px;
}

.launch-cta-hero .launch-example-card {
  padding: 16px;
  border-radius: 18px;
}

.launch-cta-hero .launch-example-card.featured {
  transform: translateY(-4px);
}

.launch-cta-hero .launch-example-number {
  top: 12px;
  right: 14px;
  font-size: 25px;
}

.launch-cta-hero .launch-example-label {
  margin-bottom: 14px;
  padding-right: 28px;
  font-size: 7px;
  letter-spacing: .9px;
}

.launch-cta-hero .launch-example-date small,
.launch-cta-hero .launch-example-free small {
  margin-bottom: 3px;
  font-size: 8px;
}

.launch-cta-hero .launch-example-date strong,
.launch-cta-hero .launch-example-free strong {
  font-size: 14px;
}

.launch-cta-hero .launch-example-arrow {
  margin: 9px 0;
  font-size: 15px;
}

.launch-cta-hero .launch-example-duration {
  margin-top: 11px;
  padding: 5px 8px;
  font-size: 8px;
}

.launch-cta-hero .hero-launch-details {
  margin-top: 15px;
}

@media (max-width: 1050px) {

  .launch-cta-hero {
    padding: 30px 24px 24px;
  }

  .launch-cta-hero .launch-example-card.featured {
    transform: none;
  }

}

@media (max-width: 760px) {

  .launch-cta-hero {
    padding: 26px 18px 20px;
    border-radius: 24px;
  }

  .launch-cta-hero .launch-cta-head {
    margin-bottom: 20px;
  }

  .launch-cta-hero .launch-cta-badge {
    max-width: 100%;
    margin-bottom: 15px;
    font-size: 8px;
    line-height: 1.35;
    white-space: normal;
  }

  .launch-cta-hero .launch-cta-head h2 {
    font-size: 31px;
    letter-spacing: -1.25px;
  }

  .launch-cta-hero .launch-cta-head p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.55;
  }

  .launch-cta-hero .launch-example-grid {
    gap: 10px;
  }

  .launch-cta-hero .launch-example-card {
    padding: 16px 15px;
    border-radius: 18px;
  }

  .launch-cta-hero .launch-example-label {
    margin-bottom: 12px;
    font-size: 7px;
  }

  .launch-cta-hero .launch-example-date strong,
  .launch-cta-hero .launch-example-free strong {
    font-size: 16px;
  }

  .launch-cta-hero .launch-example-arrow {
    margin: 9px 0;
  }

  .launch-cta-hero .launch-example-duration {
    margin-top: 10px;
  }

}
