/* ==========================================================================
   Conta Docs — Homepage 2026 "Fluxul deșeului"
   Green-tech, bright, heavily animated. Everything scoped under .home-2026
   so it can't leak into the Bulma-styled app/dashboard.
   ========================================================================== */

.home-2026 {
  --ink: #0d2318;
  --ink-soft: #3c5647;
  --paper: #ffffff;
  --mist: #eef6f0;
  --mist-2: #e3f0e7;
  --green-700: #0f5132;
  --green-600: #15803d;
  --green-500: #1fa463;
  --green-400: #34d17e;
  --lime: #b7f171;
  --lime-soft: #d9f9b8;
  --slate: #08160f;

  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(13, 35, 24, 0.06);
  --shadow: 0 18px 40px -18px rgba(13, 35, 24, 0.22);
  --shadow-lg: 0 40px 80px -30px rgba(13, 35, 24, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.home-2026 *,
.home-2026 *::before,
.home-2026 *::after {
  box-sizing: border-box;
}

.home-2026 h1,
.home-2026 h2,
.home-2026 h3,
.home-2026 .display {
  font-family: "Bricolage Grotesque", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
}

.home-2026 a {
  color: inherit;
  text-decoration: none;
}

.home-2026 .wrap {
  width: min(1160px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 5vw, 2rem);
}
/* let grid/flex children shrink below their content width (prevents mobile overflow) */
.home-2026 .hero-grid > *,
.home-2026 .stats > *,
.home-2026 .grid-3 > *,
.home-2026 .grid-2 > *,
.home-2026 .price-wrap > *,
.home-2026 .foot-grid > * {
  min-width: 0;
}

/* ---------- Buttons ---------------------------------------------------- */
.h-btn {
  --btn-bg: var(--green-600);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  border: 0;
  cursor: pointer;
  background: var(--btn-bg);
  color: var(--btn-fg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: 0 12px 26px -12px rgba(21, 128, 61, 0.7);
}
.h-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}
.h-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px -14px rgba(21, 128, 61, 0.75);
}
.h-btn:hover::after {
  transform: translateX(120%);
}
.h-btn.is-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1.5px solid rgba(13, 35, 24, 0.16);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.h-btn.is-ghost:hover {
  border-color: var(--green-500);
  color: var(--green-700);
}
.h-btn.is-lime {
  --btn-bg: var(--lime);
  --btn-fg: var(--green-700);
  box-shadow: 0 12px 26px -12px rgba(120, 190, 60, 0.8);
}
/* link-buttons (<a>) must use the button fg, not the inherited text color */
.home-2026 a.h-btn {
  color: var(--btn-fg);
}
.home-2026 .h-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

/* ---------- Navbar ----------------------------------------------------- */
.home-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.home-nav.is-stuck {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(13, 35, 24, 0.06), var(--shadow-sm);
}
.home-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem 0;
}
.home-nav .brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 1.28rem;
}
.home-nav .brand img {
  height: 34px;
  width: auto;
}
.home-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.home-nav .nav-links a.link {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.25s var(--ease);
}
.home-nav .nav-links a.link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--green-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.home-nav .nav-links a.link:hover {
  color: var(--ink);
}
.home-nav .nav-links a.link:hover::after {
  transform: scaleX(1);
}
@media (max-width: 860px) {
  .home-nav .nav-links .link {
    display: none;
  }
  .home-nav .nav-links .h-btn.is-ghost {
    display: none;
  }
  .home-nav .nav-links .h-btn {
    padding: 0.7rem 1.15rem;
    font-size: 0.92rem;
  }
  .home-nav .nav-inner {
    padding: 0.8rem 0;
  }
  .home-nav .brand {
    font-size: 1.1rem;
  }
}

