:root{
  --bg:#0b0620;
  --bg-2:#0f0a26;
  --surface:#150f30;
  --surface-2:#1a1338;
  --border:rgba(255,255,255,0.08);
  --border-strong:rgba(255,255,255,0.14);
  --text:#f4f2fb;
  --text-dim:#b8b2d1;
  --text-faint:#8983a8;
  --accent:#7b55ff;
  --accent-2:#9950f8;
  --accent-soft:rgba(123,85,255,0.14);
  --white:#ffffff;
  --panel-bg:#0b0620;
}

*{box-sizing:border-box;margin:0;padding:0}

@font-face{
  font-family:'Space Grotesk';
  src:local('Space Grotesk');
  font-weight:400 700;
}

html{-webkit-text-size-adjust:100%}

body{
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Roboto,Helvetica,Arial,sans-serif;
  line-height:1.5;
  overflow-x:hidden;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer}

.wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 32px;
}

/* ---------- Header ---------- */
header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(11,6,32,0.82);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  height:92px;
}
.logo-mark{height:64px;width:auto;flex-shrink:0}
nav.main-nav{
  display:flex;
  align-items:center;
  gap:28px;
  flex-shrink:1;
  min-width:0;
}
.main-nav a{
  font-size:0.95rem;
  color:var(--text-dim);
  transition:color .15s ease;
  white-space:nowrap;
}
.main-nav a:hover{color:var(--text)}
.header-right{
  display:flex;
  align-items:center;
  gap:18px;
  flex-shrink:0;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  font-size:0.95rem;
  border-radius:10px;
  padding:12px 22px;
  border:1px solid transparent;
  white-space:nowrap;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:focus-visible{outline:2px solid var(--accent-2);outline-offset:2px}
.btn-primary{
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#fff;
  box-shadow:0 8px 24px -8px rgba(123,85,255,0.6);
}
.btn-primary:hover{transform:translateY(-1px);box-shadow:0 12px 28px -8px rgba(123,85,255,0.75)}
.btn-ghost{
  background:transparent;
  color:var(--text);
  border-color:var(--border-strong);
}
.btn-ghost:hover{border-color:var(--accent-2);background:rgba(153,80,248,0.08)}
.lang-switch{
  font-size:0.9rem;
  color:var(--text-dim);
  display:flex;
  align-items:center;
  gap:4px;
}
.nav-toggle{
  display:none;
  background:transparent;
  border:none;
  padding:0;
}
.nav-overlay{
  display:none;
}
.nav-cta-mobile{
  display:none;
}

/* ---------- Header (mobile / tablet compatto) ---------- */
@media (max-width:768px){
  .header-inner{
    min-height:60px;
    height:auto;
    padding-block:8px;
    padding-top:max(8px, env(safe-area-inset-top));
    width:100%;
    box-sizing:border-box;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .wrap.header-inner{
    padding-inline:16px;
  }
  header{
    background:rgba(8,6,24,0.78);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .logo-mark{
    height:40px;
    width:auto;
  }
  nav.main-nav{
    display:none;
  }
  .header-right{
    gap:10px;
  }
  .header-right .btn-primary{
    display:none;
  }
  .lang-switch{
    display:none;
  }
  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    min-width:44px;
    min-height:44px;
    border-radius:10px;
    color:var(--text);
    transition:background-color .15s ease;
  }
  .nav-toggle:hover{
    background:rgba(255,255,255,0.06);
  }
  .nav-toggle:active{
    background:rgba(255,255,255,0.1);
  }
  .nav-toggle:focus-visible{
    outline:2px solid var(--accent-2);
    outline-offset:2px;
  }
  .nav-toggle__icon{
    position:relative;
    width:22px;
    height:16px;
    display:inline-flex;
    flex-direction:column;
    justify-content:space-between;
  }
  .nav-toggle__icon span{
    display:block;
    width:100%;
    height:2px;
    border-radius:2px;
    background:currentColor;
    transition:transform .2s ease, opacity .2s ease;
  }
  .nav-open .nav-toggle__icon span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }
  .nav-open .nav-toggle__icon span:nth-child(2){
    opacity:0;
  }
  .nav-open .nav-toggle__icon span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }

  .main-nav.is-open{
    display:flex;
    flex-direction:column;
    position:fixed;
    top:calc(60px + env(safe-area-inset-top));
    left:0;
    right:0;
    max-width:100vw;
    max-height:calc(100vh - 60px - env(safe-area-inset-top));
    overflow-y:auto;
    z-index:101;
    gap:0;
    padding:8px 16px calc(16px + env(safe-area-inset-bottom));
    background:rgba(8,6,24,0.98);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(255,255,255,0.08);
    box-sizing:border-box;
  }
  .main-nav.is-open a{
    display:flex;
    align-items:center;
    min-height:44px;
    padding:10px 4px;
    border-bottom:1px solid rgba(255,255,255,0.06);
    font-size:1rem;
  }
  .main-nav.is-open a:last-of-type{
    border-bottom:none;
  }
  .nav-cta-mobile.btn{
    display:inline-flex;
    margin-top:14px;
    justify-content:center;
    border-bottom:none !important;
  }
  .nav-overlay:not([hidden]){
    display:block;
    position:fixed;
    inset:0;
    z-index:99;
    background:rgba(3,2,10,0.6);
  }
}

/* ---------- Hero ---------- */
:root{
  --td-background:#030414;
  --td-white:#f8f7ff;
  --td-text:rgba(238,234,251,0.76);
  --td-muted:rgba(218,210,241,0.58);
  --td-purple:#7c3cff;
  --td-purple-light:#a66fff;
  --td-card:rgba(16,13,50,0.72);
  --td-card-border:rgba(169,119,255,0.55);
}
.td-hero,
.td-hero *,
.td-hero *::before,
.td-hero *::after{
  box-sizing:border-box;
}
.td-hero{
  position:relative;
  min-height:920px;
  overflow:hidden;
  display:flex;
  align-items:center;
  padding:80px 28px;
  color:var(--td-white);
  background-color:var(--td-background);
  background-image:url("images/hero-background.png");
  background-repeat:no-repeat;
  background-position:center center;
  background-size:cover;
  isolation:isolate;
}
.td-hero__overlay{
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(90deg,
      rgba(2,3,16,0.98) 0%,
      rgba(2,3,16,0.93) 27%,
      rgba(2,3,16,0.68) 43%,
      rgba(2,3,16,0.14) 65%,
      rgba(2,3,16,0.2) 100%),
    linear-gradient(180deg,
      rgba(2,3,16,0.34) 0%,
      rgba(2,3,16,0.02) 58%,
      rgba(2,3,16,0.36) 100%);
  pointer-events:none;
}
.td-hero__container{
  position:relative;
  width:min(100%,1420px);
  min-height:760px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,0.92fr) minmax(520px,1.08fr);
  align-items:center;
  gap:60px;
}
.td-hero__content{
  position:relative;
  z-index:2;
  max-width:660px;
}
.td-hero__title{
  margin:0;
  color:var(--td-white);
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size:clamp(4rem,5.4vw,6.25rem);
  font-weight:730;
  line-height:0.96;
  letter-spacing:-0.066em;
}
.td-hero__title span{display:block}
.td-hero__title strong{
  color:var(--td-purple);
  font:inherit;
}
.td-hero__description{
  max-width:610px;
  margin:34px 0 0;
  color:var(--td-text);
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size:clamp(1rem,1.25vw,1.2rem);
  font-weight:400;
  line-height:1.75;
}
.td-hero__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:14px;
  margin-bottom:22px;
  color:var(--td-purple-light);
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.19em;
  text-transform:uppercase;
}
.td-hero__eyebrow::before{
  content:"";
  width:30px;
  height:1px;
  background:var(--td-purple-light);
  box-shadow:0 0 10px rgba(174,135,255,0.45);
}
.td-hero__actions{
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  align-items:center;
  gap:14px;
  margin-top:42px;
}
.td-hero__button{
  flex:1 1 0;
  min-width:0;
  width:auto;
  min-height:88px;
  padding:0 20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  white-space:nowrap;
  color:#fff;
  text-decoration:none;
  border:1px solid rgba(197,158,255,0.62);
  border-radius:13px;
  background:linear-gradient(120deg, #7333ec 0%, #8f42ff 52%, #692be1 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.23),
    0 20px 48px rgba(82,33,197,0.38),
    0 0 30px rgba(124,60,255,0.2);
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size:clamp(1.05rem,1.3vw,1.28rem);
  font-weight:700;
  transition:transform 220ms ease, box-shadow 220ms ease, filter 220ms ease, border-color 220ms ease;
}
.td-hero__button--ghost{
  background:transparent;
  border:2px solid rgba(255,255,255,0.4);
  box-shadow:none;
}
.td-hero__button--ghost:hover{
  border-color:rgba(255,255,255,0.7);
  box-shadow:none;
}
.td-hero__button svg{
  flex:0 0 auto;
  transition:transform 220ms ease;
}
.td-hero__button:hover{
  transform:translateY(-3px);
  border-color:rgba(219,192,255,0.82);
  filter:brightness(1.07);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 28px 60px rgba(82,33,197,0.48),
    0 0 45px rgba(124,60,255,0.28);
}
.td-hero__button--ghost:hover{filter:none}
.td-hero__button:hover svg{transform:translateX(5px)}
.td-hero__button:focus-visible{
  outline:3px solid rgba(190,151,255,0.7);
  outline-offset:5px;
}

/* Testimonial */
.td-hero__quote{
  position:absolute;
  top:64px;
  right:0;
  width:min(100%,290px);
  padding:30px 30px 28px;
  border:1px solid var(--td-card-border);
  border-radius:20px;
  background:
    radial-gradient(circle at 20% 0%, rgba(131,68,236,0.17), transparent 48%),
    var(--td-card);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 30px 80px rgba(0,0,0,0.34),
    0 0 35px rgba(92,44,193,0.13);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}
.td-hero__quote-mark{
  display:block;
  height:38px;
  color:var(--td-purple);
  font-family:Georgia, serif;
  font-size:4.2rem;
  font-weight:700;
  line-height:0.8;
}
.td-hero__quote blockquote{
  margin:22px 0 0;
  color:rgba(250,248,255,0.9);
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size:1rem;
  font-weight:400;
  line-height:1.62;
}
.td-hero__quote-divider{
  width:100%;
  height:1px;
  margin:24px 0 20px;
  background:linear-gradient(90deg, rgba(168,105,255,0.72), rgba(168,105,255,0.12));
}
.td-hero__quote strong,
.td-hero__quote > span:last-child{
  display:block;
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.td-hero__quote strong{
  color:var(--td-purple-light);
  font-size:1rem;
  font-weight:650;
}
.td-hero__quote > span:last-child{
  margin-top:6px;
  color:var(--td-muted);
  font-size:0.82rem;
}

/* Laptop */
@media (max-width:1280px){
  .td-hero{min-height:850px}
  .td-hero__container{grid-template-columns:minmax(0,0.95fr) minmax(430px,1.05fr)}
  .td-hero__title{font-size:clamp(3.6rem,5vw,5.45rem)}
  .td-hero__quote{
    right:10px;
    width:275px;
  }
}

/* Tablet */
@media (max-width:1000px){
  .td-hero{
    min-height:900px;
    padding-top:110px;
    padding-bottom:80px;
    align-items:flex-start;
    background-position:61% center;
  }
  .td-hero__overlay{
    background:
      linear-gradient(90deg,
        rgba(2,3,16,0.96) 0%,
        rgba(2,3,16,0.82) 47%,
        rgba(2,3,16,0.3) 100%),
      linear-gradient(180deg,
        rgba(2,3,16,0.25) 0%,
        rgba(2,3,16,0.18) 56%,
        rgba(2,3,16,0.88) 100%);
  }
  .td-hero__container{
    min-height:auto;
    grid-template-columns:1fr;
    align-items:start;
  }
  .td-hero__content{max-width:640px}
  .td-hero__quote{
    position:relative;
    top:auto;
    right:auto;
    bottom:auto;
    width:min(100%,430px);
    margin:90px 0 0 auto;
  }
}

/* Mobile */
@media (max-width:680px){
  .td-hero{
    min-height:0;
    padding:68px 18px 40px;
    background-position:63% center;
  }
  .td-hero__overlay{
    background:
      linear-gradient(180deg,
        rgba(2,3,16,0.86) 0%,
        rgba(2,3,16,0.72) 44%,
        rgba(2,3,16,0.97) 100%),
      linear-gradient(90deg,
        rgba(2,3,16,0.96) 0%,
        rgba(2,3,16,0.72) 68%,
        rgba(2,3,16,0.44) 100%);
  }
  .td-hero__container{gap:34px}
  .td-hero__title{
    max-width:520px;
    margin-bottom:0;
    font-size:clamp(3rem,13vw,4.3rem);
    line-height:1.02;
  }
  .td-hero__description{
    margin-top:18px;
    max-width:52ch;
    color:var(--td-white);
    font-size:1rem;
    line-height:1.6;
  }
  .td-hero__actions{
    flex-direction:column;
    align-items:stretch;
    gap:12px;
    margin-top:24px;
  }
  .td-hero__button{
    width:100%;
    min-height:56px;
    padding:0 22px;
    font-size:1rem;
    white-space:normal;
  }
  .td-hero__quote{
    width:100%;
    margin-top:32px;
    padding:20px 22px;
  }
  .td-hero__quote-mark{
    height:28px;
    font-size:3rem;
  }
  .td-hero__quote blockquote{
    margin-top:14px;
    font-size:0.95rem;
    line-height:1.5;
  }
  .td-hero__quote-divider{margin:16px 0 14px}
}

/* Mobile piccolo */
@media (max-width:430px){
  .td-hero{
    padding-top:60px;
    background-position:58% center;
  }
  .td-hero__title{font-size:clamp(2.6rem,12vw,3.4rem)}
}

/* Accessibilità */
@media (prefers-reduced-motion:reduce){
  .td-hero__button,
  .td-hero__button svg{transition:none}
  .td-hero__button:hover{transform:none}
  .td-hero__button:hover svg{transform:none}
}

/* ---------- Sections shared ---------- */
section{
  padding:88px 0;
}
.section-head{
  text-align:center;
  max-width:640px;
  margin:0 auto 52px;
}
.section-head h2{
  font-size:clamp(1.7rem,2.6vw,2.2rem);
  font-weight:700;
  letter-spacing:-0.01em;
  text-wrap:balance;
}
.section-head p{
  margin-top:12px;
  color:var(--text-dim);
  font-size:1.02rem;
}

/* ---------- Mission (chi siamo) ---------- */
:root{
  --td-mission-bg:#070512;
  --td-mission-surface:rgba(20,13,46,0.78);
  --td-mission-surface-hover:rgba(27,17,59,0.92);
  --td-mission-text:#f7f5ff;
  --td-mission-muted:#c6c0d5;
  --td-mission-subtle:#9189a7;
  --td-mission-purple:#8d54ff;
  --td-mission-purple-light:#b478ff;
  --td-mission-border:rgba(141,84,255,0.46);
  --td-mission-border-soft:rgba(141,84,255,0.18);
  --td-mission-radius:20px;
  --td-mission-container:1120px;
}

.td-mission{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding:112px 24px 120px;
  color:var(--td-mission-text);
  background:
    radial-gradient(circle at 50% 12%, rgba(112,48,225,0.1), transparent 34%),
    linear-gradient(180deg, #080513 0%, var(--td-mission-bg) 100%);
}
.td-mission__container{
  position:relative;
  z-index:2;
  width:min(100%,var(--td-mission-container));
  margin-inline:auto;
}
.td-mission__glow{
  position:absolute;
  z-index:0;
  width:540px;
  height:540px;
  border-radius:50%;
  pointer-events:none;
  filter:blur(110px);
  opacity:0.13;
}
.td-mission__glow--left{
  top:18%;
  left:-340px;
  background:#6031c9;
}
.td-mission__glow--right{
  right:-360px;
  bottom:4%;
  background:#8d54ff;
}

/* Header */
.td-mission__header{
  max-width:920px;
  margin-inline:auto;
  text-align:center;
}
.td-mission__eyebrow{
  margin:0;
  color:var(--td-mission-purple-light);
  font-size:13px;
  font-weight:700;
  line-height:1.2;
  letter-spacing:0.32em;
  text-transform:uppercase;
}
.td-mission__eyebrow-line{
  display:block;
  width:74px;
  height:1px;
  margin:20px auto 24px;
  background:linear-gradient(90deg, transparent, var(--td-mission-purple), transparent);
}
.td-mission__title{
  margin:0;
  color:var(--td-mission-text);
  font-family:inherit;
  font-size:clamp(40px,5vw,68px);
  font-weight:700;
  line-height:1.02;
  letter-spacing:-0.052em;
  text-wrap:balance;
}
.td-mission__title span{color:var(--td-mission-purple)}
.td-mission__intro{
  max-width:760px;
  margin:28px auto 0;
}
.td-mission__intro p{
  margin:0;
  color:var(--td-mission-muted);
  font-size:17px;
  font-weight:400;
  line-height:1.6;
  letter-spacing:-0.012em;
}
.td-mission__intro p + p{margin-top:16px}
.td-mission__intro strong{
  color:var(--td-mission-purple-light);
  font-weight:600;
}

/* Divider */
.td-mission__divider{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:16px;
  width:min(100%,690px);
  margin:38px auto 0;
}
.td-mission__divider-line{
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(141,84,255,0.62));
}
.td-mission__divider-line:last-child{
  background:linear-gradient(90deg, rgba(141,84,255,0.62), transparent);
}
.td-mission__divider-icon{
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  color:var(--td-mission-purple);
  border:1px solid rgba(141,84,255,0.25);
  border-radius:50%;
  background:#0c071a;
  box-shadow:
    0 0 0 5px rgba(141,84,255,0.035),
    0 0 24px rgba(141,84,255,0.17);
}

/* Manifesto */
.td-mission__manifesto{
  margin:24px auto 34px;
  color:#d7baff;
  font-size:clamp(27px,3vw,39px);
  font-weight:650;
  line-height:1.18;
  letter-spacing:-0.038em;
  text-align:center;
  text-wrap:balance;
}
.td-mission__manifesto span{color:var(--td-mission-purple)}

/* Cards grid */
.td-mission__cards{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
}

/* Card */
.td-mission-card{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:505px;
  border:1px solid var(--td-mission-border);
  border-radius:var(--td-mission-radius);
  background:
    linear-gradient(145deg, rgba(34,20,72,0.68) 0%, rgba(14,9,34,0.86) 72%),
    var(--td-mission-surface);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.025),
    0 24px 80px rgba(0,0,0,0.23);
  transition:transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.td-mission-card:hover{
  transform:translateY(-5px);
  border-color:rgba(163,99,255,0.75);
  background:
    linear-gradient(145deg, rgba(41,24,85,0.78) 0%, rgba(15,9,37,0.94) 72%),
    var(--td-mission-surface-hover);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 30px 90px rgba(0,0,0,0.33),
    0 0 44px rgba(141,84,255,0.09);
}
.td-mission-card__content{
  position:relative;
  z-index:2;
  flex:1;
  padding:34px 32px 28px;
}
.td-mission-card__top{
  display:grid;
  grid-template-columns:92px minmax(0,1fr);
  align-items:start;
  gap:22px;
}
.td-mission-card__icon{
  display:grid;
  place-items:center;
  width:88px;
  height:88px;
  color:#a668ff;
  border:1px solid rgba(141,84,255,0.43);
  border-radius:18px;
  background:
    radial-gradient(circle at 30% 20%, rgba(153,89,255,0.22), transparent 58%),
    rgba(72,38,137,0.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 14px 40px rgba(0,0,0,0.18);
}
.td-mission-card__heading{padding-top:6px}
.td-mission-card__eyebrow{
  margin:0 0 14px;
  color:var(--td-mission-purple-light);
  font-size:13px;
  font-weight:700;
  line-height:1.25;
  letter-spacing:0.16em;
  text-transform:uppercase;
}
.td-mission-card__title{
  margin:0;
  color:var(--td-mission-text);
  font-size:clamp(25px,2.25vw,33px);
  font-weight:650;
  line-height:1.08;
  letter-spacing:-0.04em;
  text-wrap:balance;
}
.td-mission-card__accent-line{
  display:block;
  width:26px;
  height:2px;
  margin:27px 0 22px;
  border-radius:999px;
  background:var(--td-mission-purple);
  box-shadow:0 0 13px rgba(141,84,255,0.4);
}
.td-mission-card__list{
  display:grid;
  gap:15px;
  margin:0;
  padding:0;
  list-style:none;
}
.td-mission-card__list li{
  display:flex;
  align-items:center;
  gap:13px;
  color:#f0ecf8;
  font-size:17px;
  font-weight:450;
  line-height:1.4;
}
.td-mission-card__check{
  display:inline-flex;
  flex:0 0 auto;
  color:var(--td-mission-purple-light);
}

/* Card link */
.td-mission-card__link{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin:0 32px;
  padding:24px 0 26px;
  color:var(--td-mission-purple-light);
  border-top:1px solid rgba(141,84,255,0.34);
  font-size:18px;
  font-weight:650;
  line-height:1.3;
  letter-spacing:-0.02em;
  text-decoration:none;
  transition:color 180ms ease;
}
.td-mission-card__link svg{
  flex:0 0 auto;
  transition:transform 180ms ease;
}
.td-mission-card__link:hover,
.td-mission-card__link:focus-visible{
  color:#c89cff;
}
.td-mission-card__link:hover svg,
.td-mission-card__link:focus-visible svg{
  transform:translateX(5px);
}
.td-mission-card__link:focus-visible{
  outline:2px solid var(--td-mission-purple-light);
  outline-offset:6px;
  border-radius:3px;
}

/* Decorative circles */
.td-mission-card__decoration{
  position:absolute;
  right:-78px;
  bottom:-90px;
  z-index:1;
  width:300px;
  height:300px;
  border:1px solid rgba(141,84,255,0.09);
  border-radius:50%;
  pointer-events:none;
}
.td-mission-card__decoration::before,
.td-mission-card__decoration::after{
  content:"";
  position:absolute;
  inset:36px;
  border:1px solid rgba(141,84,255,0.075);
  border-radius:inherit;
}
.td-mission-card__decoration::after{
  inset:80px;
  border-color:rgba(141,84,255,0.07);
}

/* Tablet */
@media (max-width:900px){
  .td-mission{padding:88px 22px 96px}
  .td-mission__cards{grid-template-columns:1fr}
  .td-mission-card{min-height:480px}
  .td-mission-card__title{font-size:31px}
}

/* Mobile */
@media (max-width:640px){
  .td-mission{padding:72px 18px 80px}
  .td-mission__eyebrow{
    font-size:11px;
    letter-spacing:0.25em;
  }
  .td-mission__eyebrow-line{
    margin-top:16px;
    margin-bottom:20px;
  }
  .td-mission__title{
    font-size:clamp(36px,10.5vw,48px);
    line-height:1.02;
  }
  .td-mission__title br{display:none}
  .td-mission__intro{margin-top:24px}
  .td-mission__intro p{
    font-size:15px;
    line-height:1.62;
  }
  .td-mission__desktop-break{display:none}
  .td-mission__divider{
    gap:11px;
    margin-top:30px;
  }
  .td-mission__manifesto{
    margin-top:22px;
    margin-bottom:30px;
    font-size:27px;
  }
  .td-mission__cards{gap:18px}
  .td-mission-card{
    min-height:0;
    border-radius:18px;
  }
  .td-mission-card__content{padding:25px 22px 24px}
  .td-mission-card__top{
    grid-template-columns:62px minmax(0,1fr);
    gap:16px;
  }
  .td-mission-card__icon{
    width:62px;
    height:62px;
    border-radius:14px;
  }
  .td-mission-card__icon svg{
    width:35px;
    height:35px;
  }
  .td-mission-card__heading{padding-top:1px}
  .td-mission-card__eyebrow{
    margin-bottom:9px;
    font-size:10px;
    letter-spacing:0.14em;
  }
  .td-mission-card__title{
    font-size:23px;
    line-height:1.1;
  }
  .td-mission-card__title br{display:none}
  .td-mission-card__accent-line{
    margin-top:23px;
    margin-bottom:19px;
  }
  .td-mission-card__list{gap:13px}
  .td-mission-card__list li{font-size:15px}
  .td-mission-card__link{
    margin-inline:22px;
    padding-block:20px 22px;
    font-size:16px;
  }
  .td-mission-card__decoration{
    right:-130px;
    bottom:-135px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  .td-mission-card,
  .td-mission-card__link svg{
    transition:none;
  }
  .td-mission-card:hover{transform:none}
}

/* ---------- Starting points ---------- */
:root{
  --sp-bg:#050619;
  --sp-bg-deep:#02030d;
  --sp-card:rgba(14,16,42,0.9);
  --sp-card-hover:rgba(19,20,53,0.96);
  --sp-border:rgba(158,128,230,0.2);
  --sp-border-hover:rgba(159,112,255,0.65);
  --sp-white:#f8f7ff;
  --sp-text:rgba(235,231,249,0.7);
  --sp-muted:rgba(223,216,242,0.52);
  --sp-purple:#8d5cf6;
  --sp-purple-light:#ae87ff;
  --sp-blue:#4c8dff;
}
.starting-point,
.starting-point *,
.starting-point *::before,
.starting-point *::after{
  box-sizing:border-box;
}
.starting-point{
  position:relative;
  overflow:hidden;
  padding:76px 24px 72px;
  background:
    radial-gradient(circle at 13% 8%, rgba(93,60,188,0.12), transparent 30%),
    radial-gradient(circle at 86% 3%, rgba(84,48,164,0.1), transparent 26%),
    linear-gradient(180deg, var(--sp-bg) 0%, var(--sp-bg-deep) 100%);
}
.starting-point::before{
  content:"";
  position:absolute;
  top:-260px;
  right:-170px;
  width:550px;
  height:550px;
  border:1px solid rgba(167,116,255,0.46);
  border-radius:50%;
  box-shadow:
    0 0 46px rgba(137,83,240,0.12),
    inset 0 0 46px rgba(137,83,240,0.05);
  pointer-events:none;
}
.starting-point__container{
  position:relative;
  z-index:1;
  width:min(100%,1420px);
  margin:0 auto;
}

/* Header */
.starting-point__header{
  display:grid;
  grid-template-columns:minmax(0,0.85fr) minmax(340px,1.15fr);
  align-items:end;
  gap:70px;
  margin-bottom:52px;
}
.starting-point__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:14px;
  color:var(--sp-purple-light);
  font-size:0.78rem;
  font-weight:700;
  line-height:1;
  letter-spacing:0.19em;
  text-transform:uppercase;
}
.starting-point__eyebrow::before{
  content:"";
  width:30px;
  height:1px;
  background:var(--sp-purple-light);
  box-shadow:0 0 10px rgba(174,135,255,0.45);
}
.starting-point__title h2{
  margin:24px 0 0;
  color:var(--sp-white);
  font-size:clamp(3.3rem,6vw,6.3rem);
  font-weight:720;
  line-height:0.88;
  letter-spacing:-0.065em;
}
.starting-point__title h2 span{
  display:block;
  color:var(--sp-purple);
  font-weight:inherit;
}
.starting-point__intro{
  max-width:580px;
  margin:0 0 14px;
  color:var(--sp-text);
  font-size:clamp(1.05rem,1.5vw,1.35rem);
  line-height:1.5;
}
.starting-point__intro span{display:block}

/* Grid */
.starting-point__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}
.starting-card{
  position:relative;
  min-height:244px;
  overflow:hidden;
  border:1px solid var(--sp-border);
  border-radius:12px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.025), rgba(255,255,255,0)),
    var(--sp-card);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.025),
    0 22px 55px rgba(0,0,0,0.2);
  transition:transform 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}
