/* ═══════════════════════════════════════════════════════════
   STRUMENTI HUB — intelligenzasmart.it
   Prefisso: str-
   File: static/css/strumenti.css
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  --str-brand:        #3b82f6;
  --str-brand-dark:   #2563eb;
  --str-violet:       #7c3aed;
  --str-pink:         #ec4899;
  --str-green:        #4ade80;
  --str-bg:           #061020;
  --str-bg-card:      rgba(255,255,255,.05);
  --str-border:       rgba(255,255,255,.10);
  --str-text:         #fff;
  --str-text-secondary: rgba(255,255,255,.68);
  --str-text-muted:   rgba(255,255,255,.38);
  --str-gradient:     linear-gradient(135deg, #3b82f6 0%, #7c3aed 55%, #ec4899 100%);
}

/* ─── HERO ─── */
.str-hero {
  background-color: var(--str-bg);
  background-image:
    radial-gradient(ellipse 70% 60% at 90% 40%, rgba(59,130,246,.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 10% 90%, rgba(124,58,237,.10) 0%, transparent 65%),
    linear-gradient(150deg, #061020 0%, #091830 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.str-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--str-green);
  margin-bottom: 1.25rem;
}

.str-hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--str-green);
  box-shadow: 0 0 8px var(--str-green);
  animation: str-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes str-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.3); }
}

.str-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.06;
  color: var(--str-text);
  margin-bottom: 1.1rem;
}

.gradient-text {
  background: var(--str-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.str-hero .subtitle {
  font-size: 1.08rem;
  color: var(--str-text-secondary);
  line-height: 1.6;
  max-width: 46ch;
  margin-bottom: 2rem;
}

.str-hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2rem;
}

.str-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.str-hero-trust span {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .83rem;
  color: var(--str-text-secondary);
}

.str-hero-trust .bi { font-size: .85rem; }

/* ─── HERO BUTTONS ─── */
.btn-str-brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--str-gradient);
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: .97rem;
  padding: .75rem 1.6rem;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(59,130,246,.35);
  white-space: nowrap;
}

.btn-str-brand:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(59,130,246,.45);
  color: #fff;
}

.btn-str-ghost {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--str-border);
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  padding: .72rem 1.4rem;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}

.btn-str-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}

.btn-str-pro-waiting {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-weight: 600;
  font-size: .93rem;
  padding: .72rem 1.4rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}

.btn-str-pro-waiting:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--str-brand);
  color: #fff;
}

.btn-str-cta-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  color: var(--str-bg);
  text-decoration: none;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}

.btn-str-cta-white:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
  color: var(--str-bg);
}

/* ─── HERO VISUAL / MOCKUP ─── */
.str-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.str-mockup {
  background: rgba(10,20,45,.85);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(59,130,246,.1);
  width: 100%;
  max-width: 440px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.str-mockup-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
}

.str-mockup-dots {
  display: flex;
  gap: .35rem;
}

.str-mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
}

.str-mockup-title {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  margin-left: .25rem;
  font-weight: 500;
}

.str-mockup-block {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  padding: .9rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .2s;
}

.str-mockup-block:last-of-type { border-bottom: none; }
.str-mockup-block:hover { background: rgba(255,255,255,.03); }

.str-mockup-block-label {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.3);
  white-space: nowrap;
  margin-top: .1rem;
  flex-shrink: 0;
  width: 60px;
}

.str-mockup-block-text {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
  flex: 1;
}

.edit-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  flex-shrink: 0;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.str-mockup-block:hover .edit-icon {
  background: rgba(59,130,246,.2);
  color: var(--str-brand);
  border-color: rgba(59,130,246,.3);
}

.str-mockup-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  flex-wrap: wrap;
}

.str-mockup-action {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: .28rem .65rem;
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s;
}

.str-mockup-action:hover {
  color: #fff;
  background: rgba(59,130,246,.15);
  border-color: rgba(59,130,246,.3);
}

.str-mockup-float {
  position: absolute;
  top: -14px;
  right: -14px;
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--str-green);
  background: rgba(10,20,45,.9);
  border: 1px solid rgba(74,222,128,.2);
  border-radius: 999px;
  padding: .35rem .8rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}

.str-hero-visual { position: relative; }

/* ─── SECTIONS — shared ─── */
.str-section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--str-brand);
  margin-bottom: .5rem;
}

.str-section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--str-text);
  margin-bottom: .5rem;
}

.str-section-subtitle {
  font-size: .97rem;
  color: var(--str-text-secondary);
  max-width: 44ch;
  line-height: 1.6;
}

/* ─── REVEAL ANIMATION ─── */
.str-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}

.str-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SECTION: COME FUNZIONA ─── */
.str-section-how {
  background-color: var(--str-bg);
  background-image: linear-gradient(180deg, #091830 0%, #061020 100%);
  padding: 5rem 0;
}

.str-step-card {
  background: var(--str-bg-card);
  border: 1px solid var(--str-border);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: border-color .25s, transform .25s;
}

.str-step-card:hover {
  border-color: rgba(59,130,246,.3);
  transform: translateY(-4px);
}

.str-step-number {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: var(--str-gradient);
  color: #fff;
  font-weight: 800;
  font-size: .97rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(59,130,246,.3);
}

.str-step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--str-text);
  margin-bottom: .5rem;
}