/* ---------- Hero ------------------------------------------------------- */
.hero-2026 {
  position: relative;
  padding: clamp(3rem, 7vw, 6.5rem) 0 clamp(4rem, 8vw, 7rem);
  background: radial-gradient(120% 120% at 80% -10%, var(--mist-2) 0%, var(--paper) 55%);
  overflow: hidden;
}
.hero-2026 .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  z-index: 0;
  animation: drift 18s var(--ease) infinite alternate;
}
.hero-2026 .blob.b1 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, var(--green-400), transparent 70%);
  top: -120px;
  right: -80px;
}
.hero-2026 .blob.b2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--lime), transparent 70%);
  bottom: -140px;
  left: -60px;
  animation-delay: -6s;
}
.hero-2026 .blob.b3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #7fe3ff, transparent 70%);
  top: 40%;
  left: 45%;
  opacity: 0.28;
  animation-delay: -11s;
}
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.15); }
}
/* subtle grain */
.hero-2026::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-2026 .hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 940px) {
  .hero-2026 .hero-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .hero-2026 {
    padding-top: 2rem;
  }
  .hero-2026 .cta-row {
    width: 100%;
  }
  .hero-2026 .cta-row .h-btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(31, 164, 99, 0.1);
  border: 1px solid rgba(31, 164, 99, 0.22);
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  max-width: 100%;
  line-height: 1.3;
  text-align: left;
}
.eyebrow .dot {
  flex: 0 0 auto;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 0 rgba(31, 164, 99, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 164, 99, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(31, 164, 99, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 164, 99, 0); }
}

.hero-2026 h1 {
  font-size: clamp(2.05rem, 7vw, 4.3rem);
  margin: 1.1rem 0 0;
  overflow-wrap: break-word;
}
.hero-2026 h1 .grad {
  background: linear-gradient(105deg, var(--green-600), var(--green-400) 55%, #7bc86c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-2026 .lede {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 34ch;
  margin: 1.4rem 0 0;
  line-height: 1.55;
}
.hero-2026 .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.hero-2026 .trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.3rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.hero-2026 .trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-2026 .trust svg {
  width: 18px;
  height: 18px;
  color: var(--green-500);
}

/* Hero page-load stagger */
.hero-2026 [data-rise] {
  opacity: 0;
  transform: translateY(26px);
  animation: rise 0.9s var(--ease) forwards;
}
.hero-2026 [data-rise="1"] { animation-delay: 0.05s; }
.hero-2026 [data-rise="2"] { animation-delay: 0.16s; }
.hero-2026 [data-rise="3"] { animation-delay: 0.27s; }
.hero-2026 [data-rise="4"] { animation-delay: 0.38s; }
.hero-2026 [data-rise="5"] { animation-delay: 0.49s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* ---------- Hero pipeline visual -------------------------------------- */
.pipeline {
  position: relative;
  display: grid;
  gap: 0.9rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(13, 35, 24, 0.08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  animation: rise 1s var(--ease) 0.4s forwards;
}
.pipeline .pl-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pipeline .pl-head .live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green-600);
}
.pipeline .pl-head .live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  animation: pulse 1.6s infinite;
}
.pl-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(13, 35, 24, 0.07);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateX(-14px);
  animation: slideIn 0.6s var(--ease) forwards;
}
.pl-step:nth-child(2) { animation-delay: 0.6s; }
.pl-step:nth-child(3) { animation-delay: 0.85s; }
.pl-step:nth-child(4) { animation-delay: 1.1s; }
.pl-step:nth-child(5) { animation-delay: 1.35s; }
.pl-step:nth-child(6) { animation-delay: 1.6s; }
@keyframes slideIn {
  to { opacity: 1; transform: none; }
}
.pl-step .ic {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--green-500), var(--green-400));
  color: #fff;
}
.pl-step .ic svg { width: 20px; height: 20px; }
.pl-step .txt strong {
  display: block;
  font-size: 0.98rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.pl-step .txt small {
  color: var(--ink-soft);
  font-size: 0.8rem;
}
.pl-step .check {
  margin-left: auto;
  color: var(--green-500);
  width: 22px;
  height: 22px;
  opacity: 0;
  transform: scale(0.4);
  animation: pop 0.4s var(--ease) forwards;
}
.pl-step:nth-child(2) .check { animation-delay: 1.0s; }
.pl-step:nth-child(3) .check { animation-delay: 1.25s; }
.pl-step:nth-child(4) .check { animation-delay: 1.5s; }
.pl-step:nth-child(5) .check { animation-delay: 1.75s; }
.pl-step:nth-child(6) .check { animation-delay: 2.0s; }
@keyframes pop {
  to { opacity: 1; transform: scale(1); }
}
/* connector flow line */
.pl-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -0.9rem;
  height: 0.9rem;
  width: 2px;
  background: linear-gradient(var(--green-400), transparent);
}