.starting-card::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  background:radial-gradient(circle at 10% 10%, rgba(142,87,246,0.13), transparent 42%);
  transition:opacity 220ms ease;
}
.starting-card:hover{
  transform:translateY(-6px);
  border-color:var(--sp-border-hover);
  background-color:var(--sp-card-hover);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 28px 65px rgba(23,7,66,0.32),
    0 0 28px rgba(117,67,215,0.08);
}
.starting-card:hover::before{opacity:1}
.starting-card__content{
  position:relative;
  z-index:2;
  min-height:244px;
  padding:28px 34px 25px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.starting-card__line{
  width:28px;
  height:2px;
  margin-bottom:20px;
  border-radius:999px;
  background:var(--sp-purple-light);
  box-shadow:0 0 10px rgba(174,135,255,0.35);
}
.starting-card h3{
  margin:0;
  color:var(--sp-white);
  font-size:clamp(1.65rem,2vw,2.25rem);
  font-weight:680;
  line-height:1.08;
  letter-spacing:-0.045em;
}
.starting-card h3 span{display:block}
.starting-card p{
  max-width:255px;
  margin:18px 0 0;
  color:var(--sp-text);
  font-size:1rem;
  line-height:1.5;
}
.starting-card__arrow{
  margin-top:auto;
  color:var(--sp-purple-light);
  font-size:1.65rem;
  font-weight:300;
  line-height:1;
  transition:transform 220ms ease, color 220ms ease;
}
.starting-card:hover .starting-card__arrow{
  transform:translateX(6px);
  color:var(--sp-white);
}

/* Decorative backgrounds */
.starting-card__graphic{
  position:absolute;
  z-index:1;
  inset:0 0 0 45%;
  pointer-events:none;
  opacity:0.42;
  transition:opacity 220ms ease, transform 350ms ease;
}
.starting-card:hover .starting-card__graphic{
  opacity:0.7;
  transform:scale(1.025);
}

/* Entry: flowing paths */
.starting-card--entry .starting-card__graphic{
  background:
    repeating-radial-gradient(ellipse at 100% 70%,
      transparent 0 18px,
      rgba(141,92,246,0.22) 19px 20px,
      transparent 21px 37px);
  transform:rotate(-14deg) scale(1.25);
}

/* Growth: diagonal trajectories */
.starting-card--growth .starting-card__graphic{
  background:
    repeating-linear-gradient(132deg,
      transparent 0 24px,
      rgba(151,110,235,0.17) 25px 26px,
      transparent 27px 42px);
  clip-path:polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

/* Interview: speech curves */
.starting-card--interview .starting-card__graphic::before,
.starting-card--interview .starting-card__graphic::after{
  content:"";
  position:absolute;
  border:1px solid rgba(151,110,235,0.22);
  border-radius:50%;
}
.starting-card--interview .starting-card__graphic::before{
  width:200px;
  height:200px;
  top:-24px;
  right:-16px;
}
.starting-card--interview .starting-card__graphic::after{
  width:116px;
  height:116px;
  top:68px;
  right:-4px;
}

/* Specialization: steps */
.starting-card--specialization .starting-card__graphic{
  inset:0 0 0 50%;
  background:
    linear-gradient(to top right,
      transparent 0 42%,
      rgba(146,102,230,0.12) 43% 49%,
      transparent 50%);
}
.starting-card--specialization .starting-card__graphic::before{
  content:"";
  position:absolute;
  right:-10px;
  bottom:0;
  width:210px;
  height:190px;
  background:
    repeating-linear-gradient(to top,
      rgba(146,102,230,0.13) 0 1px,
      transparent 1px 27px);
  clip-path:polygon(
    0 100%, 0 88%, 15% 88%, 15% 73%, 30% 73%, 30% 57%,
    45% 57%, 45% 41%, 60% 41%, 60% 25%, 75% 25%, 75% 10%,
    100% 10%, 100% 100%
  );
}

/* Company: growth curve */
.starting-card--company .starting-card__graphic{
  background:
    repeating-linear-gradient(90deg,
      transparent 0 14px,
      rgba(151,110,235,0.08) 15px 16px);
}
.starting-card--company .starting-card__graphic::after{
  content:"";
  position:absolute;
  width:310px;
  height:220px;
  right:-20px;
  bottom:-115px;
  border:1px solid rgba(171,126,255,0.5);
  border-radius:50%;
  transform:rotate(-16deg);
  box-shadow:0 -1px 8px rgba(155,108,248,0.12);
}

/* Abroad: globe */
.starting-card--abroad .starting-card__graphic{
  inset:0 0 0 48%;
  background:radial-gradient(circle at 78% 60%, rgba(123,81,209,0.15), transparent 42%);
}
.starting-card--abroad .starting-card__graphic::before{
  content:"";
  position:absolute;
  width:270px;
  height:270px;
  top:-20px;
  right:-45px;
  border:1px solid rgba(152,110,229,0.22);
  border-radius:50%;
  background:
    repeating-radial-gradient(circle at center,
      transparent 0 25px,
      rgba(147,104,228,0.08) 26px 27px,
      transparent 28px 50px);
}
.starting-card--abroad .starting-card__graphic::after{
  content:"";
  position:absolute;
  width:230px;
  height:230px;
  top:0;
  right:-25px;
  border-radius:50%;
  background:
    repeating-linear-gradient(12deg,
      transparent 0 9px,
      rgba(145,102,224,0.08) 10px 11px);
  clip-path:circle(50%);
}

/* CTA */
.starting-point__cta{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) minmax(390px,0.9fr);
  align-items:center;
  gap:34px;
  margin-top:22px;
  padding:24px 34px;
  border:1px solid rgba(157,121,232,0.28);
  border-radius:12px;
  background:
    radial-gradient(circle at 3% 50%, rgba(108,65,200,0.12), transparent 26%),
    rgba(12,14,36,0.88);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.025),
    0 22px 58px rgba(0,0,0,0.2);
}
.starting-point__cta::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:210px;
  opacity:0.32;
  background:
    repeating-radial-gradient(circle at 10% 50%,
      transparent 0 6px,
      rgba(142,93,242,0.23) 7px 8px,
      transparent 9px 16px);
  mask-image:linear-gradient(90deg, #000, transparent);
}
.starting-point__cta-icon{
  position:relative;
  z-index:1;
  width:76px;
  height:76px;
  display:grid;
  place-items:center;
  border:2px solid rgba(142,91,245,0.55);
  border-radius:50%;
  background:radial-gradient(circle, rgba(141,92,246,0.18), rgba(35,24,76,0.5));
  box-shadow:0 0 24px rgba(129,75,225,0.14);
}
.starting-point__cta-icon span{
  width:25px;
  height:25px;
  background:var(--sp-purple-light);
  clip-path:polygon(50% 0, 63% 35%, 100% 50%, 63% 65%, 50% 100%, 37% 65%, 0 50%, 37% 35%);
  filter:drop-shadow(0 0 8px rgba(174,135,255,0.55));
}
.starting-point__cta-copy{
  position:relative;
  z-index:1;
}
.starting-point__cta-copy h3{
  margin:0;
  color:var(--sp-white);
  font-size:clamp(1.45rem,2vw,2rem);
  font-weight:680;
  letter-spacing:-0.035em;
}
.starting-point__cta-copy p{
  margin:8px 0 0;
  color:var(--sp-text);
  font-size:0.98rem;
  line-height:1.5;
}
.starting-point__cta-copy p span{display:block}
.starting-point__cta-action{
  position:relative;
  z-index:1;
  padding-left:34px;
  border-left:1px solid rgba(169,139,232,0.22);
}
.starting-point__button{
  min-height:60px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  color:var(--sp-purple-light);
  text-decoration:none;
  border:1px solid rgba(162,110,255,0.85);
  border-radius:9px;
  background:rgba(98,47,189,0.08);
  font-size:1rem;
  font-weight:650;
  transition:color 220ms ease, background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.starting-point__button:hover{
  color:var(--sp-white);
  background:linear-gradient(135deg, rgba(120,66,225,0.82), rgba(99,49,197,0.82));
  box-shadow:0 14px 38px rgba(94,47,180,0.3);
  transform:translateY(-2px);
}
.starting-point__button span{
  font-size:1.5rem;
  line-height:1;
}
.starting-point__cta-action small{
  margin-top:13px;
  display:flex;
  align-items:center;
  gap:9px;
  color:var(--sp-muted);
  font-size:0.8rem;
}
.starting-point__cta-action small span{
  color:var(--sp-purple-light);
  font-size:1rem;
}

/* Tablet */
@media (max-width:1050px){
  .starting-point__header{
    grid-template-columns:1fr;
    gap:28px;
  }
  .starting-point__intro{margin:0}
  .starting-point__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .starting-point__cta{grid-template-columns:auto minmax(0,1fr)}
  .starting-point__cta-action{
    grid-column:1 / -1;
    padding:24px 0 0;
    border-top:1px solid rgba(169,139,232,0.18);
    border-left:0;
  }
}

/* Mobile */
@media (max-width:680px){
  .starting-point{padding:56px 16px 64px}
  .starting-point::before{
    width:360px;
    height:360px;
    top:-220px;
    right:-200px;
  }
  .starting-point__header{margin-bottom:32px}
  .starting-point__title h2{font-size:clamp(3.2rem,16vw,4.6rem)}
  .starting-point__intro{
    margin-top:14px;
    font-size:1.05rem;
    line-height:1.55;
  }
  .starting-point__grid{
    grid-template-columns:1fr;
    gap:18px;
    margin-top:8px;
  }
  .starting-card{
    min-height:196px;
    border-radius:16px;
    transition:transform 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
  }
  .starting-card:active{
    transform:scale(0.98);
    border-color:var(--sp-border-hover);
    background-color:var(--sp-card-hover);
  }
  .starting-card:focus-visible{
    outline:2px solid var(--sp-purple-light);
    outline-offset:3px;
  }
  .starting-card__content{
    min-height:196px;
    padding:26px 24px 22px;
  }
  .starting-card__graphic{left:48%}
  .starting-card__line{margin-bottom:16px}
  .starting-card h3{font-size:1.5rem}
  .starting-card p{
    max-width:none;
    margin-top:12px;
    font-size:1rem;
    line-height:1.6;
  }
  .starting-card__arrow{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    margin-top:20px;
    margin-left:-10px;
    font-size:1.5rem;
  }
  .starting-point__cta{
    grid-template-columns:1fr;
    gap:20px;
    padding:25px 22px;
  }
  .starting-point__cta-icon{
    width:64px;
    height:64px;
  }
  .starting-point__cta-action{grid-column:auto}
  .starting-point__button{
    min-height:56px;
    padding:0 18px;
    font-size:0.9rem;
  }
}

@media (prefers-reduced-motion:reduce){
  .starting-card,
  .starting-card::before,
  .starting-card__graphic,
  .starting-card__arrow,
  .starting-point__button{transition:none}
  .starting-card:hover,
  .starting-card:active,
  .starting-point__button:hover{transform:none}
}

/* ---------- Method / Process ---------- */
:root{
  --method-bg:#07091e;
  --method-bg-deep:#030413;
  --method-card:rgba(19,18,62,0.82);
  --method-card-hover:rgba(27,22,79,0.92);
  --method-border:rgba(166,126,255,0.28);
  --method-border-strong:rgba(169,121,255,0.82);
  --method-white:#ffffff;
  --method-text:rgba(239,235,255,0.7);
  --method-muted:rgba(219,210,255,0.46);
  --method-purple:#8c5cff;
  --method-purple-light:#aa82ff;
  --method-purple-dark:#6438d6;
}
.career-method,
.career-method *,
.career-method *::before,
.career-method *::after{
  box-sizing:border-box;
}
.career-method{
  position:relative;
  overflow:hidden;
  padding:104px 24px 110px;
  background:
    radial-gradient(circle at 50% -10%, rgba(114,65,255,0.18), transparent 35%),
    radial-gradient(circle at 14% 75%, rgba(92,49,210,0.1), transparent 27%),
    radial-gradient(circle at 88% 75%, rgba(86,43,195,0.08), transparent 25%),
    linear-gradient(180deg, var(--method-bg) 0%, var(--method-bg-deep) 100%);
}
.career-method::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,0.45), transparent 70%);
}
.career-method__container{
  position:relative;
  z-index:1;
  width:min(100%,1560px);
  margin:0 auto;
}
.career-method__header{
  max-width:980px;
  margin:0 auto 70px;
  text-align:center;
}
.career-method__eyebrow{
  display:inline-block;
  color:var(--method-purple-light);
  font-size:0.78rem;
  font-weight:750;
  line-height:1.2;
  letter-spacing:0.18em;
  text-transform:uppercase;
}
.career-method__header h2{
  margin:22px 0 0;
  color:var(--method-white);
  font-size:clamp(2.7rem,5vw,5rem);
  font-weight:720;
  line-height:1;
  letter-spacing:-0.055em;
}
.career-method__header p{
  margin:24px 0 0;
  color:var(--method-text);
  font-size:clamp(1.05rem,1.7vw,1.35rem);
  line-height:1.5;
}