.str-step-card p {
  font-size: .87rem;
  color: var(--str-text-secondary);
  line-height: 1.55;
  margin: 0;
}

.str-step-connector {
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
  font-size: 1.1rem;
  padding-top: 1.5rem;
}

/* ─── SECTION: STRUMENTI ─── */
.str-section-tools {
  background: #061020;
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.str-tool-showcase {
  background: rgba(59,130,246,.05);
  border: 1px solid rgba(59,130,246,.18);
  border-radius: 1.25rem;
  padding: 2rem;
  height: 100%;
  transition: border-color .25s;
}

.str-tool-showcase:hover { border-color: rgba(59,130,246,.35); }

.str-tool-icon {
  width: 3rem;
  height: 3rem;
  border-radius: .75rem;
  background: var(--str-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(59,130,246,.3);
}

.str-tool-showcase h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--str-text);
  margin-bottom: .4rem;
  margin-top: .75rem;
}

.str-tool-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.str-tool-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--str-text-secondary);
}

.str-tool-features .bi-check-circle-fill { color: var(--str-green); font-size: .82rem; }

.str-coming-card {
  background: var(--str-bg-card);
  border: 1px solid var(--str-border);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  transition: border-color .2s;
}

.str-coming-card:hover { border-color: rgba(255,255,255,.18); }

.str-coming-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: .6rem;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,.4);
  margin-bottom: .75rem;
}

.str-coming-card h4 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--str-text);
  margin-bottom: .3rem;
}

.str-coming-card p {
  font-size: .83rem;
  color: var(--str-text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ─── STATUS BADGES ─── */
.str-status {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .25rem .7rem;
}

.str-status--active {
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.2);
  color: var(--str-green);
}

.str-status--coming {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.4);
}

/* ─── SECTION: PRICING ─── */
.str-section-pricing {
  background: #061020;
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.str-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .str-pricing-grid { grid-template-columns: 1fr; }
}

.str-pricing-card {
  background: var(--str-bg-card);
  border: 1px solid var(--str-border);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  transition: border-color .25s, transform .25s;
}

.str-pricing-card:hover {
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
}

.str-pricing-card--pro {
  background: rgba(59,130,246,.06);
  border-color: rgba(59,130,246,.2);
}

.str-pricing-card--pro:hover { border-color: rgba(59,130,246,.4); }

.str-pricing-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .25rem;
}

.str-pricing-card h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--str-text);
  margin: 0;
}

.price-note {
  font-size: .82rem;
  color: var(--str-text-muted);
  margin-bottom: 1rem;
}

.str-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}

.str-pricing-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--str-text-secondary);
}

.str-pricing-list .bi-check-circle-fill { color: var(--str-green); font-size: .8rem; }
.str-pricing-list .bi-star-fill { color: var(--str-brand); font-size: .75rem; }

/* ─── SECTION: CTA FINALE ─── */
.str-section-cta {
  background: #061020;
  padding: 5rem 0 6rem;
}

.str-cta-box {
  background: var(--str-gradient);
  border-radius: 1.5rem;
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.str-cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,.12) 0%, transparent 70%);
  pointer-events: none;
}

.str-cta-box h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
  letter-spacing: -.025em;
}

.str-cta-box p {
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px) {
  .str-hero { padding: 3.5rem 0 3rem; }
  .str-section-how,
  .str-section-tools,
  .str-section-pricing,
  .str-section-cta { padding: 3.5rem 0; }
  .str-cta-box { padding: 2.5rem 1.5rem; }
  .str-hero-cta { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   LANDING PAGE documenti_professionali.html
   Prefisso: lp-
   ═══════════════════════════════════════════════════════════ */

/* ─── HERO ─── */
.lp-hero {
  background-color: #061020;
  background-image:
    radial-gradient(ellipse 65% 55% at 85% 45%, rgba(96,165,250,.10) 0%, transparent 70%),
    radial-gradient(ellipse 45% 65% at 15% 85%, rgba(167,139,250,.08) 0%, transparent 65%),
    linear-gradient(150deg, #061020 0%, #0a1a38 100%);
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #60a5fa;
  margin-bottom: 1.1rem;
}

.lp-kicker--center {
  display: block;
  text-align: center;
  margin-bottom: .5rem;
}

.lp-hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1rem;
}

.lp-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 55%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero .lead {
  color: rgba(255,255,255,.70);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 46ch;
  margin-bottom: 1.5rem;
}

.lp-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.lp-checks li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.72);
}

.lp-checks .bi { color: #4ade80; flex-shrink: 0; }

/* ─── FORM CARD ─── */
.lp-form-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 1.25rem;
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lp-form-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .35rem;
}

.lp-form-sub {
  font-size: .84rem;
  color: rgba(255,255,255,.50);
  margin-bottom: 1.25rem;
}

.lp-input {
  display: block;
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #fff;
  font-size: .93rem;
  padding: .62rem 1.15rem;
  margin-bottom: .65rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  font-family: inherit;
}