/* Floating badge chips over hero */
.float-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(13, 35, 24, 0.06);
  animation: floaty 5s ease-in-out infinite;
}
.float-chip svg { width: 16px; height: 16px; color: var(--green-500); }
.float-chip.fc1 { top: 6%; right: 2%; animation-delay: -1s; }
.float-chip.fc2 { bottom: 8%; right: 8%; animation-delay: -3s; }
@media (max-width: 940px) { .float-chip { display: none; } }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Marquee logos / codes ------------------------------------- */
.codes-bar {
  border-top: 1px solid rgba(13, 35, 24, 0.07);
  border-bottom: 1px solid rgba(13, 35, 24, 0.07);
  background: var(--mist);
  padding: 1.1rem 0;
  overflow: hidden;
}
.codes-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: scrollX 32s linear infinite;
}
.codes-bar:hover .codes-track { animation-play-state: paused; }
.codes-track span {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.98rem;
  white-space: nowrap;
  opacity: 0.75;
}
.codes-track span b { color: var(--green-600); }
@keyframes scrollX {
  to { transform: translateX(-50%); }
}

/* ---------- Section scaffolding --------------------------------------- */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section.tint { background: var(--mist); }
.section-head {
  max-width: 40rem;
  margin-bottom: 3rem;
}
.section-head .kicker {
  color: var(--green-600);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.7rem 0 0;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-top: 1rem;
  line-height: 1.6;
}

/* reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }
[data-reveal][data-delay="5"] { transition-delay: 0.4s; }

/* ---------- Stats ------------------------------------------------------ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(13, 35, 24, 0.06);
  box-shadow: var(--shadow-sm);
}
.stat .num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  color: var(--green-600);
  line-height: 1;
}
.stat .num .suf { color: var(--ink); }
.stat .lbl {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ---------- Feature cards --------------------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  padding: 1.8rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(13, 35, 24, 0.07);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(31, 164, 99, 0.35);
}
.card:hover::before { transform: scaleX(1); }
.card .ic {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--green-700);
  background: linear-gradient(150deg, var(--lime-soft), rgba(31, 164, 99, 0.12));
  margin-bottom: 1.1rem;
  transition: transform 0.4s var(--ease);
}
.card:hover .ic { transform: rotate(-6deg) scale(1.08); }
.card .ic svg { width: 26px; height: 26px; }
.card h3 {
  font-size: 1.25rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}
.card p {
  color: var(--ink-soft);
  margin-top: 0.55rem;
  line-height: 1.6;
  font-size: 1rem;
}
.card .tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-600);
}

/* document showcase card variant */
.doc-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.doc-card .doc-top {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.doc-card .pill {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(31, 164, 99, 0.12);
  color: var(--green-700);
  letter-spacing: 0.03em;
}
.doc-card .pill.danger { background: rgba(220, 90, 60, 0.12); color: #b5432b; }

/* ---------- Pricing ---------------------------------------------------- */
.price-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 900px) { .price-wrap { grid-template-columns: 1fr; } }
.price-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  color: #fff;
  background: radial-gradient(130% 130% at 100% 0%, var(--green-500) 0%, var(--green-700) 70%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.price-card::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 241, 113, 0.4), transparent 70%);
  top: -120px; right: -80px;
  animation: drift 14s var(--ease) infinite alternate;
}
.price-card .badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--lime);
  color: var(--green-700);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card .badge svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}