/* Method accordion (career-engineering.html) */
.accordion{
  display:flex;
  flex-direction:column;
  gap:20px;
  max-width:1100px;
  margin:0 auto;
}
.accordion__item{
  background:var(--method-card);
  border:1px solid var(--method-border);
  border-radius:20px;
  overflow:hidden;
  transition:border-color 220ms ease, background-color 220ms ease;
}
.accordion__item[open]{
  border-color:var(--method-border-strong);
  background:var(--method-card-hover);
}
.accordion__item summary{
  display:flex;
  align-items:center;
  gap:24px;
  padding:28px;
  cursor:pointer;
  list-style:none;
}
.accordion__item summary::-webkit-details-marker{display:none}
.accordion-header{
  gap:24px;
}
.accordion-number{
  width:56px;
  height:56px;
  border-radius:18px;
  background:linear-gradient(180deg, var(--method-purple-light), var(--method-purple));
  color:var(--method-white);
  display:flex;
  justify-content:center;
  align-items:center;
  flex-shrink:0;
  font-size:1.2rem;
  font-weight:700;
}
.accordion-title{
  flex:1;
}
.accordion-title h3{
  margin:0;
  color:var(--method-white);
  font-size:2rem;
  font-weight:720;
}
.accordion-title span{
  display:block;
  margin-top:6px;
  color:var(--method-purple-light);
  font-size:1.15rem;
}
.accordion__icon{
  width:16px;
  height:16px;
  flex-shrink:0;
  border-right:2px solid var(--method-purple-light);
  border-bottom:2px solid var(--method-purple-light);
  transform:rotate(45deg);
  transition:transform 220ms ease;
}
.accordion__item[open] .accordion__icon{
  transform:rotate(225deg);
}

/* Accordion content */
.accordion-content{
  padding:40px 48px;
}
.accordion-content > p{
  margin:24px 0 32px;
  max-width:1200px;
  font-size:1.08rem;
  line-height:1.75;
  color:var(--method-text);
}

/* Grid */
.accordion-grid{
  display:grid;
  grid-template-columns:2fr 360px;
  gap:40px;
  align-items:start;
}

/* Cards */
.accordion-card{
  background:var(--method-card-hover);
  border:1px solid var(--method-border);
  border-radius:22px;
  padding:36px;
}
.accordion-card h4{
  margin:0 0 28px;
  font-size:0.9rem;
  text-transform:uppercase;
  letter-spacing:0.18em;
  font-weight:700;
  color:var(--method-purple-light);
}

/* List */
.accordion-card ul{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:18px;
}
.accordion-card li{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:1.08rem;
  line-height:1.55;
  color:var(--method-white);
}
.accordion-card li::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--method-purple);
  flex-shrink:0;
}

/* Output */
.output-card{
  padding-top:52px;
}
.output-card h4{
  margin-bottom:18px;
}
.output-card p{
  margin:0;
  font-size:1.45rem;
  line-height:1.55;
  font-weight:700;
  color:var(--method-white);
}

/* Callout finale */
.accordion-callout{
  margin-top:32px;
  padding:26px 30px;
  border-radius:18px;
  background:rgba(140,92,255,0.08);
  border:1px solid var(--method-border);
}
.accordion-callout p{
  margin:0;
  color:var(--method-white);
  font-size:1.05rem;
  line-height:1.75;
}

@media (max-width:900px){
  .accordion-content{padding:32px 24px}
  .accordion-grid{grid-template-columns:1fr; gap:24px}
  .accordion-card{padding:28px}
  .output-card{padding-top:0}
  .accordion-title h3{font-size:1.5rem}
}
@media (max-width:720px){
  .accordion__item summary{padding:22px; gap:18px}
  .accordion-number{width:46px; height:46px; font-size:0.9rem}
}

/* Timeline */
.career-method__timeline{
  position:relative;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}
.career-method__line{
  position:absolute;
  z-index:0;
  top:68px;
  left:8%;
  right:8%;
  height:2px;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(122,70,255,0.45) 8%,
      rgba(156,99,255,0.95) 50%,
      rgba(122,70,255,0.45) 92%,
      transparent 100%);
  box-shadow:0 0 8px rgba(139,92,246,0.75), 0 0 28px rgba(139,92,246,0.36);
}
.career-method__line::after{
  content:"";
  position:absolute;
  inset:-5px 0;
  background:inherit;
  filter:blur(10px);
  opacity:0.45;
}

/* Card */
.career-step{
  position:relative;
  z-index:1;
  min-width:0;
  min-height:520px;
  padding:30px 27px 28px;
  display:flex;
  flex-direction:column;
  border:1px solid var(--method-border);
  border-radius:20px;
  background:
    radial-gradient(circle at 50% -2%, rgba(128,72,255,0.2), transparent 38%),
    linear-gradient(150deg, rgba(255,255,255,0.045), rgba(255,255,255,0.008)),
    var(--method-card);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05), 0 26px 70px rgba(0,0,0,0.25);
  transition:transform 240ms ease, border-color 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
}
.career-step::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  opacity:0;
  pointer-events:none;
  background:radial-gradient(circle at 50% 0%, rgba(153,101,255,0.24), transparent 40%);
  transition:opacity 240ms ease;
}
.career-step:hover{
  transform:translateY(-8px);
  border-color:var(--method-border-strong);
  background-color:var(--method-card-hover);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 32px 82px rgba(31,12,92,0.36),
    0 0 34px rgba(123,72,255,0.12);
}
.career-step:hover::before{opacity:1}
.career-step--featured{
  border-color:rgba(160,108,255,0.8);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 28px 80px rgba(51,20,138,0.38),
    0 0 28px rgba(128,73,255,0.18);
}
.career-step--featured::after{
  content:"";
  position:absolute;
  inset:-1px;
  z-index:-1;
  border-radius:inherit;
  background:linear-gradient(135deg,
    rgba(168,112,255,0.9),
    transparent 35%,
    transparent 65%,
    rgba(116,72,255,0.7));
  filter:blur(11px);
  opacity:0.28;
}

/* Connector */
.career-step__connector{
  position:absolute;
  z-index:4;
  top:60px;
  right:-18px;
  width:14px;
  height:14px;
  display:grid;
  place-items:center;
}
.career-step:last-child .career-step__connector{display:none}
.career-step__dot{
  width:10px;
  height:10px;
  border:2px solid rgba(255,255,255,0.55);
  border-radius:50%;
  background:var(--method-purple-light);
  box-shadow:
    0 0 0 5px rgba(139,92,246,0.13),
    0 0 13px rgba(155,105,255,0.9),
    0 0 30px rgba(132,72,255,0.65);
}

/* Number */
.career-step__number{
  position:relative;
  z-index:2;
  min-height:64px;
}
.career-step__number span{
  position:relative;
  display:inline-block;
  color:var(--method-purple-light);
  font-size:1.75rem;
  font-weight:750;
  line-height:1;
  letter-spacing:-0.04em;
}
.career-step__number span::after{
  content:"";
  display:block;
  width:34px;
  height:2px;
  margin-top:12px;
  border-radius:999px;
  background:var(--method-purple);
  box-shadow:0 0 12px rgba(139,92,246,0.6);
}

/* Main content */
.career-step__content{
  position:relative;
  z-index:2;
  padding-top:36px;
}
.career-step__phase{
  display:block;
  color:var(--method-purple-light);
  font-size:0.72rem;
  font-weight:750;
  line-height:1.2;
  letter-spacing:0.13em;
  text-transform:uppercase;
}
.career-step h3{
  margin:20px 0 0;
  color:var(--method-white);
  font-size:clamp(1.8rem,2vw,2.45rem);
  font-weight:700;
  line-height:1.02;
  letter-spacing:-0.045em;
}
.career-step h3 strong{
  display:block;
  color:var(--method-purple);
  font:inherit;
}
.career-step__content > p{
  margin:28px 0 0;
  color:var(--method-text);
  font-size:0.96rem;
  line-height:1.62;
}

/* Output */
.career-step__output{
  position:relative;
  z-index:2;
  margin-top:auto;
  padding-top:23px;
  border-top:1px solid rgba(181,153,255,0.16);
}
.career-step__output-label{
  display:block;
  color:var(--method-purple-light);
  font-size:0.68rem;
  font-weight:750;
  line-height:1;
  letter-spacing:0.13em;
  text-transform:uppercase;
}
.career-step__output-value{
  display:flex;
  align-items:center;
  gap:13px;
  margin-top:17px;
}
.career-step__output-icon{
  position:relative;
  flex:0 0 auto;
  width:20px;
  height:20px;
  border:2px solid var(--method-purple);
  border-radius:50%;
  box-shadow:0 0 12px rgba(139,92,246,0.35);
}
.career-step__output-icon::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--method-purple-light);
  transform:translate(-50%,-50%);
  box-shadow:0 0 8px rgba(169,130,255,0.9);
}
.career-step__output-value strong{
  color:var(--method-white);
  font-size:0.95rem;
  font-weight:600;
  line-height:1.3;
}

/* Tablet */
@media (max-width:1200px){
  .career-method__timeline{grid-template-columns:repeat(2,minmax(0,1fr))}
  .career-method__line{display:none}
  .career-step{min-height:440px}
  .career-step__connector{display:none}
  .career-step:last-child{grid-column:1 / -1}
}

/* Mobile */
@media (max-width:700px){
  .career-method{padding:60px 18px 68px}
  .career-method__header{margin-bottom:38px}
  .career-method__header h2{font-size:clamp(2.4rem,9vw,3.2rem)}
  .career-method__header p{
    max-width:38ch;
    margin:16px auto 0;
    font-size:1.05rem;
    line-height:1.55;
  }
  .career-method__timeline{
    position:relative;
    grid-template-columns:1fr;
    gap:32px;
    padding-left:26px;
  }
  .career-method__timeline::before{
    content:"";
    position:absolute;
    top:8px;
    bottom:8px;
    left:9px;
    width:2px;
    background:linear-gradient(180deg,
      transparent,
      rgba(147,93,255,0.9) 6%,
      rgba(147,93,255,0.55) 94%,
      transparent);
    box-shadow:0 0 13px rgba(139,92,246,0.45);
  }
  .career-step,
  .career-step:last-child{
    grid-column:auto;
    min-height:auto;
    padding:28px 24px 26px;
  }
  .career-step::after{
    content:"";
    position:absolute;
    top:34px;
    left:-29px;
    width:16px;
    height:16px;
    border:3px solid rgba(2,3,20,0.9);
    border-radius:50%;
    background:var(--method-purple-light);
    box-shadow:
      0 0 0 4px rgba(139,92,246,0.28),
      0 0 18px rgba(139,92,246,0.85);
  }
  .career-step__number{
    min-height:auto;
    margin-bottom:6px;
  }
  .career-step__number span{
    font-size:2.4rem;
    color:var(--method-white);
    text-shadow:0 0 24px rgba(153,101,255,0.55);
  }
  .career-step__number span::after{
    width:44px;
    margin-top:14px;
  }
  .career-step__content{padding-top:22px}
  .career-step__phase{font-size:0.76rem}
  .career-step h3{
    margin-top:14px;
    font-size:1.7rem;
  }
  .career-step__content > p{
    max-width:none;
    margin-top:16px;
    font-size:1rem;
    line-height:1.6;
  }
  .career-step__output{margin-top:26px}
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  .career-step,
  .career-step::before{transition:none}
  .career-step:hover{transform:none}
}