.lp-input::placeholder { color: rgba(255,255,255,.35); }

.lp-input:focus {
  border-color: #60a5fa;
  background: rgba(255,255,255,.12);
  box-shadow: 0 0 0 3px rgba(96,165,250,.18);
}

.lp-radio-label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .55rem;
}

.lp-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.1rem;
}

.lp-radio-item {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  user-select: none;
}

.lp-radio-item input[type="radio"] {
  accent-color: #60a5fa;
  width: 14px;
  height: 14px;
}

/* ─── BUTTON LP ─── */
.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: .97rem;
  padding: .72rem 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(37,99,235,.35);
  text-decoration: none;
  font-family: inherit;
  width: 100%;
}

.lp-btn-primary:hover {
  opacity: .92;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37,99,235,.45);
  color: #fff;
}

.lp-privacy {
  font-size: .74rem;
  color: rgba(255,255,255,.32);
  text-align: center;
  margin-top: .65rem;
  margin-bottom: 0;
}

.lp-privacy a { color: rgba(255,255,255,.45); text-decoration: underline; }

/* ─── SECTION HEAD ─── */
.lp-section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.lp-section-head h2 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: .4rem;
}

.lp-section-head p {
  color: var(--bs-secondary-color, #6c757d);
  font-size: .94rem;
  max-width: 42ch;
  margin: 0 auto;
}

/* ─── STEPS ─── */
.lp-steps { padding: 4rem 0; }

.lp-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.lp-step-num {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37,99,235,.28);
}

.lp-step-title {
  font-weight: 700;
  font-size: .97rem;
  margin-bottom: .25rem;
  letter-spacing: -.01em;
}

.lp-step-desc {
  font-size: .86rem;
  color: var(--bs-secondary-color, #6c757d);
  line-height: 1.55;
  margin: 0;
}

/* ─── FEATURES ─── */
.lp-features {
  padding: 3.5rem 0;
  background: var(--bs-tertiary-bg, #f8f9fa);
  border-top: 1px solid var(--bs-border-color, #dee2e6);
  border-bottom: 1px solid var(--bs-border-color, #dee2e6);
}

.lp-feature {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}

.lp-feature-icon {
  font-size: 1.5rem;
  color: #2563eb;
  flex-shrink: 0;
  line-height: 1;
  margin-top: .05rem;
}

[data-bs-theme=dark] .lp-feature-icon { color: #60a5fa; }

.lp-feature-title {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .2rem;
}

.lp-feature-desc {
  font-size: .84rem;
  color: var(--bs-secondary-color, #6c757d);
  margin: 0;
  line-height: 1.5;
}

/* ─── BOTTOM CTA ─── */
.lp-cta-bottom { padding: 4.5rem 0; }

.lp-cta-bottom h2 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: .75rem;
}

/* ─── MOCKUP WIZARD ─── */
.lp-mockup {
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 48px rgba(0,0,0,.45);
  max-width: 480px;
}

.lp-mockup-bar {
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: .45rem .75rem;
  display: flex;
  align-items: center;
  gap: .35rem;
}

.lp-mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}

.lp-mockup-url {
  font-size: .65rem;
  color: rgba(255,255,255,.25);
  margin-left: .4rem;
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-mockup-body {
  background: rgba(6,16,32,.85);
  padding: 1.1rem 1.25rem 1.25rem;
}

.lp-mockup-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1rem;
}

.lp-mstep {
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
  white-space: nowrap;
}

.lp-mstep--done  { color: #4ade80; }
.lp-mstep--active{ color: #60a5fa; }

.lp-mstep-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 0 .5rem;
}

.lp-mockup-label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .55rem;
}

.lp-mockup-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .9rem;
}

.lp-chip {
  font-size: .75rem;
  padding: .28rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.04);
}

.lp-chip--sel {
  border-color: #60a5fa;
  color: #60a5fa;
  background: rgba(96,165,250,.1);
}

.lp-mockup-blocks {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.lp-block {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .5rem;
  padding: .6rem .75rem;
}

.lp-block--generating {
  border-color: rgba(96,165,250,.3);
  background: rgba(96,165,250,.05);
}

.lp-block-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.3);
  display: block;
  margin-bottom: .4rem;
}

.lp-block--generating .lp-block-label { color: #60a5fa; }

.lp-block-lines {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.lp-block-lines span {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,.1);
  display: block;
  width: 100%;
  animation: lp-shimmer 1.6s ease-in-out infinite;
}

.lp-block--generating .lp-block-lines span {
  background: rgba(96,165,250,.2);
}

@keyframes lp-shimmer {
  0%, 100% { opacity: .5; }
  50%       { opacity: 1; }
}

@media (max-width: 991.98px) { .lp-mockup { max-width: 100%; } }

@media (max-width: 575.98px) {
  .lp-hero       { padding: 3rem 0 2.5rem; }
  .lp-form-card  { padding: 1.25rem; }
  .lp-steps      { padding: 2.5rem 0; }
  .lp-features   { padding: 2.5rem 0; }
  .lp-cta-bottom { padding: 2.5rem 0; }
}