.price-card .plan-name {
  position: relative;
  z-index: 1;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 1.1rem;
}
.price-card .amount {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0.4rem 0 0.3rem;
}
.price-card .amount b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 800;
}
.price-card .amount span { opacity: 0.85; font-weight: 600; }
.price-card ul {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 1.4rem 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.price-card li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
}
.price-card li svg {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  color: var(--lime);
}
.price-aside h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.price-aside p {
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 0.9rem;
  font-size: 1.05rem;
}
.price-aside .mini {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.7rem;
}
.price-aside .mini div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--ink);
}
.price-aside .mini svg { width: 20px; height: 20px; color: var(--green-500); }

/* ---------- CTA band --------------------------------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 5vw, 4rem);
  text-align: center;
  color: #fff;
  background: linear-gradient(120deg, var(--slate), var(--green-700));
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 50% -20%, rgba(183, 241, 113, 0.25), transparent 60%);
}
.cta-band h2 {
  position: relative;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.cta-band p {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  margin: 1rem auto 2rem;
  max-width: 46ch;
  font-size: 1.1rem;
}
.cta-band .cta-row { position: relative; display: flex; justify-content: center; gap: 0.9rem; flex-wrap: wrap; }

/* ---------- Footer ----------------------------------------------------- */
.foot-2026 {
  background: var(--slate);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(3rem, 6vw, 5rem) 0 2.5rem;
}
.foot-2026 .foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 820px) { .foot-2026 .foot-grid { grid-template-columns: 1fr; gap: 2rem; } }
.foot-2026 .brand {
  display: flex; align-items: center; gap: 0.6rem;
  color: #fff; font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 1.3rem;
}
.foot-2026 .brand img { height: 34px; filter: brightness(0) invert(1); }
.foot-2026 h4 {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.foot-2026 a.f-link, .foot-2026 li {
  color: rgba(255, 255, 255, 0.7);
  line-height: 2;
  transition: color 0.25s var(--ease);
}
.foot-2026 a.f-link:hover { color: var(--lime); }
.foot-2026 .legal {
  font-size: 0.86rem;
  line-height: 1.7;
  margin-top: 1rem;
}
.foot-2026 .socials { display: flex; gap: 0.6rem; margin-top: 1.3rem; }
.foot-2026 .socials a {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.foot-2026 .socials a:hover { transform: translateY(-3px); background: var(--green-600); }
.foot-2026 .socials img { height: 20px; }
.foot-2026 .copyright {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* ---------- Demo modal ------------------------------------------------- */
.home-2026 .demo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.home-2026 .demo-modal.open { opacity: 1; pointer-events: auto; }
.home-2026 .demo-modal .backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 15, 0.78);
  backdrop-filter: blur(6px);
}
.home-2026 .demo-modal .frame {
  position: relative;
  width: min(880px, 92vw);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: scale(0.94);
  transition: transform 0.4s var(--ease);
}
.home-2026 .demo-modal.open .frame { transform: scale(1); }
.home-2026 .demo-modal iframe { width: 100%; height: 100%; border: 0; }
.home-2026 .demo-modal .close {
  position: absolute;
  top: -14px; right: -14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

/* ---------- Reduced motion -------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .home-2026 *,
  .home-2026 *::before,
  .home-2026 *::after {
    animation: none !important;
    transition: none !important;
  }
  .home-2026 [data-rise],
  .home-2026 [data-reveal],
  .home-2026 .pipeline,
  .home-2026 .pl-step,
  .home-2026 .pl-step .check {
    opacity: 1 !important;
    transform: none !important;
  }
}