/* ---------- Roles ---------- */
.roles-section{
  position:relative;
  overflow:hidden;
  padding:88px 24px 96px;
  background:
    radial-gradient(circle at 10% 0%, rgba(126,72,237,0.42), transparent 38%),
    radial-gradient(circle at 86% 50%, rgba(116,62,227,0.34), transparent 42%),
    linear-gradient(135deg, #2a116b 0%, #1a0d48 46%, #10092d 100%);
}
.roles-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(90deg, transparent, rgba(138,92,246,0.025), transparent);
}
.roles-section__container{
  position:relative;
  z-index:1;
  width:min(100%,1480px);
  margin:0 auto;
}
.roles-section__header{
  max-width:900px;
  margin:0 auto 58px;
  text-align:center;
}
.roles-section__header h2{
  margin:0;
  color:#fff;
  font-size:clamp(2.5rem,5vw,4.8rem);
  font-weight:700;
  line-height:1.04;
  letter-spacing:-0.05em;
}
.roles-section__header h2 span{display:block}
.roles-section__header p{
  margin:24px 0 0;
  color:rgba(239,235,255,0.72);
  font-size:clamp(1rem,1.8vw,1.35rem);
  line-height:1.5;
}
.roles-grid{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:22px;
  align-items:stretch;
}
.role-card{
  position:relative;
  grid-column:span 3;
  min-height:338px;
  padding:32px 28px 26px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  color:#fff;
  text-decoration:none;
  border:1px solid rgba(167,127,255,0.55);
  border-radius:18px;
  background:
    radial-gradient(circle at 78% 0%, rgba(137,80,255,0.25), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)),
    rgba(18,18,61,0.72);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05), 0 24px 65px rgba(0,0,0,0.2);
  transition:transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}
.role-card::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  background:radial-gradient(circle at 20% 20%, rgba(151,93,255,0.16), transparent 42%);
  transition:opacity 220ms ease;
}
.role-card:hover{
  transform:translateY(-7px);
  border-color:rgba(183,148,255,0.95);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 28px 75px rgba(37,17,105,0.36),
    0 0 32px rgba(114,65,255,0.11);
}
.role-card:hover::before{opacity:1}
.role-card__category{
  position:relative;
  z-index:1;
  color:#a97aff;
  font-size:0.76rem;
  font-weight:700;
  line-height:1.2;
  letter-spacing:0.13em;
  text-transform:uppercase;
}
.role-card h3{
  position:relative;
  z-index:1;
  margin:40px 0 0;
  color:#fff;
  font-size:clamp(2rem,2.5vw,3rem);
  font-weight:700;
  line-height:0.98;
  letter-spacing:-0.055em;
}
.role-card h3 span{
  display:block;
  margin-top:5px;
  color:#8c5cff;
}
.role-card__divider{
  position:relative;
  z-index:1;
  width:34px;
  height:2px;
  margin-top:24px;
  border-radius:999px;
  background:#8c5cff;
}
.role-card__bottom{
  position:relative;
  z-index:1;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-top:auto;
  padding-top:26px;
}
.role-card__bottom p{
  max-width:260px;
  margin:0;
  color:rgba(239,235,255,0.72);
  font-size:0.97rem;
  line-height:1.55;
}
.role-card__arrow{
  flex:0 0 auto;
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  color:#fff;
  font-size:1.55rem;
  line-height:1;
  border:2px solid #8c5cff;
  border-radius:50%;
  background:rgba(21,17,66,0.76);
  transition:transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}
.role-card:hover .role-card__arrow{
  transform:translate(3px,-3px);
  background:rgba(121,69,255,0.22);
  box-shadow:0 0 24px rgba(133,76,255,0.32);
}
.role-card--more{
  border-style:dashed;
  background:
    radial-gradient(circle at 80% 10%, rgba(126,75,255,0.12), transparent 40%),
    rgba(12,12,47,0.6);
}
.role-card--more h3{font-size:clamp(1.9rem,2.35vw,2.75rem)}
.role-card:nth-child(5){grid-column:2 / span 3}
.role-card:nth-child(6){grid-column:5 / span 3}
.role-card:nth-child(7){grid-column:8 / span 3}
@media (max-width:1180px){
  .roles-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .role-card,
  .role-card:nth-child(5),
  .role-card:nth-child(6),
  .role-card:nth-child(7){grid-column:auto}
  .role-card--more{grid-column:span 2}
}
@media (max-width:720px){
  .roles-section{padding:68px 18px 74px}
  .roles-section__header{margin-bottom:40px}
  .roles-grid{grid-template-columns:1fr;gap:16px}
  .role-card,
  .role-card--more{grid-column:auto;min-height:300px;padding:27px 22px 22px}
  .role-card h3{margin-top:34px}
  .role-card__bottom p{max-width:75%}
  .role-card__arrow{width:44px;height:44px}
}

/* ---------- Career Engineering ---------- */
:root{
  --td-career-bg:#05040e;
  --td-career-panel:#080617;
  --td-career-panel-light:#0c0820;
  --td-career-text:#f8f7fc;
  --td-career-muted:#bcb7ca;
  --td-career-subtle:#898397;
  --td-career-purple:#8247ff;
  --td-career-purple-light:#a969ff;
  --td-career-purple-bright:#722bff;
  --td-career-border:rgba(126,70,255,0.64);
  --td-career-border-soft:rgba(126,70,255,0.19);
  --td-career-container:1440px;
  --td-career-radius:26px;
}

.td-career{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding:78px 32px;
  color:var(--td-career-text);
  background:
    radial-gradient(circle at 72% 35%, rgba(84,30,198,0.13), transparent 32%),
    radial-gradient(circle at 13% 75%, rgba(79,35,183,0.08), transparent 26%),
    var(--td-career-bg);
}
.td-career__container{
  position:relative;
  z-index:2;
  width:min(100%,var(--td-career-container));
  margin-inline:auto;
}
.td-career__glow{
  position:absolute;
  z-index:0;
  width:520px;
  height:520px;
  border-radius:50%;
  filter:blur(120px);
  pointer-events:none;
  opacity:0.12;
}
.td-career__glow--left{
  left:-300px;
  bottom:-180px;
  background:#5021c2;
}
.td-career__glow--right{
  top:-150px;
  right:-220px;
  background:#7b37ff;
}

/* Panel */
.td-career__panel{
  position:relative;
  overflow:hidden;
  padding:66px 66px 0;
  border:1px solid var(--td-career-border);
  border-radius:var(--td-career-radius);
  background:
    radial-gradient(circle at 88% 28%, rgba(95,39,226,0.11), transparent 29%),
    linear-gradient(145deg, rgba(11,8,29,0.97), rgba(5,4,17,0.99));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.025),
    0 40px 110px rgba(0,0,0,0.38);
}
.td-career__panel::before{
  content:"";
  position:absolute;
  top:35px;
  right:28px;
  width:420px;
  height:420px;
  opacity:0.3;
  pointer-events:none;
  background-image:radial-gradient(circle, rgba(137,77,255,0.32) 1px, transparent 1px);
  background-size:7px 7px;
  mask-image:radial-gradient(circle, #000, transparent 69%);
}

/* Main layout */
.td-career__main{
  display:grid;
  grid-template-columns:minmax(360px,0.82fr) minmax(650px,1.5fr);
  gap:52px;
  align-items:center;
  min-height:570px;
}

/* Left content */
.td-career__content{
  position:relative;
  z-index:3;
  padding:4px 0 46px;
}
.td-career__eyebrow{
  margin:0 0 34px;
  color:var(--td-career-purple-light);
  font-size:14px;
  font-weight:700;
  line-height:1.2;
  letter-spacing:0.29em;
  text-transform:uppercase;
}
.td-career__title{
  max-width:530px;
  margin:0;
  color:var(--td-career-text);
  font-size:clamp(52px,5vw,72px);
  font-weight:730;
  line-height:0.96;
  letter-spacing:-0.062em;
}
.td-career__title span{color:var(--td-career-purple)}
.td-career__accent{
  display:block;
  width:66px;
  height:3px;
  margin:34px 0 28px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--td-career-purple-light), var(--td-career-purple));
  box-shadow:0 0 20px rgba(130,71,255,0.44);
}
.td-career__description{
  max-width:520px;
  margin:0;
  color:var(--td-career-muted);
  font-size:18px;
  line-height:1.58;
  letter-spacing:-0.016em;
}
.td-career__cta{
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  min-width:285px;
  margin-top:36px;
  padding:20px 24px 20px 30px;
  color:#fff;
  border:1px solid rgba(187,135,255,0.85);
  border-radius:10px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.15), transparent 40%),
    linear-gradient(135deg, #6034e9, #7128ff);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 10px 35px rgba(100,43,238,0.3);
  font-size:19px;
  font-weight:650;
  line-height:1.2;
  text-decoration:none;
  transition:transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.td-career__cta:hover{
  transform:translateY(-3px);
  border-color:rgba(220,191,255,1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    0 16px 45px rgba(100,43,238,0.42);
}
.td-career__cta svg{transition:transform 180ms ease}
.td-career__cta:hover svg{transform:translateX(5px)}
.td-career__cta:focus-visible{
  outline:2px solid #cda6ff;
  outline-offset:5px;
}

/* Roadmap */
.td-career__roadmap{
  position:relative;
  z-index:2;
  min-height:460px;
}
.td-career__roadmap-line{
  position:absolute;
  inset:15px 0 auto 0;
  width:100%;
  height:360px;
  overflow:visible;
  pointer-events:none;
}
.td-career-step{
  position:absolute;
  width:190px;
  text-align:center;
}
.td-career-step--one{
  left:1%;
  top:243px;
}
.td-career-step--two{
  left:28%;
  top:172px;
}
.td-career-step--three{
  left:54%;
  top:117px;
}
.td-career-step--four{
  right:0;
  top:32px;
}
.td-career-step__icon{
  position:relative;
  z-index:2;
  display:grid;
  place-items:center;
  width:92px;
  height:92px;
  margin-inline:auto;
  color:var(--td-career-purple-light);
  border:1px solid rgba(135,73,255,0.85);
  border-radius:50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(130,71,255,0.17), transparent 52%),
    rgba(10,7,28,0.94);
  box-shadow:
    0 0 0 7px rgba(123,60,255,0.025),
    0 0 34px rgba(126,70,255,0.15);
}
.td-career-step__connector{
  display:block;
  width:1px;
  height:26px;
  margin-inline:auto;
  background:linear-gradient(180deg, rgba(134,75,255,0.95), rgba(134,75,255,0.18));
}
.td-career-step__number{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  margin:-1px auto 18px;
  color:var(--td-career-purple-light);
  border:1px solid rgba(134,75,255,0.75);
  border-radius:50%;
  background:rgba(18,10,43,0.96);
  font-size:15px;
  font-weight:600;
  box-shadow:0 0 22px rgba(126,70,255,0.18);
}
.td-career-step h3{
  margin:0 0 9px;
  color:var(--td-career-text);
  font-size:21px;
  font-weight:650;
  line-height:1.2;
  letter-spacing:-0.03em;
}
.td-career-step p{
  margin:0;
  color:var(--td-career-muted);
  font-size:14px;
  line-height:1.55;
}

/* Benefits */
.td-career__benefits{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  border-top:1px solid var(--td-career-border-soft);
  border-right:1px solid var(--td-career-border-soft);
  border-left:1px solid var(--td-career-border-soft);
  border-radius:14px 14px 0 0;
  background:linear-gradient(180deg, rgba(11,8,29,0.74), rgba(6,5,18,0.45));
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.015);
}
.td-career-benefit{
  position:relative;
  display:grid;
  grid-template-columns:82px minmax(0,1fr);
  gap:17px;
  align-items:center;
  min-height:135px;
  padding:25px 26px;
}
.td-career-benefit:not(:last-child)::after{
  content:"";
  position:absolute;
  top:27px;
  right:0;
  bottom:27px;
  width:1px;
  background:linear-gradient(180deg, transparent, rgba(129,72,255,0.42), transparent);
}
.td-career-benefit__icon{
  display:grid;
  place-items:center;
  width:78px;
  height:78px;
  color:var(--td-career-purple);
  border:1px solid rgba(128,70,255,0.25);
  border-radius:15px;
  background:
    radial-gradient(circle at 30% 20%, rgba(117,54,255,0.13), transparent 55%),
    rgba(13,9,37,0.8);
}
.td-career-benefit h3{
  margin:0 0 8px;
  color:var(--td-career-text);
  font-size:16px;
  font-weight:600;
  line-height:1.2;
  letter-spacing:-0.02em;
}
.td-career-benefit p{
  margin:0;
  color:var(--td-career-muted);
  font-size:14px;
  line-height:1.55;
}

/* Large tablet */
@media (max-width:1180px){
  .td-career__panel{padding:54px 44px 0}
  .td-career__main{
    grid-template-columns:1fr;
    gap:12px;
  }
  .td-career__content{
    max-width:700px;
    padding-bottom:10px;
  }
  .td-career__roadmap{min-height:470px}
  .td-career__benefits{grid-template-columns:repeat(2,minmax(0,1fr))}
  .td-career-benefit:nth-child(2)::after{display:none}
  .td-career-benefit:nth-child(-n + 2){
    border-bottom:1px solid var(--td-career-border-soft);
  }
}

/* Tablet */
@media (max-width:800px){
  .td-career{padding:54px 20px}
  .td-career__panel{padding:42px 28px 0}
  .td-career__title{font-size:clamp(46px,9vw,62px)}
  .td-career__roadmap{
    display:grid;
    gap:18px;
    min-height:0;
    padding:38px 0 44px;
  }
  .td-career__roadmap-line{display:none}
  .td-career-step{
    position:relative;
    inset:auto;
    display:grid;
    grid-template-columns:76px 46px minmax(0,1fr);
    align-items:center;
    gap:14px;
    width:100%;
    text-align:left;
  }
  .td-career-step__icon{
    width:70px;
    height:70px;
    margin:0;
  }
  .td-career-step__icon svg{
    width:34px;
    height:34px;
  }
  .td-career-step__connector{display:none}
  .td-career-step__number{
    width:40px;
    height:40px;
    margin:0;
  }
  .td-career-step h3{margin-bottom:4px}
  .td-career-step p br{display:none}
}

/* Mobile */
@media (max-width:620px){
  .td-career{padding:38px 14px}
  .td-career__panel{
    padding:34px 20px 0;
    border-radius:20px;
  }
  .td-career__eyebrow{
    margin-bottom:24px;
    font-size:11px;
    letter-spacing:0.23em;
  }
  .td-career__title{font-size:clamp(42px,13vw,54px)}
  .td-career__description{font-size:16px}
  .td-career__cta{
    width:100%;
    min-width:0;
    margin-top:28px;
  }
  .td-career-step{
    grid-template-columns:62px 40px minmax(0,1fr);
    gap:11px;
  }
  .td-career-step__icon{
    width:58px;
    height:58px;
  }
  .td-career-step__icon svg{
    width:29px;
    height:29px;
  }
  .td-career-step h3{font-size:18px}
  .td-career-step p{font-size:13px}
  .td-career__benefits{grid-template-columns:1fr}
  .td-career-benefit{
    grid-template-columns:64px minmax(0,1fr);
    min-height:0;
    padding:22px 18px;
  }
  .td-career-benefit:not(:last-child)::after{
    top:auto;
    right:18px;
    bottom:0;
    left:18px;
    width:auto;
    height:1px;
    background:linear-gradient(90deg, transparent, rgba(129,72,255,0.35), transparent);
  }
  .td-career-benefit:nth-child(-n + 2){border-bottom:0}
  .td-career-benefit__icon{
    width:58px;
    height:58px;
  }
  .td-career-benefit__icon svg{
    width:30px;
    height:30px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  .td-career__cta,
  .td-career__cta svg{transition:none}
  .td-career__cta:hover{transform:none}
}

/* ---------- Companies (aziende) ---------- */
:root{
  --companies-bg:#7333ec;
  --companies-border:rgba(255,255,255,0.16);
  --companies-border-hover:rgba(255,255,255,0.32);
  --companies-text:#ffffff;
  --companies-muted:rgba(255,255,255,0.78);
  --companies-purple:#7c3aed;
  --companies-purple-light:#c084fc;
  --companies-card-surface:rgba(20,16,49,0.9);
  --companies-card-surface-hover:rgba(28,21,66,0.96);
  --companies-card-border:rgba(145,91,255,0.22);
  --companies-card-border-hover:rgba(164,104,255,0.48);
  --companies-card-text:#ffffff;
  --companies-card-muted:#aaa6bd;
  --companies-radius:24px;
  --companies-card-radius:18px;
}
.companies-section{
  position:relative;
  overflow:hidden;
  padding:96px 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(126,72,237,0.42), transparent 38%),
    radial-gradient(circle at 86% 50%, rgba(116,62,227,0.34), transparent 42%),
    linear-gradient(135deg, #2a116b 0%, #1a0d48 46%, #10092d 100%);
  color:var(--companies-text);
}
#aziende{padding:116px 24px}
.companies-section__inner{
  position:relative;
  display:grid;
  grid-template-columns:minmax(280px,0.95fr) minmax(0,1.9fr);
  align-items:start;
  gap:64px;
  width:min(1440px,100%);
  margin:0 auto;
  padding:72px 56px;
  overflow:hidden;
  background:transparent;
  border:none;
  border-radius:var(--companies-radius);
  box-shadow:none;
}
.companies-section__intro,
.companies-section__cards{
  position:relative;
  z-index:2;
}
.companies-section__intro{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.companies-section__eyebrow{
  display:inline-block;
  margin-bottom:24px;
  color:var(--companies-purple-light);
  font-size:0.82rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.companies-section__title{
  max-width:540px;
  margin:0;
  color:var(--companies-text);
  font-size:clamp(2.2rem,3.5vw,4rem);
  font-weight:700;
  line-height:1.08;
  letter-spacing:-0.045em;
}
.companies-section__title span{color:var(--companies-purple)}
.companies-section__description{
  max-width:540px;
  margin:28px 0 0;
  color:var(--companies-muted);
  font-size:1rem;
  line-height:1.75;
}
.companies-section__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:38px;
  padding:16px 22px;
  border:1px solid rgba(255,255,255,0.7);
  border-radius:10px;
  background:#ffffff;
  color:var(--companies-purple);
  font-size:0.95rem;
  font-weight:650;
  line-height:1;
  text-decoration:none;
  box-shadow:0 8px 24px -12px rgba(0,0,0,0.28);
  transition:transform 180ms ease, box-shadow 180ms ease;
}
.companies-section__cta:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px -10px rgba(0,0,0,0.35);
}
.companies-section__cta svg{transition:transform 180ms ease}
.companies-section__cta:hover svg{transform:translateX(4px)}
.companies-section__cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.company-card{
  position:relative;
  display:flex;
  flex-direction:column;
  padding:30px 28px 26px;
  overflow:hidden;
  border:1px solid var(--companies-card-border);
  border-radius:var(--companies-card-radius);
  background:
    radial-gradient(circle at 50% 0, rgba(121,63,213,0.14), transparent 38%),
    var(--companies-card-surface);
  box-shadow:0 20px 50px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.025);
  transition:transform 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}
.company-card:hover{
  transform:translateY(-6px);
  border-color:var(--companies-card-border-hover);
  background:
    radial-gradient(circle at 50% 0, rgba(121,63,213,0.22), transparent 40%),
    var(--companies-card-surface-hover);
  box-shadow:0 28px 70px rgba(0,0,0,0.38), 0 0 50px rgba(125,58,237,0.08);
}
.company-card__icon{
  position:relative;
  display:grid;
  place-items:center;
  width:56px;
  height:56px;
  margin:0 0 20px;
  color:var(--companies-purple-light);
}
.company-card__icon svg{
  width:44px;
  height:44px;
  overflow:visible;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
  filter:
    drop-shadow(0 0 6px rgba(192,132,252,0.5))
    drop-shadow(0 0 18px rgba(126,34,206,0.25));
}
.company-card h3{
  margin:0 0 14px;
  color:var(--companies-card-text);
  font-size:1.42rem;
  font-weight:700;
  line-height:1.15;
  letter-spacing:-0.025em;
}
.company-card > p{
  margin:0;
  color:var(--companies-card-muted);
  font-size:0.95rem;
  line-height:1.65;
}
.companies-section__decoration{
  position:absolute;
  bottom:-20px;
  left:-40px;
  z-index:1;
  width:560px;
  height:230px;
  opacity:0.22;
  pointer-events:none;
  background-image:radial-gradient(circle, rgba(255,255,255,0.9) 1px, transparent 1.4px);
  background-size:9px 9px;
  mask-image:radial-gradient(ellipse at left bottom, black 0%, rgba(0,0,0,0.9) 32%, transparent 72%);
  transform:rotate(-7deg) skewX(-15deg);
}
.companies-section__decoration::before,
.companies-section__decoration::after,
.companies-section__decoration span{
  content:"";
  position:absolute;
  left:-40px;
  width:620px;
  height:90px;
  border-radius:50%;
  border-top:1px solid rgba(255,255,255,0.28);
}
.companies-section__decoration::before{
  bottom:42px;
  transform:rotate(5deg);
}
.companies-section__decoration::after{
  bottom:84px;
  transform:rotate(-2deg);
}
.companies-section__decoration span:nth-child(1){
  bottom:14px;
  transform:rotate(9deg);
}
.companies-section__decoration span:nth-child(2){
  bottom:112px;
  transform:rotate(-7deg);
}
.companies-section__decoration span:nth-child(3){
  bottom:142px;
  opacity:0.5;
  transform:rotate(-11deg);
}
@media (max-width:1180px){
  .companies-section__inner{
    grid-template-columns:1fr;
    gap:54px;
  }
  .companies-section__intro{max-width:760px}
  .companies-section__title br{display:none}
}
@media (max-width:900px){
  .companies-section{padding:72px 20px}
  .companies-section__inner{padding:52px 30px}
  .companies-section__cards{grid-template-columns:1fr}
  .company-card > p{min-height:auto}
}
@media (max-width:560px){
  .companies-section{padding:56px 14px}
  .companies-section__inner{
    gap:44px;
    padding:40px 20px;
    border-radius:18px;
  }
  .companies-section__title{font-size:clamp(2rem,11vw,3rem)}
  .companies-section__description{font-size:0.95rem}
  .companies-section__cta{
    width:100%;
    padding-inline:16px;
  }
  .company-card{padding:32px 24px 26px}
  .company-card__icon{margin-left:0}
  .company-card__icon::after{
    left:24px;
    transform:none;
  }
}
@media (prefers-reduced-motion:reduce){
  .company-card,
  .companies-section__cta,
  .companies-section__cta svg{transition:none}
}

/* ---------- Why choose ---------- */
:root{
  --why-bg:#050619;
  --why-bg-deep:#02030d;
  --why-card:rgba(14,16,42,0.9);
  --why-card-hover:rgba(19,20,53,0.96);
  --why-border:rgba(158,128,230,0.24);
  --why-border-hover:rgba(159,112,255,0.72);
  --why-white:#f8f7ff;
  --why-text:rgba(235,231,249,0.72);
  --why-purple:#8d5cf6;
  --why-purple-light:#ae87ff;
}
.why-tomorrowdevs,
.why-tomorrowdevs *,
.why-tomorrowdevs *::before,
.why-tomorrowdevs *::after{
  box-sizing:border-box;
}
.why-tomorrowdevs{
  position:relative;
  overflow:hidden;
  padding:96px 24px 104px;
  background:
    radial-gradient(circle at 50% 8%, rgba(107,66,202,0.12), transparent 30%),
    radial-gradient(circle at 15% 92%, rgba(90,49,177,0.08), transparent 26%),
    linear-gradient(180deg, var(--why-bg) 0%, var(--why-bg-deep) 100%);
}
.why-tomorrowdevs::before,
.why-tomorrowdevs::after{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  border:1px solid rgba(153,105,245,0.42);
  border-radius:50%;
  pointer-events:none;
}
.why-tomorrowdevs::before{
  top:-245px;
  right:-210px;
  box-shadow:
    0 0 38px rgba(130,78,225,0.11),
    inset 0 0 38px rgba(130,78,225,0.04);
}
.why-tomorrowdevs::after{
  left:-245px;
  bottom:-255px;
  box-shadow:
    0 0 38px rgba(130,78,225,0.09),
    inset 0 0 38px rgba(130,78,225,0.04);
}
.why-tomorrowdevs__container{
  position:relative;
  z-index:1;
  width:min(100%,1400px);
  margin:0 auto;
}

/* Header */
.why-tomorrowdevs__header{
  max-width:850px;
  margin:0 auto 58px;
  text-align:center;
}
.why-tomorrowdevs__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:14px;
  color:var(--why-purple-light);
  font-size:0.78rem;
  font-weight:700;
  line-height:1;
  letter-spacing:0.19em;
  text-transform:uppercase;
}
.why-tomorrowdevs__eyebrow::before{
  content:"";
  width:34px;
  height:1px;
  background:var(--why-purple-light);
  box-shadow:0 0 10px rgba(174,135,255,0.4);
}
.why-tomorrowdevs__header h1,
.why-tomorrowdevs__header h2{
  margin:22px 0 0;
  color:var(--why-white);
  font-size:clamp(2.9rem,5.5vw,5.3rem);
  font-weight:720;
  line-height:0.96;
  letter-spacing:-0.06em;
}
.why-tomorrowdevs__header h1 span,
.why-tomorrowdevs__header h2 span{
  display:block;
  color:var(--why-purple);
}

/* Grid */
.why-tomorrowdevs__grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  align-items:stretch;
  gap:22px;
}

/* Card */
.why-card{
  position:relative;
  overflow:hidden;
  border:1px solid var(--why-border);
  border-radius:18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.028), rgba(255,255,255,0)),
    var(--why-card);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.028),
    0 24px 62px rgba(0,0,0,0.22);
  transition:transform 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}
.why-card::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  background:radial-gradient(circle at 50% 14%, rgba(141,92,246,0.14), transparent 38%);
  transition:opacity 220ms ease;
}
.why-card:hover{
  transform:translateY(-7px);
  border-color:var(--why-border-hover);
  background-color:var(--why-card-hover);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.045),
    0 30px 72px rgba(24,8,70,0.33),
    0 0 30px rgba(117,67,215,0.09);
}
.why-card:hover::before{opacity:1}
.why-card__content{
  position:relative;
  z-index:2;
  min-height:0;
  padding:36px 28px 30px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:center;
  text-align:center;
}
.why-card__icon{
  width:92px;
  height:92px;
  display:grid;
  place-items:center;
  border:1px solid rgba(165,126,244,0.24);
  border-radius:50%;
  background:radial-gradient(circle, rgba(136,82,235,0.12), rgba(28,22,66,0.45));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.035),
    0 0 26px rgba(124,70,225,0.08);
  transition:border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.why-card:hover .why-card__icon{
  transform:translateY(-3px);
  border-color:rgba(170,125,255,0.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 32px rgba(126,73,224,0.18);
}
.why-card__icon svg{
  width:48px;
  height:48px;
  stroke:var(--why-purple-light);
  stroke-width:2.7;
  stroke-linecap:round;
  stroke-linejoin:round;
  filter:drop-shadow(0 0 8px rgba(174,135,255,0.18));
}
.why-card__divider{
  width:34px;
  height:2px;
  margin:18px 0 20px;
  border-radius:999px;
  background:var(--why-purple);
  box-shadow:0 0 10px rgba(141,92,246,0.35);
}
.why-card h3{
  margin:0;
  color:var(--why-white);
  font-size:clamp(1.45rem,1.7vw,1.9rem);
  font-weight:680;
  line-height:1.08;
  letter-spacing:-0.04em;
}
.why-card h3 span{display:block}
.why-card p{
  margin:16px 0 0;
  color:var(--why-text);
  font-size:1rem;
  line-height:1.56;
}
.why-card p span{display:block}

/* Decorative backgrounds */
.why-card__graphic{
  position:absolute;
  z-index:1;
  left:0;
  right:0;
  bottom:0;
  height:90px;
  pointer-events:none;
  opacity:0.42;
  transition:opacity 220ms ease, transform 350ms ease;
}
.why-card:hover .why-card__graphic{
  opacity:0.7;
  transform:scale(1.025);
}

/* Focus */
.why-card--career .why-card__graphic{
  background:
    repeating-linear-gradient(45deg,
      transparent 0 18px,
      rgba(148,104,232,0.16) 19px 20px,
      transparent 21px 34px);
  clip-path:polygon(36% 100%, 100% 100%, 100% 0);
}

/* Custom */
.why-card--custom .why-card__graphic{
  background:
    repeating-radial-gradient(ellipse at 50% 110%,
      transparent 0 13px,
      rgba(149,104,231,0.16) 14px 15px,
      transparent 16px 27px);
  transform:scaleX(1.2);
}

/* Mentor */
.why-card--mentor .why-card__graphic{
  background:
    radial-gradient(circle at 50% 100%, rgba(122,77,210,0.13), transparent 65%),
    repeating-radial-gradient(ellipse at 50% 115%,
      transparent 0 8px,
      rgba(147,104,226,0.14) 9px 10px,
      transparent 11px 19px);
}

/* Results */
.why-card--results .why-card__graphic{
  background:
    repeating-linear-gradient(-45deg,
      transparent 0 18px,
      rgba(148,104,232,0.16) 19px 20px,
      transparent 21px 34px);
  clip-path:polygon(0 100%, 100% 100%, 100% 8%, 68% 8%);
}

/* Tablet */
@media (max-width:1100px){
  .why-tomorrowdevs__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

/* Mobile */
@media (max-width:650px){
  .why-tomorrowdevs{padding:60px 16px 66px}
  .why-tomorrowdevs__header{margin-bottom:34px}
  .why-tomorrowdevs__header h1,
  .why-tomorrowdevs__header h2{font-size:clamp(2.4rem,9vw,3.2rem)}
  .why-tomorrowdevs__eyebrow{margin-bottom:2px}
  .why-tomorrowdevs__grid{
    grid-template-columns:1fr;
    gap:22px;
  }
  .why-card{min-height:0}
  .why-card__content{
    min-height:0;
    padding:28px 26px 30px;
  }
  .why-card__icon{
    width:76px;
    height:76px;
    margin-bottom:4px;
  }
  .why-card__icon svg{
    width:40px;
    height:40px;
  }
  .why-card__divider{margin:16px 0 20px}
  .why-card h3{
    font-size:1.5rem;
    font-weight:750;
    line-height:1.15;
  }
  .why-card p{
    margin-top:14px;
    max-width:32ch;
    font-size:1rem;
    line-height:1.6;
  }
}

@media (prefers-reduced-motion:reduce){
  .why-card,
  .why-card::before,
  .why-card__icon,
  .why-card__graphic{transition:none}
  .why-card:hover,
  .why-card:hover .why-card__icon{transform:none}
}

/* ---------- Proof (testimonial + stats + CTA) ---------- */
:root{
  --proof-bg:#050619;
  --proof-panel:rgba(13,15,41,0.92);
  --proof-panel-light:rgba(21,17,58,0.96);
  --proof-border:rgba(164,127,244,0.24);
  --proof-border-strong:rgba(157,104,255,0.76);
  --proof-white:#f8f7ff;
  --proof-text:rgba(235,231,249,0.72);
  --proof-muted:rgba(222,215,241,0.54);
  --proof-purple:#8655f4;
  --proof-purple-light:#aa82ff;
}
.proof-section,
.proof-section *,
.proof-section *::before,
.proof-section *::after{
  box-sizing:border-box;
}
.proof-section{
  position:relative;
  overflow:hidden;
  padding:88px 24px 104px;
  background:
    radial-gradient(circle at 82% 85%, rgba(102,53,205,0.1), transparent 28%),
    var(--proof-bg);
}
.proof-section__container{
  width:min(100%,1400px);
  margin:0 auto;
}
.proof-panel,
.proof-cta{
  position:relative;
  overflow:hidden;
  border:1px solid var(--proof-border);
  border-radius:24px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.025),
    0 28px 75px rgba(0,0,0,0.24);
}

/* Testimonial + statistiche */
.proof-panel{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(620px,1fr);
  gap:44px;
  padding:56px;
  background:
    radial-gradient(circle at 8% 0%, rgba(115,67,222,0.11), transparent 28%),
    var(--proof-panel);
}
.proof-panel::before{
  content:"";
  position:absolute;
  top:-160px;
  left:-120px;
  width:390px;
  height:390px;
  border:1px solid rgba(139,88,236,0.24);
  border-radius:50%;
  box-shadow:
    0 0 0 35px rgba(139,88,236,0.035),
    0 0 0 70px rgba(139,88,236,0.025),
    0 0 0 105px rgba(139,88,236,0.015);
  pointer-events:none;
}
.proof-testimonial{
  position:relative;
  z-index:1;
}
.proof-avatar{
  width:88px;
  height:88px;
  display:grid;
  place-items:center;
  border:2px solid #e9a55e;
  border-radius:50%;
  color:#e9a55e;
  background:radial-gradient(circle, rgba(217,141,69,0.16), rgba(58,31,47,0.4));
  box-shadow:0 0 30px rgba(222,143,66,0.16);
}
.proof-avatar svg{
  width:47px;
  height:47px;
  stroke:currentColor;
  stroke-width:2.3;
  stroke-linecap:round;
}
.proof-quote{
  position:relative;
  margin:54px 0 0;
  padding-left:32px;
}
.proof-quote__mark{
  position:absolute;
  top:-20px;
  left:-6px;
  color:var(--proof-purple);
  font-family:Georgia, serif;
  font-size:5.2rem;
  line-height:1;
}
.proof-quote p{
  margin:0;
  color:var(--proof-white);
  font-size:clamp(1.3rem,1.8vw,1.75rem);
  line-height:1.5;
  letter-spacing:-0.025em;
}
.proof-person{
  margin-top:30px;
  padding-left:32px;
}
.proof-person strong,
.proof-person span{
  display:block;
}
.proof-person strong{
  color:var(--proof-white);
  font-size:1.3rem;
}
.proof-person span{
  margin-top:5px;
  color:var(--proof-purple-light);
  font-size:1rem;
}

/* Statistiche */
.proof-stats{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  align-items:center;
}
.proof-stat{
  min-width:0;
  padding:6px 26px;
  text-align:center;
}
.proof-stat + .proof-stat{
  border-left:1px solid rgba(170,140,232,0.16);
}
.proof-stat__icon{
  width:80px;
  height:80px;
  margin:0 auto 24px;
  display:grid;
  place-items:center;
  border:1px solid rgba(166,123,248,0.34);
  border-radius:50%;
  background:radial-gradient(circle, rgba(131,76,230,0.12), rgba(28,21,68,0.36));
}
.proof-stat__icon svg{
  width:43px;
  height:43px;
  stroke:var(--proof-purple-light);
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.proof-stat > strong{
  display:block;
  color:var(--proof-purple);
  font-size:clamp(2.6rem,4vw,4rem);
  font-weight:750;
  line-height:1;
  letter-spacing:-0.055em;
}
.proof-stat > span{
  display:block;
  max-width:190px;
  margin:16px auto 0;
  color:var(--proof-text);
  font-size:0.98rem;
  line-height:1.45;
}

/* CTA */
.proof-cta{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(480px,0.95fr);
  align-items:center;
  gap:62px;
  margin-top:34px;
  padding:56px 58px;
  background:
    radial-gradient(circle at 10% 0%, rgba(126,72,237,0.42), transparent 38%),
    radial-gradient(circle at 86% 50%, rgba(116,62,227,0.34), transparent 42%),
    linear-gradient(135deg, #2a116b 0%, #1a0d48 46%, #10092d 100%);
  border-color:rgba(149,93,255,0.82);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 30px 85px rgba(32,10,91,0.36),
    0 0 38px rgba(102,48,211,0.12);
}
.proof-cta::before{
  content:"";
  position:absolute;
  left:-5%;
  right:-5%;
  bottom:-130px;
  height:260px;
  opacity:0.42;
  background:
    repeating-radial-gradient(ellipse at 50% 100%,
      transparent 0 16px,
      rgba(164,110,255,0.18) 17px 18px,
      transparent 19px 33px);
  pointer-events:none;
}
.proof-cta__content{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  align-items:center;
  gap:38px;
}
.proof-cta__icon{
  width:112px;
  height:112px;
  display:grid;
  place-items:center;
  border:1px solid rgba(181,143,255,0.32);
  border-radius:24px;
  color:var(--proof-white);
  background:linear-gradient(145deg, rgba(126,74,240,0.9), rgba(69,35,153,0.88));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 18px 40px rgba(49,20,118,0.35);
}
.proof-cta__icon svg{
  width:62px;
  height:62px;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.proof-cta__eyebrow{
  display:inline-block;
  padding:8px 17px;
  color:var(--proof-white);
  border-radius:999px;
  background:rgba(112,65,219,0.62);
  font-size:0.72rem;
  font-weight:700;
  line-height:1;
  letter-spacing:0.12em;
  text-transform:uppercase;
}
.proof-cta h2{
  max-width:610px;
  margin:21px 0 0;
  color:var(--proof-white);
  font-size:clamp(2.3rem,4.3vw,4rem);
  font-weight:730;
  line-height:1.02;
  letter-spacing:-0.055em;
}
.proof-cta__content p{
  max-width:580px;
  margin:20px 0 0;
  color:rgba(240,236,255,0.78);
  font-size:1.12rem;
  line-height:1.55;
}

/* Booking evidenziato */
.proof-booking{
  position:relative;
  z-index:1;
  padding:36px;
  border:2px solid rgba(185,132,255,0.92);
  border-radius:26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(126,64,241,0.5), transparent 65%),
    rgba(57,24,133,0.62);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 0 1px rgba(154,96,255,0.25),
    0 0 28px rgba(142,78,255,0.58),
    0 0 72px rgba(91,42,196,0.44);
}
.proof-booking__button{
  min-height:82px;
  padding:0 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  color:#502ac1;
  text-decoration:none;
  border-radius:15px;
  background:linear-gradient(180deg, #ffffff, #f4f0ff);
  box-shadow:0 15px 35px rgba(31,7,91,0.26);
  font-size:clamp(1.2rem,1.9vw,1.65rem);
  font-weight:720;
  transition:transform 220ms ease, box-shadow 220ms ease;
}
.proof-booking__button:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 45px rgba(31,7,91,0.34);
}
.proof-booking__button span{
  font-size:2rem;
  line-height:1;
}
.proof-booking__note{
  margin-top:23px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:13px;
  color:rgba(240,235,255,0.76);
  font-size:0.98rem;
}
.proof-booking__note svg{
  width:27px;
  height:27px;
  stroke:var(--proof-purple-light);
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* Tablet */
@media (max-width:1100px){
  .proof-panel{grid-template-columns:1fr}
  .proof-stats{
    padding-top:34px;
    border-top:1px solid rgba(170,140,232,0.14);
  }
  .proof-cta{grid-template-columns:1fr}
  .proof-booking{
    max-width:680px;
    width:100%;
  }
}

/* Mobile */
@media (max-width:720px){
  .proof-section{padding:68px 16px 78px}
  .proof-panel,
  .proof-cta{
    padding:28px 22px;
    border-radius:19px;
  }
  .proof-quote{
    margin-top:40px;
    padding-left:24px;
  }
  .proof-person{padding-left:24px}
  .proof-quote p br{display:none}
  .proof-stats{
    grid-template-columns:1fr;
    gap:28px;
  }
  .proof-stat{padding:26px 10px}
  .proof-stat + .proof-stat{
    border-top:1px solid rgba(170,140,232,0.16);
    border-left:0;
  }
  .proof-cta__content{
    grid-template-columns:1fr;
    gap:26px;
  }
  .proof-cta__icon{
    width:88px;
    height:88px;
  }
  .proof-cta__icon svg{
    width:49px;
    height:49px;
  }
  .proof-booking{
    padding:22px;
    border-radius:20px;
  }
  .proof-booking__button{
    min-height:70px;
    padding:0 20px;
  }
  .proof-booking__note{
    align-items:flex-start;
    justify-content:flex-start;
  }
}

@media (prefers-reduced-motion:reduce){
  .proof-booking__button{transition:none}
  .proof-booking__button:hover{transform:none}
}

/* ---------- Per aziende page ---------- */

/* Impact stats */
:root{
  --impact-purple:#8655f4;
  --impact-purple-light:#aa82ff;
  --impact-text:rgba(235,231,249,0.72);
}
.impact-section{
  position:relative;
  overflow:hidden;
  padding:96px 24px 104px;
  background:
    radial-gradient(circle at 10% 0%, rgba(126,72,237,0.42), transparent 38%),
    radial-gradient(circle at 86% 50%, rgba(116,62,227,0.34), transparent 42%),
    linear-gradient(135deg, #2a116b 0%, #1a0d48 46%, #10092d 100%);
}
.impact-section__container{
  position:relative;
  z-index:1;
  width:min(100%,1200px);
  margin:0 auto;
}
.impact-section__header{
  max-width:850px;
  margin:0 auto 58px;
  text-align:center;
}
.impact-section__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:14px;
  color:#fff;
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.19em;
  text-transform:uppercase;
  opacity:0.85;
}
.impact-section__eyebrow::before{
  content:"";
  width:34px;
  height:1px;
  background:#fff;
  opacity:0.6;
}
.impact-section__header h2{
  margin:22px 0 0;
  color:#fff;
  font-size:clamp(2.4rem,4.5vw,4rem);
  font-weight:720;
  line-height:1.05;
  letter-spacing:-0.05em;
}
.impact-section__header p{
  margin:20px auto 0;
  max-width:60ch;
  color:rgba(255,255,255,0.78);
  font-size:1.05rem;
  line-height:1.6;
}
.impact-stats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}
.impact-stat{
  min-width:0;
  padding:6px 12px;
  text-align:center;
}
.impact-stat__icon{
  width:80px;
  height:80px;
  margin:0 auto 24px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,0.34);
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
}
.impact-stat__icon svg{
  width:43px;
  height:43px;
  stroke:#fff;
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.impact-stat > strong{
  display:block;
  color:#fff;
  font-size:clamp(2.6rem,4vw,3.6rem);
  font-weight:750;
  line-height:1;
  letter-spacing:-0.055em;
}
.impact-stat > span{
  display:block;
  max-width:210px;
  margin:16px auto 0;
  color:rgba(255,255,255,0.78);
  font-size:0.98rem;
  line-height:1.45;
}
@media (max-width:900px){
  .impact-stats{grid-template-columns:repeat(2,minmax(0,1fr)); gap:36px 22px}
}
@media (max-width:560px){
  .impact-stats{grid-template-columns:1fr; gap:36px}
}

:root{
  --comparison-bg:#050619;
  --comparison-bg-deep:#02030d;
  --comparison-card:rgba(14,16,42,0.9);
  --comparison-border:rgba(158,128,230,0.24);
  --comparison-red:#ff6b7a;
  --comparison-green:#4ade80;
  --comparison-purple:#8d5cf6;
  --comparison-purple-light:#ae87ff;
}
.comparison-section{
  position:relative;
  overflow:hidden;
  padding:96px 24px 104px;
  background:
    radial-gradient(circle at 50% 8%, rgba(107,66,202,0.12), transparent 30%),
    linear-gradient(180deg, var(--comparison-bg) 0%, var(--comparison-bg-deep) 100%);
}
.comparison-section__container{
  position:relative;
  z-index:1;
  width:min(100%,1200px);
  margin:0 auto;
}
.comparison-section__header{
  max-width:850px;
  margin:0 auto 58px;
  text-align:center;
}
.comparison-section__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:14px;
  color:var(--comparison-purple-light);
  font-size:0.78rem;
  font-weight:700;
  line-height:1;
  letter-spacing:0.19em;
  text-transform:uppercase;
}
.comparison-section__eyebrow::before{
  content:"";
  width:34px;
  height:1px;
  background:var(--comparison-purple-light);
  box-shadow:0 0 10px rgba(174,135,255,0.4);
}
.comparison-section__header h2{
  margin:22px 0 0;
  color:#f8f7ff;
  font-size:clamp(2.4rem,4.5vw,4rem);
  font-weight:720;
  line-height:1.05;
  letter-spacing:-0.05em;
}
.comparison-section__header p{
  margin:20px auto 0;
  max-width:60ch;
  color:rgba(235,231,249,0.72);
  font-size:1.05rem;
  line-height:1.6;
}
.comparison-table{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  align-items:start;
}
.comparison-column{
  padding:28px 26px 30px;
  border:1px solid var(--comparison-border);
  border-radius:18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.028), rgba(255,255,255,0)),
    var(--comparison-card);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.028), 0 24px 62px rgba(0,0,0,0.22);
}
.comparison-column--welyk{
  border-color:rgba(159,112,255,0.72);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.05), 0 24px 62px rgba(0,0,0,0.22), 0 0 34px rgba(123,72,255,0.12);
}
.comparison-column__label{
  display:block;
  margin-bottom:22px;
  color:#f8f7ff;
  font-size:1rem;
  font-weight:700;
  letter-spacing:-0.01em;
}
.comparison-column--welyk .comparison-column__label{color:var(--comparison-purple-light)}
.comparison-column__list{
  display:grid;
  gap:16px;
  margin:0;
  padding:0;
  list-style:none;
}
.comparison-column__list li{
  position:relative;
  padding-left:28px;
  color:rgba(235,231,249,0.78);
  font-size:0.92rem;
  line-height:1.5;
}
.comparison-column__list li::before{
  position:absolute;
  left:0;
  top:0;
  font-weight:700;
}
.comparison-column--traditional .comparison-column__list li::before{
  content:"✗";
  color:var(--comparison-red);
}
.comparison-column--welyk .comparison-column__list li::before{
  content:"✓";
  color:var(--comparison-green);
}
.comparison-column--result .comparison-column__list li::before{
  content:"→";
  color:var(--comparison-purple-light);
}
@media (max-width:900px){
  .comparison-table{grid-template-columns:1fr}
}

/* Paths catalog (accordion) */
.paths-section{
  position:relative;
  overflow:hidden;
  padding:96px 24px 104px;
  background:
    radial-gradient(circle at 50% -10%, rgba(114,65,255,0.18), transparent 35%),
    linear-gradient(180deg, var(--method-bg) 0%, var(--method-bg-deep) 100%);
}
.paths-section__container{
  position:relative;
  z-index:1;
  width:min(100%,1100px);
  margin:0 auto;
}
.paths-section__header{
  max-width:850px;
  margin:0 auto 54px;
  text-align:center;
}
.paths-section__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:14px;
  color:var(--method-purple-light);
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.19em;
  text-transform:uppercase;
}
.paths-section__eyebrow::before{
  content:"";
  width:34px;
  height:1px;
  background:var(--method-purple-light);
  box-shadow:0 0 10px rgba(174,135,255,0.4);
}
.paths-section__header h2{
  margin:22px 0 0;
  color:#fff;
  font-size:clamp(2.2rem,4vw,3.4rem);
  font-weight:720;
  line-height:1.08;
  letter-spacing:-0.04em;
}
.paths-section__header p{
  margin:18px auto 0;
  max-width:60ch;
  color:var(--method-text);
  font-size:1.02rem;
  line-height:1.6;
}
.paths-category{
  margin-bottom:14px;
  border:1px solid var(--method-border);
  border-radius:16px;
  background:var(--method-card);
  overflow:hidden;
}
.paths-category summary{
  display:flex;
  align-items:center;
  gap:14px;
  padding:20px 24px;
  cursor:pointer;
  color:#fff;
  font-size:1.1rem;
  font-weight:700;
  list-style:none;
}
.paths-category summary::-webkit-details-marker{display:none}
.paths-category__emoji{font-size:1.3rem}
.paths-category summary::after{
  content:"+";
  margin-left:auto;
  color:var(--method-purple-light);
  font-size:1.4rem;
  font-weight:400;
}
.paths-category[open] summary::after{content:"−"}
.paths-category__body{
  padding:0 24px 24px;
}
.paths-area{
  margin-top:16px;
}
.paths-area__label{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  color:var(--method-purple-light);
  font-size:0.85rem;
  font-weight:700;
  letter-spacing:0.03em;
}
.paths-percorso{
  margin-bottom:8px;
  border:1px solid rgba(181,153,255,0.16);
  border-radius:10px;
  background:rgba(255,255,255,0.02);
}
.paths-percorso summary{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  cursor:pointer;
  color:var(--method-text);
  font-size:0.92rem;
  font-weight:600;
  list-style:none;
}
.paths-percorso summary::-webkit-details-marker{display:none}
.paths-percorso summary::after{
  content:"+";
  margin-left:auto;
  color:var(--method-purple-light);
  font-size:1.1rem;
  font-weight:400;
}
.paths-percorso[open] summary::after{content:"−"}
.paths-percorso__stage{
  flex:0 0 auto;
  padding:3px 10px;
  border-radius:999px;
  font-size:0.68rem;
  font-weight:700;
  letter-spacing:0.03em;
  text-transform:uppercase;
}
.paths-percorso__stage--live{background:rgba(74,222,128,0.16); color:#4ade80}
.paths-percorso__stage--in_development{background:rgba(250,204,21,0.16); color:#facc15}
.paths-percorso__stage--unstarted{background:rgba(255,255,255,0.08); color:var(--method-muted)}
.paths-percorso__moduli{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 16px 16px;
  padding:0;
  list-style:none;
}
.paths-percorso__moduli li{
  padding:5px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.05);
  color:var(--method-text);
  font-size:0.8rem;
  line-height:1.3;
}
@media (max-width:700px){
  .paths-section{padding:60px 18px 68px}
  .paths-category summary{padding:16px 18px; font-size:1rem}
  .paths-category__body{padding:0 18px 18px}
}

/* AI Act */
.ai-act-section{
  position:relative;
  overflow:hidden;
  padding:96px 24px 104px;
  background:
    radial-gradient(circle at 10% 0%, rgba(126,72,237,0.42), transparent 38%),
    radial-gradient(circle at 86% 50%, rgba(116,62,227,0.34), transparent 42%),
    linear-gradient(135deg, #2a116b 0%, #1a0d48 46%, #10092d 100%);
}
.ai-act-section__inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(280px,0.95fr) minmax(0,1.4fr);
  gap:56px;
  width:min(1300px,100%);
  margin:0 auto;
}
.ai-act-section__badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:24px;
  padding:6px 14px;
  border:1px solid rgba(255,255,255,0.24);
  border-radius:999px;
  color:#fff;
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.ai-act-section__intro h2{
  margin:0 0 24px;
  max-width:480px;
  color:#fff;
  font-size:clamp(2rem,3.2vw,3rem);
  font-weight:700;
  line-height:1.1;
  letter-spacing:-0.03em;
}
.ai-act-section__intro p{
  max-width:520px;
  margin:0 0 18px;
  color:rgba(255,255,255,0.78);
  font-size:1rem;
  line-height:1.72;
}
.ai-act-section__intro .starting-point__button{
  margin-top:12px;
}
.ai-act-tracks{
  display:grid;
  gap:20px;
}
.ai-act-track{
  padding:26px 26px 24px;
  border:1px solid rgba(255,255,255,0.16);
  border-radius:16px;
  background:rgba(20,16,49,0.55);
}
.ai-act-track__target{
  display:inline-block;
  margin-bottom:12px;
  color:#c084fc;
  font-size:0.75rem;
  font-weight:700;
  letter-spacing:0.05em;
  text-transform:uppercase;
}
.ai-act-track h3{
  margin:0 0 16px;
  color:#fff;
  font-size:1.25rem;
  font-weight:700;
  letter-spacing:-0.01em;
}
.ai-act-track__points{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}
.ai-act-track__points li{
  position:relative;
  padding-left:22px;
  color:rgba(255,255,255,0.78);
  font-size:0.92rem;
  line-height:1.45;
}
.ai-act-track__points li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#c084fc;
  font-weight:700;
}
@media (max-width:900px){
  .ai-act-section__inner{grid-template-columns:1fr}
}

/* Alternating section backgrounds (per-aziende.html only) */
.bg-dark{
  background:
    radial-gradient(circle at 50% 8%, rgba(107,66,202,0.12), transparent 30%),
    radial-gradient(circle at 15% 92%, rgba(90,49,177,0.08), transparent 26%),
    linear-gradient(180deg, #050619 0%, #02030d 100%) !important;
}
.bg-light{
  background:
    radial-gradient(circle at 10% 0%, rgba(126,72,237,0.42), transparent 38%),
    radial-gradient(circle at 86% 50%, rgba(116,62,227,0.34), transparent 42%),
    linear-gradient(135deg, #2a116b 0%, #1a0d48 46%, #10092d 100%) !important;
}

/* ---------- Career Engineering page ---------- */
.companies-section__cards--four{
  grid-template-columns:repeat(4,minmax(0,1fr));
}
@media (max-width:1180px){
  .companies-section__cards--four{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:560px){
  .companies-section__cards--four{grid-template-columns:1fr}
}

/* Pricing cards (Mentorship / Standard / Plus) */
.pricing-cards{
  grid-template-columns:repeat(3,minmax(0,1fr));
  max-width:1080px;
}
@media (max-width:980px){
  .pricing-cards{grid-template-columns:repeat(2,minmax(0,1fr)); max-width:none}
}
.companies-section__inner .pricing-cards__cta{
  grid-column:1 / -1;
  margin-top:40px;
}
.pricing-card{
  align-items:flex-start;
  text-align:left;
}
.pricing-card--featured{
  border-color:var(--companies-card-border-hover);
  box-shadow:0 20px 50px rgba(0,0,0,0.3), 0 0 40px rgba(125,58,237,0.14), inset 0 1px 0 rgba(255,255,255,0.03);
}
.pricing-card__badge{
  position:absolute;
  top:24px;
  right:24px;
  display:inline-block;
  padding:5px 12px;
  border-radius:999px;
  background:var(--companies-purple);
  color:#fff;
  font-size:0.72rem;
  font-weight:700;
  letter-spacing:0.05em;
  text-transform:uppercase;
}
.pricing-card__plan{
  color:var(--companies-purple-light);
  font-size:0.85rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.pricing-card__price{
  margin:10px 0 22px;
}
.pricing-card__amount{
  color:var(--companies-card-text);
  font-size:2.6rem;
  font-weight:750;
  letter-spacing:-0.03em;
}
.pricing-card__features{
  display:grid;
  gap:12px;
  margin:0 0 26px;
  padding:0;
  list-style:none;
  width:100%;
}
.pricing-card__features li{
  position:relative;
  padding-left:24px;
  color:var(--companies-card-muted);
  font-size:0.95rem;
  line-height:1.4;
}
.pricing-card__features li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--companies-purple-light);
  font-weight:700;
}
.pricing-card__fit{
  margin:0 0 22px;
  padding-top:18px;
  border-top:1px solid var(--companies-card-border);
  width:100%;
}
.pricing-card__fit-label{
  display:block;
  margin-bottom:4px;
  color:var(--companies-purple-light);
  font-size:0.72rem;
  font-weight:700;
  letter-spacing:0.05em;
  text-transform:uppercase;
}
.pricing-card__fit p{
  margin:0;
  color:var(--companies-card-muted);
  font-size:0.9rem;
  line-height:1.45;
}
.pricing-card__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:14px 20px;
  border:1px solid rgba(255,255,255,0.7);
  border-radius:10px;
  background:#ffffff;
  color:var(--companies-purple);
  font-size:0.95rem;
  font-weight:650;
  text-decoration:none;
  margin-top:auto;
  transition:transform 180ms ease, box-shadow 180ms ease;
}
.pricing-card__cta:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px -10px rgba(0,0,0,0.35);
}
@media (max-width:900px){
  .pricing-cards{grid-template-columns:1fr; max-width:none}
}

/* FAQ */
.faq-list{
  display:grid;
  gap:14px;
  max-width:820px;
  margin:0 auto;
}
.faq-item{
  padding:22px 26px;
  border:1px solid var(--why-border);
  border-radius:14px;
  background:var(--why-card);
}
.faq-item summary{
  cursor:pointer;
  color:var(--why-white);
  font-size:1.05rem;
  font-weight:650;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"+";
  float:right;
  color:var(--why-purple-light);
  font-size:1.3rem;
  font-weight:400;
}
.faq-item[open] summary::after{content:"−"}
.faq-item p{
  margin:14px 0 0;
  color:var(--why-text);
  font-size:0.98rem;
  line-height:1.6;
}

/* Dual CTA (Acquista / Prenota call) */
.proof-booking--dual{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.proof-booking--dual .proof-booking__button{
  justify-content:center;
  gap:14px;
}
.proof-booking__button--ghost{
  background:rgba(255,255,255,0.08);
  border:2px solid rgba(255,255,255,0.75);
  color:#fff;
  box-shadow:0 15px 35px rgba(0,0,0,0.18);
}
.proof-booking__button--ghost:hover{
  background:rgba(255,255,255,0.14);
  border-color:#fff;
  box-shadow:0 20px 45px rgba(0,0,0,0.24);
}
@media (max-width:600px){
  .proof-booking--dual .proof-booking__button{min-height:60px; font-size:1.05rem}
}

/* ---------- Pricing section (career-engineering.html #prezzi) ---------- */
:root{
  --pricing-bg:#05071a;
  --pricing-surface:#0d1028;
  --pricing-surface-2:#131632;
  --pricing-text:#f8f8fb;
  --pricing-muted:#b6b7c5;
  --pricing-purple:#9f64ff;
  --pricing-purple-dark:#6f35d9;
  --pricing-cyan:#34d5ff;
  --pricing-yellow:#ffe600;
  --pricing-border:rgba(150,92,255,0.35);
  --pricing-radius:22px;
}
.pricing-section{
  padding:72px 24px 34px;
  background:
    radial-gradient(circle at 10% 0%, rgba(126,72,237,0.42), transparent 38%),
    radial-gradient(circle at 86% 50%, rgba(116,62,227,0.34), transparent 42%),
    linear-gradient(135deg, #2a116b 0%, #1a0d48 46%, #10092d 100%);
}
.pricing-shell{
  width:min(1480px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:350px minmax(0,1fr);
  gap:46px;
}
.pricing-intro .eyebrow{
  display:block;
  margin-bottom:28px;
  color:var(--pricing-purple);
  font-size:0.82rem;
  font-weight:800;
  letter-spacing:0.16em;
}
.pricing-intro h2{
  margin:0;
  max-width:360px;
  color:var(--pricing-text);
  font-size:clamp(2.7rem,4.5vw,4.35rem);
  line-height:1.02;
  letter-spacing:-0.055em;
}
.pricing-intro h2 span{
  color:var(--pricing-purple);
}
.pricing-intro__lead{
  max-width:350px;
  margin:28px 0 38px;
  color:#d5d5df;
  font-size:1.06rem;
  line-height:1.75;
}
.pricing-benefits{
  display:grid;
  gap:22px;
}
.benefit{
  display:flex;
  align-items:center;
  gap:16px;
}
.benefit__icon,
.pricing-group__heading .group-icon,
.plan-icon,
.footer-icon{
  display:grid;
  place-items:center;
  flex:0 0 auto;
  color:var(--pricing-purple);
  background:linear-gradient(145deg,rgba(155,91,255,0.26),rgba(91,49,190,0.18));
  border:1px solid rgba(167,105,255,0.1);
}
.benefit__icon{
  width:58px;
  height:58px;
  border-radius:15px;
  font-size:1.75rem;
}
.benefit h3{
  margin:0 0 5px;
  color:var(--pricing-text);
  font-size:1rem;
}
.benefit p{
  margin:0;
  color:var(--pricing-muted);
  font-size:0.94rem;
}
.pricing-content{
  display:grid;
  grid-template-columns:minmax(0,3fr) minmax(285px,1.15fr);
  gap:20px;
  align-items:start;
}
.pricing-group{
  min-width:0;
}
.pricing-group__heading{
  min-height:72px;
  margin-bottom:18px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  text-align:center;
}
.pricing-group__heading .group-icon{
  width:46px;
  height:46px;
  border-radius:50%;
  font-size:1.35rem;
}
.pricing-group__heading strong{
  color:var(--pricing-purple);
  font-size:0.9rem;
  letter-spacing:0.08em;
}
.pricing-group__heading p{
  margin:5px 0 0;
  color:var(--pricing-muted);
  font-size:0.9rem;
}
.pricing-group__heading--guided strong,
.pricing-group__heading .group-icon--guided{
  color:var(--pricing-yellow);
}
.pricing-group__heading .group-icon--guided{
  background:rgba(255,230,0,0.08);
  border-color:rgba(255,230,0,0.22);
}
.pricing-cards{
  display:grid;
  gap:16px;
}
.pricing-cards--services{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.price-card{
  min-height:650px;
  padding:24px 22px 20px;
  display:flex;
  flex-direction:column;
  border:1px solid var(--pricing-border);
  border-radius:var(--pricing-radius);
  background:linear-gradient(180deg,rgba(17,19,47,0.98),rgba(10,12,34,0.98));
  box-shadow:0 24px 70px rgba(0,0,0,0.34);
}
.price-card__head{
  padding-bottom:20px;
  border-bottom:1px solid rgba(159,100,255,0.42);
}
.price-card .plan-icon{
  width:52px;
  height:52px;
  margin-bottom:22px;
  border-radius:50%;
  font-size:1.45rem;
}
.plan-name{
  margin:0 0 12px;
  color:var(--pricing-purple);
  font-size:0.94rem;
  font-weight:800;
  line-height:1.45;
  letter-spacing:0.03em;
}
.plan-price{
  margin-bottom:14px;
  color:var(--pricing-text);
  font-size:2.65rem;
  font-weight:800;
  line-height:1;
  letter-spacing:-0.05em;
}
.plan-summary{
  margin:0;
  min-height:48px;
  color:#e8e8ef;
  font-size:0.95rem;
  line-height:1.6;
}
.plan-badge{
  display:inline-flex;
  width:max-content;
  margin:-2px 0 14px;
  padding:6px 11px;
  border-radius:999px;
  font-size:0.67rem;
  font-weight:800;
  letter-spacing:0.04em;
}
.plan-badge--cyan{
  color:#dcfbff;
  background:rgba(0,181,220,0.32);
  border:1px solid rgba(52,213,255,0.68);
}
.plan-features{
  margin:24px 0;
  padding:0;
  display:grid;
  gap:15px;
  list-style:none;
  color:#d7d7e1;
  font-size:0.9rem;
  line-height:1.55;
}
.plan-features li{
  position:relative;
  padding-left:24px;
}
.plan-features li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--pricing-purple);
  font-size:1.1rem;
  font-weight:800;
}
.plan-cta{
  min-height:56px;
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  border-radius:12px;
  color:inherit;
  font-size:1rem;
  font-weight:800;
  text-decoration:none;
  transition:0.2s ease;
}
.plan-cta:hover{
  transform:translateY(-2px);
}
.plan-cta--outline{
  color:var(--pricing-purple);
  border:1px solid rgba(159,100,255,0.86);
}
.plan-cta--outline:hover{
  background:rgba(159,100,255,0.08);
  box-shadow:0 10px 24px rgba(105,54,206,0.18);
}
.price-card--guided{
  position:relative;
  min-height:650px;
  border-color:var(--pricing-yellow);
  background:
    radial-gradient(circle at 85% 0%,rgba(255,230,0,0.08),transparent 28%),
    linear-gradient(180deg,#101326 0%,#0a0c21 100%);
  box-shadow:
    0 0 0 1px rgba(255,230,0,0.05),
    0 0 34px rgba(255,230,0,0.12),
    0 24px 70px rgba(0,0,0,0.34);
}
.price-card--guided .price-card__head{
  border-bottom-color:rgba(255,230,0,0.45);
}
.guided-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}
.plan-icon--guided{
  color:var(--pricing-yellow);
  background:linear-gradient(145deg,rgba(255,230,0,0.28),rgba(255,230,0,0.07));
  border-color:rgba(255,230,0,0.18);
}
.plan-badge--guided{
  margin:2px 0 0;
  color:var(--pricing-yellow);
  background:rgba(255,230,0,0.04);
  border:1px solid rgba(255,230,0,0.86);
  white-space:nowrap;
}
.plan-name--guided{
  margin-top:10px;
  color:var(--pricing-yellow);
  font-size:1.05rem;
}
.guided-price{
  margin:14px 0 16px;
}
.guided-price > span{
  display:block;
  margin-bottom:4px;
  color:#d5d5dd;
  font-size:0.75rem;
}
.guided-price div{
  display:flex;
  align-items:flex-end;
  gap:8px;
}
.guided-price strong{
  color:var(--pricing-text);
  font-size:3.1rem;
  line-height:0.95;
  letter-spacing:-0.06em;
}
.guided-price small{
  margin-bottom:6px;
  color:#e5e5eb;
  font-size:0.95rem;
}
.guided-price p{
  margin:8px 0 0;
  color:#adafbc;
  font-size:0.72rem;
  line-height:1.45;
}
.plan-summary--guided{
  min-height:0;
  color:#d8d8e0;
}
.plan-features--guided li::before{
  color:var(--pricing-yellow);
}
.plan-cta--guided{
  color:#080912;
  background:linear-gradient(90deg,#ffd51c,#fff63d);
  box-shadow:0 12px 30px rgba(255,230,0,0.16);
}
.plan-cta--guided:hover{
  box-shadow:0 16px 36px rgba(255,230,0,0.24);
}
.guided-note{
  margin:11px 0 0;
  color:#a8a9b6;
  font-size:0.7rem;
  text-align:center;
}
.pricing-footer{
  grid-column:2;
  margin-top:10px;
  padding:22px 28px;
  display:grid;
  grid-template-columns:1fr 1px 1fr;
  gap:28px;
  align-items:center;
  border:1px solid rgba(159,100,255,0.24);
  border-radius:20px;
  background:rgba(15,17,42,0.78);
}
.pricing-footer__block{
  display:flex;
  align-items:center;
  gap:18px;
}
.pricing-footer .footer-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  font-size:1.35rem;
}
.pricing-footer strong{
  display:block;
  margin-bottom:5px;
  color:var(--pricing-text);
}
.pricing-footer p{
  margin:0;
  color:var(--pricing-muted);
  font-size:0.87rem;
  line-height:1.55;
}
.pricing-footer a{
  display:inline-block;
  margin-top:6px;
  color:var(--pricing-purple);
  font-size:0.88rem;
  font-weight:700;
  text-decoration:none;
}
.pricing-footer__divider{
  width:1px;
  height:68px;
  background:rgba(159,100,255,0.35);
}
.pricing-trust{
  grid-column:2;
  display:flex;
  justify-content:center;
  gap:22px;
  padding-top:2px;
  color:#9092a3;
  font-size:0.78rem;
}
.pricing-trust span:not(:last-child)::after{
  content:"•";
  margin-left:22px;
  color:#6c6e80;
}
@media (max-width:1250px){
  .pricing-shell{
    grid-template-columns:1fr;
  }
  .pricing-intro{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px 40px;
    align-items:start;
  }
  .pricing-intro .eyebrow,
  .pricing-intro h2{
    grid-column:1;
  }
  .pricing-intro__lead,
  .pricing-benefits{
    grid-column:2;
  }
  .pricing-intro__lead{
    margin-top:0;
  }
  .pricing-content,
  .pricing-footer,
  .pricing-trust{
    grid-column:1;
  }
}
@media (max-width:980px){
  .pricing-content{
    grid-template-columns:1fr;
  }
  .pricing-cards--services{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .pricing-group__heading{
    justify-content:flex-start;
    text-align:left;
  }
}
@media (max-width:760px){
  .pricing-section{
    padding:54px 18px 28px;
  }
  .pricing-intro{
    display:block;
  }
  .pricing-intro h2{
    max-width:none;
  }
  .pricing-intro__lead{
    max-width:620px;
    margin:24px 0 30px;
  }
  .pricing-benefits{
    grid-template-columns:1fr 1fr;
    margin-bottom:18px;
  }
  .pricing-cards--services{
    grid-template-columns:1fr;
  }
  .price-card{
    min-height:auto;
  }
  .pricing-footer{
    grid-template-columns:1fr;
    gap:20px;
  }
  .pricing-footer__divider{
    width:100%;
    height:1px;
  }
  .pricing-trust{
    flex-wrap:wrap;
    gap:8px 16px;
  }
  .pricing-trust span:not(:last-child)::after{
    margin-left:16px;
  }
}
@media (max-width:520px){
  .pricing-benefits{
    grid-template-columns:1fr;
  }
  .pricing-intro h2{
    font-size:2.65rem;
  }
  .price-card{
    padding:22px 20px 18px;
  }
  .guided-top{
    align-items:center;
  }
  .plan-badge--guided{
    white-space:normal;
    text-align:center;
  }
  .pricing-footer{
    padding:22px;
  }
  .pricing-footer__block{
    align-items:flex-start;
  }
}

/* ---------- Footer ---------- */
footer{
  background:#080418;
  border-top:1px solid var(--border);
  padding:64px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr;
  gap:40px;
}
.footer-brand .logo-mark{height:54px;margin-bottom:16px}
.footer-brand p{
  font-size:0.85rem;
  color:var(--text-faint);
  line-height:1.6;
  max-width:32ch;
}
.footer-col h4{
  font-size:0.82rem;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--text-faint);
  margin-bottom:16px;
}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:11px}
.footer-col a{
  font-size:0.9rem;
  color:var(--text-dim);
  transition:color .15s ease;
}
.footer-col a:hover{color:var(--text)}
.footer-social{
  display:flex;
  gap:14px;
  margin-top:18px;
}
.footer-social a{
  width:34px;height:34px;
  border-radius:9px;
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  color:var(--text-dim);
}
.footer-social a:hover{border-color:var(--accent-2);color:var(--accent-2)}
.newsletter-form{
  display:flex;
  margin-top:14px;
  border:1px solid var(--border-strong);
  border-radius:10px;
  overflow:hidden;
  background:rgba(255,255,255,0.03);
}
.newsletter-form input{
  flex:1;
  background:transparent;
  border:none;
  padding:12px 14px;
  color:var(--text);
  font-size:0.88rem;
}
.newsletter-form input::placeholder{color:var(--text-faint)}
.newsletter-form input:focus{outline:none}
.newsletter-form button{
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  border:none;
  color:#fff;
  padding:0 18px;
  display:flex;align-items:center;justify-content:center;
}
.footer-bottom{
  margin-top:52px;
  padding-top:24px;
  border-top:1px solid var(--border);
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  font-size:0.82rem;
  color:var(--text-faint);
}
.footer-bottom-links{display:flex;gap:20px;flex-wrap:wrap}
.footer-bottom-links a{color:var(--text-faint)}
.footer-bottom-links a:hover{color:var(--text-dim)}

/* ---------- Responsive ---------- */
@media (max-width:720px){
  .footer-grid{grid-template-columns:1fr}
}
@media (max-width:600px){
  .wrap{padding:0 20px}
  .footer-grid{grid-template-columns:1fr}
  .header-right .btn-ghost{display:none}
}

@media (prefers-reduced-motion:reduce){
  *{transition:none !important}
}

/* =========================================
   BUSINESS TRANSFORMATION SECTION
   ========================================= */

.business-transformation {
  --bt-bg: #05051a;
  --bt-bg-soft: #090723;
  --bt-panel: rgba(12, 11, 38, 0.82);
  --bt-panel-soft: rgba(19, 16, 52, 0.72);

  --bt-text: #f8f7ff;
  --bt-muted: #aaa7bd;

  --bt-purple: #9c4dff;
  --bt-purple-light: #c487ff;
  --bt-purple-dark: #6617de;

  --bt-red: #ff516c;
  --bt-red-soft: rgba(255, 81, 108, 0.12);

  --bt-green: #78e36f;
  --bt-green-soft: rgba(120, 227, 111, 0.1);

  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: clamp(72px, 8vw, 128px) 24px 44px;

  color: var(--bt-text);
  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(111, 35, 219, 0.13),
      transparent 38%
    ),
    radial-gradient(
      circle at 6% 82%,
      rgba(102, 23, 222, 0.13),
      transparent 25%
    ),
    linear-gradient(180deg, #050516 0%, #07051c 100%);
}

.business-transformation *,
.business-transformation *::before,
.business-transformation *::after {
  box-sizing: border-box;
}

.bt-svg-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.bt-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.9;
}

.bt-background::before,
.bt-background::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(153, 80, 255, 0.1);
  border-radius: 50%;
}

.bt-background::before {
  left: -360px;
  bottom: -250px;
}

.bt-background::after {
  right: -390px;
  top: 90px;
}

.bt-container {
  width: min(1480px, 100%);
  margin-inline: auto;
}

/* =========================================
   HEADING
   ========================================= */

.bt-heading {
  max-width: 1160px;
  margin: 0 auto clamp(50px, 6vw, 80px);
  text-align: center;
}

.bt-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  margin-bottom: 22px;

  color: var(--bt-purple-light);
  font-size: 0.85rem;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bt-eyebrow span {
  width: 36px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--bt-purple-light)
  );
}

.bt-eyebrow span:last-child {
  transform: rotate(180deg);
}

.bt-heading h2 {
  margin: 0;

  font-size: clamp(2.35rem, 4.8vw, 5rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.bt-heading h2 span {
  color: var(--bt-purple);
}

.bt-heading > p {
  max-width: 860px;
  margin: 24px auto 0;

  color: #cbc8d7;
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  line-height: 1.65;
}

/* =========================================
   STAGE HEADINGS
   ========================================= */

.bt-stage-headings {
  display: grid;
  grid-template-columns:
    minmax(280px, 0.86fr)
    72px
    minmax(350px, 1.06fr)
    72px
    minmax(340px, 1fr);
  align-items: center;
  margin-bottom: 18px;
}

.bt-stage-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.bt-stage-icon {
  display: grid;
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  place-items: center;

  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
}

.bt-stage-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bt-stage-heading strong {
  display: block;
  margin-bottom: 7px;

  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.bt-stage-heading p {
  margin: 0;
  color: #d1cfdb;
  line-height: 1.45;
}

.bt-stage-heading--start {
  color: var(--bt-red);
}

.bt-stage-heading--transform {
  color: var(--bt-purple-light);
}

.bt-stage-heading--impact {
  color: var(--bt-green);
}

.bt-stage-connector {
  display: flex;
  align-items: center;
  padding-inline: 12px;
}

.bt-stage-connector span {
  position: relative;
  width: 100%;
  height: 1px;
}

.bt-stage-connector span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;

  width: 8px;
  height: 8px;

  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.bt-stage-connector--first {
  color: var(--bt-purple);
}

.bt-stage-connector--first span {
  background: linear-gradient(90deg, var(--bt-red), var(--bt-purple));
}

.bt-stage-connector--second {
  color: var(--bt-green);
}

.bt-stage-connector--second span {
  background: linear-gradient(90deg, var(--bt-purple), var(--bt-green));
}

/* =========================================
   MAIN FLOW
   ========================================= */

.bt-flow {
  display: grid;
  grid-template-columns:
    minmax(280px, 0.86fr)
    72px
    minmax(350px, 1.06fr)
    72px
    minmax(340px, 1fr);
  align-items: stretch;
}

.bt-panel {
  position: relative;
  min-width: 0;
  padding: clamp(20px, 2vw, 32px);

  border: 1px solid rgba(157, 77, 255, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(
      145deg,
      rgba(21, 17, 55, 0.84),
      rgba(7, 8, 27, 0.92)
    );

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.bt-panel--start {
  border-color: rgba(255, 81, 108, 0.46);
}

.bt-panel--transform {
  border-color: rgba(176, 92, 255, 0.9);
  box-shadow:
    0 0 34px rgba(139, 55, 255, 0.15),
    0 30px 70px rgba(0, 0, 0, 0.28),
    inset 0 0 40px rgba(111, 33, 217, 0.07);
}

.bt-panel--impact {
  border-color: rgba(120, 227, 111, 0.35);
}

/* Frecce tra i pannelli */

.bt-flow-arrow {
  display: grid;
  place-items: center;
}

.bt-flow-arrow span {
  position: relative;
  display: block;
  width: 34px;
  height: 62px;
}

.bt-flow-arrow span::before,
.bt-flow-arrow span::after {
  content: "";
  position: absolute;
  left: 5px;

  width: 36px;
  height: 4px;

  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(128, 48, 230, 0.4),
    var(--bt-purple-light)
  );

  box-shadow: 0 0 20px rgba(157, 77, 255, 0.45);
}

.bt-flow-arrow span::before {
  top: 18px;
  transform: rotate(45deg);
}

.bt-flow-arrow span::after {
  bottom: 18px;
  transform: rotate(-45deg);
}

/* =========================================
   SHARED ICONS AND TYPOGRAPHY
   ========================================= */

.bt-item-icon,
.bt-note-icon {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  place-items: center;

  border-radius: 50%;
}

.bt-item-icon svg,
.bt-note-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bt-panel h3 {
  margin: 0 0 5px;
  color: var(--bt-text);
  font-size: 1.03rem;
  line-height: 1.25;
}

.bt-panel p {
  margin: 0;
  color: var(--bt-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* =========================================
   START PANEL
   ========================================= */

.bt-start-list {
  display: grid;
  gap: 12px;
}

.bt-start-item {
  display: flex;
  align-items: center;
  gap: 18px;

  min-height: 92px;
  padding: 15px 18px;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(16, 14, 44, 0.65);
}

.bt-panel--start .bt-item-icon {
  color: var(--bt-red);
  border: 1px solid rgba(255, 81, 108, 0.36);
  background: var(--bt-red-soft);
}

.bt-start-note {
  display: flex;
  align-items: center;
  gap: 17px;

  margin-top: 18px;
  padding: 16px 18px;

  border: 1px solid rgba(255, 81, 108, 0.52);
  border-radius: 13px;
  background: rgba(47, 11, 30, 0.22);
}

.bt-start-note .bt-note-icon {
  width: 48px;
  height: 48px;

  color: var(--bt-red);
  border: 1px solid rgba(255, 81, 108, 0.28);
  background: rgba(255, 81, 108, 0.08);
}

.bt-start-note p {
  display: grid;
  gap: 4px;
}

.bt-start-note strong {
  color: var(--bt-red);
  font-size: 1rem;
  font-weight: 650;
}

/* =========================================
   TRANSFORMATION TIMELINE
   ========================================= */

.bt-transform-intro {
  margin-bottom: 18px;

  color: #f1effa;
  font-size: 1.06rem;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
}

.bt-transform-intro strong {
  color: var(--bt-purple-light);
}

.bt-timeline {
  position: relative;
  display: grid;
  gap: 4px;
}

.bt-timeline-line {
  position: absolute;
  top: 35px;
  bottom: 35px;
  left: 7px;

  width: 1px;
  background: linear-gradient(
    180deg,
    var(--bt-purple-light),
    rgba(157, 77, 255, 0.15),
    var(--bt-purple-light)
  );

  box-shadow: 0 0 14px rgba(174, 100, 255, 0.6);
}

.bt-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 18px;

  min-height: 91px;
  padding: 10px 4px 10px 26px;
}

.bt-timeline-dot {
  position: absolute;
  left: 3px;
  z-index: 1;

  width: 9px;
  height: 9px;

  border: 2px solid #e5bdff;
  border-radius: 50%;
  background: var(--bt-purple-light);

  box-shadow: 0 0 15px rgba(196, 135, 255, 0.85);
}

.bt-panel--transform .bt-item-icon {
  color: var(--bt-purple-light);
  border: 1px solid rgba(162, 79, 255, 0.35);
  background:
    radial-gradient(
      circle at 45% 35%,
      rgba(162, 79, 255, 0.32),
      rgba(69, 20, 132, 0.35)
    );
}

/* =========================================
   IMPACT PANEL
   ========================================= */

.bt-impact-list {
  display: grid;
  gap: 8px;
}

.bt-impact-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 15px;

  min-height: 80px;
  padding: 11px 14px;

  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  background: rgba(11, 19, 35, 0.72);
}

.bt-panel--impact .bt-item-icon {
  width: 52px;
  height: 52px;

  color: var(--bt-green);
  border: 1px solid rgba(120, 227, 111, 0.3);
  background: var(--bt-green-soft);
}

.bt-impact-item h3 {
  margin-bottom: 3px;
}

.bt-trend {
  display: grid;
  place-items: center;
  color: var(--bt-green);
}

.bt-trend svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bt-impact-summary {
  display: flex;
  align-items: center;
  gap: 16px;

  margin-top: 12px;
  padding: 13px 18px;

  border: 1px solid rgba(120, 227, 111, 0.45);
  border-radius: 12px;
  background: rgba(20, 73, 45, 0.14);
}

.bt-impact-summary > span {
  color: var(--bt-green);
}

.bt-impact-summary svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bt-impact-summary p {
  color: var(--bt-green);
}

.bt-impact-summary strong {
  display: block;
  margin-top: 3px;

  color: var(--bt-text);
  font-size: 1rem;
}

/* =========================================
   CTA
   ========================================= */

.bt-cta {
  display: grid;
  grid-template-columns: auto minmax(260px, 1.05fr) minmax(230px, 0.8fr) minmax(390px, 1.45fr);
  align-items: center;
  gap: 28px;

  margin-top: 26px;
  padding: 22px 32px;

  border: 1px solid rgba(157, 77, 255, 0.45);
  border-radius: 19px;

  background:
    radial-gradient(
      circle at 8% 50%,
      rgba(127, 38, 228, 0.2),
      transparent 20%
    ),
    linear-gradient(
      100deg,
      rgba(29, 14, 67, 0.8),
      rgba(10, 8, 36, 0.88)
    );
}

.bt-cta-icon {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;

  color: #f3e9ff;
  border: 1px solid rgba(177, 93, 255, 0.75);
  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(139, 48, 255, 0.33),
      rgba(62, 14, 121, 0.3)
    );

  box-shadow: 0 0 34px rgba(137, 47, 247, 0.22);
}

.bt-cta-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bt-cta-heading h3 {
  margin: 0;

  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.24;
}

.bt-cta-heading span {
  color: var(--bt-purple-light);
}

.bt-cta-copy {
  margin: 0;
  color: var(--bt-muted);
  font-size: 0.97rem;
  line-height: 1.55;
}

.bt-cta-actions {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.bt-cta-actions.bt-cta-actions--single {
  grid-template-columns: 1fr;
}

.bt-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;

  padding: 13px 22px;

  border-radius: 8px;

  color: var(--bt-text);
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;

  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

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

.bt-button--primary {
  border: 1px solid rgba(192, 120, 255, 0.72);
  background: linear-gradient(135deg, #a239ff, #6810df);

  box-shadow:
    0 12px 30px rgba(113, 25, 224, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.bt-button--primary:hover {
  box-shadow:
    0 16px 38px rgba(113, 25, 224, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.bt-button--secondary {
  border: 1px solid rgba(174, 96, 255, 0.55);
  background: rgba(12, 9, 37, 0.64);
}

.bt-button--secondary:hover {
  border-color: var(--bt-purple-light);
  background: rgba(83, 30, 150, 0.18);
}

.bt-cta-actions small {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 9px;

  color: #aaa6ba;
  font-size: 0.82rem;
}

.bt-cta-actions small svg {
  width: 19px;
  height: 19px;

  fill: none;
  stroke: var(--bt-purple-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

@media (max-width: 1280px) {
  .bt-stage-headings,
  .bt-flow {
    grid-template-columns:
      minmax(250px, 0.9fr)
      42px
      minmax(330px, 1.05fr)
      42px
      minmax(310px, 1fr);
  }

  .bt-stage-connector {
    padding-inline: 5px;
  }

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

  .bt-cta-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1050px) {
  .bt-stage-headings {
    display: none;
  }

  .bt-flow {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bt-flow-arrow {
    height: 52px;
    transform: rotate(90deg);
  }

  .bt-panel {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .bt-panel::before {
    display: block;
    margin-bottom: 22px;

    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .bt-panel--start::before {
    content: "1. Il punto di partenza";
    color: var(--bt-red);
  }

  .bt-panel--transform::before {
    content: "2. La trasformazione";
    color: var(--bt-purple-light);
  }

  .bt-panel--impact::before {
    content: "3. L'impatto sul business";
    color: var(--bt-green);
  }

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

  .bt-cta-copy {
    grid-column: 1 / -1;
  }

  .bt-cta-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .business-transformation {
    padding-inline: 16px;
  }

  .bt-eyebrow {
    gap: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .bt-heading h2 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.02;
  }

  .bt-panel {
    padding: 18px;
    border-radius: 16px;
  }

  .bt-start-item {
    min-height: auto;
    padding: 14px;
  }

  .bt-timeline-item {
    grid-template-columns: 52px 1fr;
    gap: 13px;
    padding-left: 22px;
  }

  .bt-item-icon {
    width: 50px;
    height: 50px;
  }

  .bt-impact-item {
    grid-template-columns: 48px minmax(0, 1fr) 24px;
    gap: 11px;
    padding: 11px;
  }

  .bt-panel--impact .bt-item-icon {
    width: 45px;
    height: 45px;
  }

  .bt-impact-item h3 {
    font-size: 0.93rem;
  }

  .bt-impact-item p {
    font-size: 0.82rem;
  }

  .bt-cta {
    grid-template-columns: 1fr;
    padding: 22px;
    text-align: center;
  }

  .bt-cta-icon {
    width: 78px;
    height: 78px;
    margin-inline: auto;
  }

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

  .bt-cta-actions small {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .bt-start-item,
  .bt-start-note {
    align-items: flex-start;
  }

  .bt-transform-intro {
    text-align: left;
  }

  .bt-timeline-line {
    left: 3px;
  }

  .bt-timeline-dot {
    left: -1px;
  }

  .bt-timeline-item {
    padding-left: 17px;
  }

  .bt-flow-arrow {
    height: 36px;
    transform: rotate(90deg) scale(0.75);
  }
}

/* Migliore accessibilità per chi riduce le animazioni */
@media (prefers-reduced-motion: reduce) {
  .bt-button {
    transition: none;
  }
}
