    /* ===================== KEYFRAMES ===================== */
    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* ===================== RESET & BASE ===================== */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
      background: #F4F7F5;
      color: #1A202C;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ===================== TOKENS ===================== */
    :root {
      --brand-green: #5db885;
      --brand-green-dark: #338f73;
      --brand-green-darker: #2a745d;
      --brand-green-light: #88d1a4;
      --brand-green-soft: rgba(93, 184, 133, 0.1);
      --brand-accent: #E2B951;
      --brand-accent-dark: #c9a33a;
      --brand-accent-soft: rgba(226, 185, 81, 0.14);
      --text-primary: #1A202C;
      --text-secondary: #64748B;
      --text-muted: #94A3B8;
      --primary: #2F3C48;
      --bg-base: #F4F7F5;
      --shadow-glass: 0 12px 40px 0 rgba(31, 38, 135, 0.07);
      --shadow-glass-hover: 0 16px 48px 0 rgba(31, 38, 135, 0.16);
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-pill: 9999px;
    }

    /* ===================== UTILITIES ===================== */
    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .section {
      padding: 96px 0;
    }

    .section-sm {
      padding: 72px 0;
    }

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

    .section-bg-soft {
      background: linear-gradient(180deg, #F4F7F5 0%, white 100%);
    }

    .section-bg-light {
      background: linear-gradient(180deg, white 0%, #eef8f2 100%);
    }

    .section-bg-white {
      background: white;
    }

    .section-bg-base {
      background: #F4F7F5;
    }

    /* ===================== TYPOGRAPHY ===================== */
    h1,
    h2,
    h3,
    h4 {
      line-height: 1.2;
      font-weight: 700;
      color: var(--text-primary);
    }

    h1 {
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      letter-spacing: -0.03em;
    }

    h2 {
      font-size: clamp(1.9rem, 3.6vw, 2.8rem);
      letter-spacing: -0.02em;
    }

    h3 {
      font-size: clamp(1.25rem, 2.4vw, 1.6rem);
      letter-spacing: -0.01em;
    }

    p {
      color: var(--text-secondary);
      font-size: 1.05rem;
    }

    body {
      font-size: 15.3px;
    }

    .label-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--brand-green-soft);
      color: var(--brand-green-dark);
      font-size: 0.77rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: var(--radius-pill);
      border: 1.5px solid rgba(93, 184, 133, 0.35);
      margin-bottom: 20px;
    }

    .label-badge i {
      font-size: 1.2rem;
    }

    .label-badge-center {
      margin: 0 auto 20px;
    }

    .label-badge-inverse {
      background: rgba(255, 255, 255, 0.15);
      color: rgba(255, 255, 255, 0.9);
      border-color: rgba(255, 255, 255, 0.2);
      margin: 0 auto 28px;
    }

    .section-support-text {
      margin-top: 10px;
      font-size: 0.96rem;
    }

    /* ===================== BUTTONS ===================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: inherit;
      font-weight: 700;
      font-size: 1rem;
      padding: 14px 32px;
      min-height: 52px;
      border-radius: var(--radius-pill);
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.25s ease;
      white-space: nowrap;
    }

    .btn i {
      font-size: 1.5rem;
    }

    .btn-primary {
      background: var(--brand-green-dark);
      color: white;
      box-shadow: 0 4px 20px rgba(51, 143, 115, 0.35);
    }

    .btn-primary:hover {
      background: var(--brand-green-darker);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(51, 143, 115, 0.45);
    }

    .btn-secondary {
      background: white;
      color: var(--brand-green-dark);
      border: 2px solid rgba(51, 143, 115, 0.3);
    }

    .btn-secondary:hover {
      border-color: var(--brand-green-dark);
      background: var(--brand-green-soft);
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: transparent;
      color: var(--brand-green-dark);
      border: 2px solid transparent;
    }

    .btn-ghost:hover {
      background: var(--brand-green-soft);
    }

    .btn-lg {
      padding: 17px 40px;
      font-size: 1.2rem;
      min-height: 58px;
    }

    .btn-sm {
      padding: 10px 22px;
      font-size: 0.88rem;
      min-height: 40px;
    }

    .btn-white {
      background: white;
      color: var(--brand-green-dark);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }

    .btn-white:hover {
      background: #f0fdf4;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    }

    .btn-outline-white {
      background: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .btn-outline-white:hover {
      border-color: white;
      background: rgba(255, 255, 255, 0.12);
    }

    /* ===================== GLASS CARD ===================== */
    .glass-card {
      background: rgba(255, 255, 255, 0.84);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1.5px solid rgba(255, 255, 255, 0.78);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-glass);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .glass-card:hover {
      box-shadow: var(--shadow-glass-hover);
      transform: translateY(-4px);
    }

    /* ===================== MISC ===================== */
    .divider {
      width: 56px;
      height: 4px;
      background: linear-gradient(90deg, var(--brand-green-dark), var(--brand-green));
      border-radius: 2px;
      margin: 18px auto;
    }

    .section-title-block {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title-block h2 {
      margin-bottom: 14px;
    }

    .section-title-block p {
      font-size: 1.1rem;
      max-width: 640px;
      margin: 0 auto;
      color: var(--text-secondary);
    }

    .mini-tag {
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 11px;
      border-radius: var(--radius-pill);
    }

    .tag-green {
      background: var(--brand-green-soft);
      color: var(--brand-green-dark);
    }

    .tag-accent {
      background: rgba(226, 185, 81, 0.14);
      color: var(--brand-accent-dark);
    }

    .tag-gray {
      background: rgba(100, 116, 139, 0.1);
      color: var(--text-secondary);
    }

    .tag-blue {
      background: rgba(8, 145, 178, 0.12);
      color: #0e7490;
    }

    /* ===================== ANIMATIONS ===================== */
    .fade-in {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fade-in-delay-1 {
      transition-delay: 0.1s;
    }

    .fade-in-delay-2 {
      transition-delay: 0.2s;
    }

    .fade-in-delay-3 {
      transition-delay: 0.3s;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    /* ===================== HEADER ===================== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 14px 24px;
      transition: all 0.35s ease;
    }

    header.scrolled .nav-inner {
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 2px 24px rgba(31, 38, 135, 0.09);
      border-radius: var(--radius-pill);
      border: 1.5px solid rgba(255, 255, 255, 0.85);
      padding: 0 10px 0 20px;
      height: 62px;
    }

    .nav-inner {
      max-width: 1180px;
      margin: 0 auto;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-radius: 0;
      padding: 0 8px;
      border: none;
      box-shadow: none;
      transition: all 0.4s ease;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--brand-green-dark);
      letter-spacing: -0.02em;
    }

    .nav-logo .logo-icon {
      width: 34px;
      height: 34px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
    }

    .nav-logo-img {
      height: 60px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-secondary);
      transition: color 0.2s, background 0.2s;
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 8px 16px;
      border-radius: var(--radius-pill);
    }

    .nav-links a:hover {
      color: var(--brand-green-dark);
      background: var(--brand-green-soft);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* ===================== HERO ===================== */
    #hero {
      min-height: 100vh;
      padding-top: 90px;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #dbf1e6 0%, #eaf6ef 40%, var(--bg-base) 100%);
    }

    .hero-bg-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.5;
      pointer-events: none;
    }

    .orb-1 {
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, #b8e8c8, transparent 70%);
      top: -200px;
      right: -160px;
    }

    .orb-2 {
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(226, 185, 81, 0.22), transparent 70%);
      top: 100px;
      left: -120px;
    }

    /* Hero text block — centered */
    .hero-text-wrap {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 60px 24px 48px;
      max-width: 820px;
      margin: 0 auto;
    }

    .hero-headline {
      margin-bottom: 20px;
    }

    .hero-headline em {
      font-style: normal;
      background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    h1.hero-headline {
      font-size: clamp(2.2rem, 5vw, 4.0rem);
    }

    .hero-sub {
      font-size: 1.25rem;
      color: var(--text-secondary);
      margin-bottom: 36px;
      line-height: 1.75;
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-cta-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    /* Hero visual (tilted placeholder) */
    .hero-visual-wrap {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 16px 0;
      transform-origin: top center;
      /* initial tilt — will be driven by JS on scroll */
      transform: perspective(1400px) rotateX(18deg) scale(0.97);
      transition: transform 0.12s linear;
      will-change: transform;
    }

    .hero-visual-inner {
      width: 100%;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      overflow: hidden;
      box-shadow: 0 40px 100px rgba(31, 38, 135, 0.18), 0 0 0 1.5px rgba(59, 140, 110, 0.12);
    }

    /* ===================== IMAGE PLACEHOLDER ===================== */
    .img-placeholder {
      width: 100%;
      border-radius: var(--radius-lg);
      background: linear-gradient(145deg, #eef8f2, #dceee5);
      border: 2px dashed rgba(59, 140, 110, 0.28);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: var(--brand-green-dark);
      position: relative;
      overflow: hidden;
    }



    .img-placeholder-icon {
      font-size: 2.4rem;
      opacity: 0.45;
      position: relative;
      z-index: 1;
    }

    .img-placeholder-label {
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      opacity: 0.6;
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 0 20px;
    }

    .img-placeholder-sub {
      font-size: 0.72rem;
      color: var(--text-muted);
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 0 20px;
      max-width: 380px;
    }

    /* ===================== FEATURE PRINTS (CARD STYLE) ===================== */
    .feature-ph {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
      background: var(--brand-green-dark);
      padding: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: auto;
    }

    .feature-ph img {
      border-radius: var(--radius-md);
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
      background: white;
      border: 1.5px solid rgba(255, 255, 255, 0.9);
    }

    @media (max-width: 768px) {
      .feature-ph {
        padding: 16px;
      }
    }

    /* ===================== HERO PRINT (INTEGRATED STYLE) ===================== */
    .hero-ph {
      width: 100%;
      height: auto;
      overflow: hidden;
    }

    .hero-ph img {
      width: 100%;
      display: block;
      height: auto;
    }

    /* ===================== SEGMENT ROW ===================== */
    .segment-row {
      background: white;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      padding: 32px 0;
    }

    .segment-inner {
      display: flex;
      align-items: stretch;
      gap: 0;
      justify-content: center;
      max-width: 960px;
      margin: 0 auto;
    }

    .segment-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      flex: 1;
      padding: 0 24px;
      text-align: center;
      border-right: 1px solid rgba(0, 0, 0, 0.07);
    }

    .segment-item:last-child {
      border-right: none;
    }

    .segment-icon {
      width: 48px;
      height: 48px;
      background: var(--brand-green-soft);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .segment-icon i {
      font-size: 2rem;
      color: var(--brand-green-dark);
    }

    .segment-label {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-primary);
    }

    .segment-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.4;
    }

    .segment-tag {
      font-size: 0.8rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: var(--radius-pill);
      background: rgba(226, 185, 81, 0.18);
      color: var(--brand-accent-dark);
    }

    /* ===================== DOR ===================== */
    .dor-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .compare-card {
      background: white;
      border-radius: var(--radius-md);
      padding: 28px;
      box-shadow: var(--shadow-glass);
    }

    .compare-header {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .compare-header.before {
      color: #e85b4d;
    }

    .compare-header.after {
      color: var(--brand-green-dark);
    }

    .compare-header i {
      font-size: 2.5rem;
    }

    .compare-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .compare-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .compare-list li i {
      font-size: 1.05rem;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .compare-list.after i {
      color: var(--brand-green-dark);
    }

    .compare-list.before i {
      color: #e85b4d;
    }

    .dor-image-wrap {
      margin-top: 52px;
    }

    /* ===================== STATS ===================== */
    #stats {
      background: linear-gradient(135deg, var(--brand-green-dark) 0%, #2d6b55 100%);
      padding: 80px 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
    }

    .stat-item {
      text-align: center;
    }

    .stat-icon {
      width: 52px;
      height: 52px;
      background: rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }

    .stat-icon i {
      font-size: 1.4rem;
      color: white;
    }

    .stat-value {
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 800;
      color: white;
      letter-spacing: -0.03em;
      margin-bottom: 6px;
    }

    .stat-highlight {
      color: rgba(255, 255, 255, 0.75);
    }

    .stat-label {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.72);
      font-weight: 500;
      line-height: 1.4;
    }

    /* ===================== FEATURES ===================== */
    #features {
      background: white;
    }

    .feature-block {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 52px;
      align-items: center;
      margin-bottom: 80px;
    }

    .feature-block:last-child {
      margin-bottom: 0;
    }

    .feature-block.reverse {
      direction: rtl;
    }

    .feature-block.reverse>* {
      direction: ltr;
    }

    .feature-bullets {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 20px;
    }

    .feature-bullets li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.92rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    .feature-bullets li i {
      font-size: 1rem;
      color: var(--brand-green-dark);
      flex-shrink: 0;
      margin-top: 1px;
    }

    .feature-copy-intro {
      margin-top: 12px;
    }

    .feature-highlight {
      margin-top: 22px;
      padding: 16px 20px;
      background: var(--brand-green-soft);
      border-radius: var(--radius-md);
      border: 1.5px solid rgba(104, 196, 136, 0.3);
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .feature-highlight i {
      font-size: 1.4rem;
      color: var(--brand-green-dark);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .feature-highlight strong {
      display: block;
      font-size: 0.88rem;
      color: var(--brand-green-dark);
      margin-bottom: 4px;
    }

    .feature-highlight span {
      font-size: 0.82rem;
      color: var(--text-secondary);
      line-height: 1.5;
    }

    /* ===================== HOW ===================== */
    #how {
      background: linear-gradient(180deg, white 0%, #eef8f2 100%);
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      position: relative;
    }

    .steps-grid::before {
      content: '';
      position: absolute;
      top: 36px;
      left: calc(16.66% + 16px);
      right: calc(16.66% + 16px);
      height: 2px;
      background: linear-gradient(90deg, var(--brand-green-dark), var(--brand-green));
      z-index: 0;
    }

    .step-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 32px 24px;
      box-shadow: var(--shadow-glass);
      border: 1.5px solid rgba(93, 184, 133, 0.15);
      text-align: center;
      position: relative;
      z-index: 1;
      transition: all 0.3s ease;
    }

    .step-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-glass-hover);
    }

    .step-num {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
      color: white;
      font-size: 1.3rem;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      box-shadow: 0 8px 20px rgba(59, 140, 110, 0.35);
    }

    .step-icon-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 14px;
    }

    .step-icon-wrap {
      width: 40px;
      height: 40px;
      background: var(--brand-green-soft);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .step-icon-wrap i {
      font-size: 1.2rem;
      color: var(--brand-green-dark);
    }

    .step-title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-primary);
    }

    .step-text {
      font-size: 0.88rem;
      color: var(--text-secondary);
      line-height: 1.65;
    }

    /* ===================== PROVA SOCIAL (FOUNDERS) ===================== */
    #prova {
      background: white;
    }

    .founders-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-bottom: 48px;
    }

    .founder-card {
      padding: 36px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .founder-photo {
      width: 100%;
      height: 180px;
      margin: 0 0 5px 0;
      border-radius: var(--radius-md);
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .founder-photo-prospera {
      background: rgba(18, 38, 50, 0.95);
    }

    .founder-photo-gp {
      background: #121212;
    }

    .founder-photo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .founder-logo {
      max-width: 80%;
      max-height: 80%;
      object-fit: contain;
    }



    .founder-photo-icon {
      font-size: 2.8rem;
      opacity: 0.35;
      position: relative;
      z-index: 1;
    }

    .founder-photo-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      opacity: 0.55;
      position: relative;
      z-index: 1;
    }

    .founder-header {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .founder-initials {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      font-weight: 800;
      color: white;
      flex-shrink: 0;
    }

    .founder-name {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 3px;
    }

    .founder-role {
      font-size: 0.86rem;
      color: var(--text-muted);
      line-height: 1.4;
    }

    .founder-bio {
      font-size: 1.05rem;
      color: var(--text-secondary);
      line-height: 1.75;
      font-style: italic;
      margin: 12px 0;
    }

    .testimonial-quote-icon {
      font-size: 3.5rem;
      color: var(--brand-green-dark);
      line-height: 1;
      font-family: serif;
      opacity: 0.25;
      margin-bottom: -20px;
      display: block;
    }

    .testimonial-author {
      border-left: 3px solid var(--brand-green-dark);
      padding-left: 14px;
      margin-top: 10px;
    }

    .testimonial-author-name {
      display: block;
      font-weight: 700;
      font-size: 1rem;
      color: var(--text-primary);
    }

    .testimonial-author-role {
      display: block;
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-top: 2px;
    }

    .prova-closing::before {
      content: '\201C';
      position: absolute;
      top: -10px;
      left: 44px;
      font-size: 8rem;
      line-height: 1;
      font-family: Georgia, 'Times New Roman', serif;
      color: var(--brand-green);
      opacity: 0.35;
      pointer-events: none;
    }

    .prova-closing blockquote {
      font-size: 1rem;
      color: var(--text-primary);
      line-height: 1.85;
      font-style: italic;
      font-weight: 500;
      margin: 0;
    }

    .prova-closing blockquote+p {
      margin-top: 18px;
      font-size: 1rem;
      font-style: italic;
      color: var(--text-secondary);
      line-height: 1.75;
    }

    .prova-closing-author {
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--brand-green-dark);
    }

    .prova-closing-author::before {
      content: '';
      display: inline-block;
      width: 28px;
      height: 2px;
      background: var(--brand-green-dark);
      border-radius: 2px;
    }

    /* ===================== FAQ ===================== */
    #faq {
      background: #F4F7F5;
    }

    .faq-list {
      max-width: 740px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .faq-item {
      background: white;
      border-radius: var(--radius-md);
      border: 1.5px solid rgba(0, 0, 0, 0.06);
      overflow: hidden;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .faq-item:hover {
      border-color: rgba(104, 196, 136, 0.35);
      box-shadow: var(--shadow-glass);
    }

    .faq-question {
      width: 100%;
      padding: 20px 26px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      background: none;
      border: none;
      cursor: pointer;
      font-family: inherit;
      font-size: 0.97rem;
      font-weight: 600;
      color: var(--text-primary);
      text-align: left;
    }

    .faq-toggle {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--brand-green-soft);
      color: var(--brand-green-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.3s, background 0.2s;
    }

    .faq-toggle i {
      font-size: 1rem;
      transition: transform 0.3s;
    }

    .faq-item.open .faq-toggle {
      background: var(--brand-green-dark);
      color: white;
    }

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

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
    }

    .faq-answer-inner {
      padding: 0 26px 20px;
      font-size: 0.92rem;
      color: var(--text-secondary);
      line-height: 1.7;
    }

    /* ===================== PRICING ===================== */
    #pricing {
      background: linear-gradient(180deg, #eef8f2 0%, #F4F7F5 100%);
    }

    .pricing-anchor {
      text-align: center;
      margin-bottom: 36px;
      padding: 18px 28px;
      background: white;
      border-radius: var(--radius-md);
      border: 1.5px solid rgba(93, 184, 133, 0.2);
      display: inline-block;
    }

    .pricing-anchor-wrap {
      text-align: center;
      margin-bottom: 44px;
    }

    .pricing-anchor p {
      font-size: 0.9rem;
      color: var(--text-secondary);
      font-style: italic;
    }

    .pricing-anchor-icon {
      color: var(--brand-green-dark);
      font-size: 1rem;
      margin-right: 6px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    .pricing-card {
      padding: 36px 28px;
      display: flex;
      flex-direction: column;
    }

    .pricing-badge {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      display: inline-block;
      margin-bottom: 16px;
      padding: 5px 12px;
      border-radius: var(--radius-pill);
    }

    .pricing-price-row {
      display: flex;
      align-items: flex-end;
      gap: 3px;
      margin-bottom: 6px;
    }

    .pricing-currency {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-secondary);
      align-self: flex-start;
      margin-top: 8px;
    }

    .pricing-amount {
      font-size: 3rem;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .pricing-period {
      font-size: 0.83rem;
      color: var(--text-muted);
      margin-bottom: 7px;
    }

    .pricing-note {
      font-size: 0.8rem;
      font-weight: 700;
    }

    .pricing-note-inline {
      color: var(--brand-green-dark);
      display: flex;
      align-items: center;
      gap: 4px;
      margin-bottom: 0;
    }

    .pricing-cents {
      font-size: 0.38em;
      font-weight: 700;
      margin-bottom: 10px;
      letter-spacing: 0;
    }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
      margin: 24px 0;
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.88rem;
      color: var(--text-secondary);
      line-height: 1.45;
    }

    .pricing-features li i {
      font-size: 1rem;
      color: var(--brand-green-dark);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--brand-accent);
      color: #5a3d00;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 18px;
      border-radius: var(--radius-pill);
      white-space: nowrap;
      box-shadow: 0 4px 12px rgba(226, 185, 81, 0.45);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .popular-badge i {
      font-size: 0.8rem;
    }

    .pricing-amount-primary {
      color: var(--text-primary);
    }

    .pricing-amount-green {
      color: var(--brand-green-dark);
    }

    .btn-full {
      width: 100%;
      justify-content: center;
    }

    .pricing-card-featured-wrap {
      position: relative;
    }

    .pricing-card-featured {
      border-color: rgba(59, 140, 110, 0.3);
      box-shadow: 0 20px 60px rgba(59, 140, 110, 0.15);
    }

    .pricing-extra-link {
      color: var(--brand-green-dark);
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-top: 10px;
    }

    .pricing-extra-link-icon {
      font-size: 0.8rem;
    }

    .pricing-extra {
      text-align: center;
      margin-top: 40px;
      font-size: 0.88rem;
      color: var(--text-secondary);
    }

    .pricing-extra strong {
      color: var(--text-primary);
    }

    .pricing-payment-row {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 32px;
      padding: 14px 24px;
      background: white;
      border-radius: var(--radius-pill);
      border: 1.5px solid #e8edf0;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
      font-size: 0.82rem;
      color: var(--text-secondary);
      font-weight: 500;
    }

    .pricing-payment-row i {
      color: var(--brand-green-dark);
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .pricing-payment-dot {
      color: var(--text-muted);
      font-weight: 400;
    }

    /* ===================== CTA FINAL ===================== */
    #cta-final {
      background: linear-gradient(135deg, #2a745d 0%, var(--brand-green-dark) 50%, #3e9e7b 100%);
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    #cta-final::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .cta-final-inner {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .cta-final-inner h2 {
      color: white;
      margin-bottom: 18px;
    }

    .cta-final-inner p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.07rem;
      max-width: 620px;
      margin: 0 auto 44px;
      line-height: 1.75;
    }

    .cta-final-micro {
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.84rem;
      margin-top: 20px;
    }

    .cta-btn-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    /* ===================== FOOTER ===================== */
    footer {
      background: #0d1a10;
      color: rgba(255, 255, 255, 0.5);
      padding: 72px 0 36px;
      border-top: 1px solid rgba(93, 184, 133, 0.2);
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 2.2fr 1fr 1fr;
      gap: 56px;
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .footer-brand img {
      width: auto;
      height: auto;
      max-width: 180px;
      max-height: 48px;
      display: block;
      object-fit: contain;
      filter: brightness(0) invert(1);
      opacity: 0.88;
      margin-bottom: 20px;
    }

    .footer-brand p {
      font-size: 0.9rem;
      line-height: 1.75;
      color: rgba(255, 255, 255, 0.45);
      max-width: 260px;
      margin-bottom: 22px;
    }

    .footer-demo-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--brand-green-light);
      text-decoration: none;
      transition: gap 0.2s, color 0.2s;
    }

    .footer-demo-link:hover {
      color: #fff;
      gap: 11px;
    }

    .footer-col {
      padding-top: 4px;
    }

    .footer-col h5 {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .footer-col ul li a {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.45);
      font-size: 0.9rem;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover {
      color: rgba(255, 255, 255, 0.9);
    }

    .footer-bottom {
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.28);
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, 0.28);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-bottom a:hover {
      color: rgba(255, 255, 255, 0.6);
    }

    /* ===================== IMAGE ZOOM MODAL ===================== */
    .zoom-modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(16, 28, 20, 0.85);
      backdrop-filter: blur(12px);
      display: none;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      cursor: zoom-out;
      padding: 20px;
    }

    .zoom-modal.active {
      opacity: 1;
    }

    .zoom-modal-content {
      position: relative;
      max-width: 95%;
      max-height: 90%;
      transform: scale(0.9);
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .zoom-modal.active .zoom-modal-content {
      transform: scale(1);
    }

    .zoom-modal img {
      width: 100%;
      height: 100%;
      max-height: 90vh;
      object-fit: contain;
      border-radius: var(--radius-md);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    }

    .zoom-close {
      position: absolute;
      top: -20px;
      right: -20px;
      width: 44px;
      height: 44px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--brand-green-dark);
      font-size: 1.5rem;
      transition: all 0.2s;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      z-index: 10;
    }

    .zoom-close:hover {
      transform: rotate(90deg) scale(1.1);
      background: var(--brand-green-soft);
    }

    .zoomable {
      cursor: zoom-in;
    }

    @media (max-width: 768px) {
      .zoom-close {
        top: -10px;
        right: -10px;
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
      }

      .zoom-modal {
        padding: 10px;
      }
    }

    /* ===================== DEMO FORM (inline CTA) ===================== */
    .cta-form-wrap {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-radius: 2rem;
      padding: 44px 48px;
      max-width: 620px;
      width: 100%;
      margin: 0 auto;
      box-shadow: 0 24px 48px rgba(15, 23, 42, 0.22);
      border-top: 4px solid var(--brand-green);
    }

    .demo-form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .demo-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .demo-field {
      display: flex;
      flex-direction: column;
      gap: 7px;
      position: relative;
    }

    .demo-field label {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-primary);
      letter-spacing: 0.01em;
    }

    .demo-field label span {
      color: #e53e3e;
      margin-left: 2px;
    }

    .demo-optional {
      font-weight: 400;
      color: var(--text-muted);
    }

    .glass-input,
    .glass-select,
    .glass-textarea,
    .form-select {
      width: 100%;
      min-height: 46px;
      height: 46px;
      padding: 0.75rem 1rem;
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: 16px;
      font-family: inherit;
      font-size: 0.9rem;
      font-weight: 500;
      color: #4b5563;
      background: rgba(255, 255, 255, 0.5);
      box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.2s;
      outline: none;
    }

    .glass-input::placeholder,
    .glass-textarea::placeholder,
    .demo-field textarea::placeholder {
      color: var(--text-muted);
    }

    .glass-input:hover,
    .glass-select:hover,
    .glass-textarea:hover,
    .form-select:hover {
      border-color: #d1d5db;
      background: rgba(255, 255, 255, 0.9);
    }

    .glass-input:focus,
    .glass-select:focus,
    .glass-textarea:focus,
    .form-select:focus {
      border-color: rgba(255, 255, 255, 1);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(93, 184, 133, 0.1);
    }

    .glass-textarea,
    .demo-field textarea.glass-input {
      min-height: 100px;
      height: auto;
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
      resize: vertical;
    }

    .demo-field textarea.glass-input {
      min-height: 88px;
      height: auto;
    }

    .glass-input.is-invalid,
    .glass-select.is-invalid,
    .glass-textarea.is-invalid,
    .form-select.is-invalid {
      border-color: #e53e3e;
      box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12);
    }

    .field-error {
      display: none;
      font-size: 0.78rem;
      font-weight: 500;
      color: #e53e3e;
      margin-top: -2px;
    }

    .field-error.show {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .field-error.show::before {
      content: '!';
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: #e53e3e;
      color: #fff;
      font-size: 0.6rem;
      font-weight: 900;
      flex-shrink: 0;
      line-height: 1;
    }

    .glass-select,
    .form-select {
      appearance: none;
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      background-size: 1.25rem 1.25rem;
      padding-right: 2.5rem;
    }

    .demo-field textarea {
      resize: vertical;
      min-height: 88px;
    }

    .form-field-connected-bottom {
      border-bottom-left-radius: 0 !important;
      border-bottom-right-radius: 0 !important;
      border-bottom-color: transparent !important;
    }

    .form-field-connected-top {
      border-top-left-radius: 0 !important;
      border-top-right-radius: 0 !important;
      border-top-color: transparent !important;
    }

    .form-dropdown-connected-bottom {
      border-top-left-radius: 0 !important;
      border-top-right-radius: 0 !important;
      border-bottom-left-radius: 1rem !important;
      border-bottom-right-radius: 1rem !important;
      border-top-color: transparent !important;
    }

    .form-dropdown-connected-top {
      border-bottom-left-radius: 0 !important;
      border-bottom-right-radius: 0 !important;
      border-top-left-radius: 1rem !important;
      border-top-right-radius: 1rem !important;
      border-bottom-color: transparent !important;
    }

    .form-calendar-trigger {
      position: absolute;
      right: 0.75rem;
      top: 50%;
      transform: translateY(-50%);
      color: #9ca3af;
      transition: color 0.2s ease;
    }

    .form-calendar-trigger:hover {
      color: var(--brand-green-dark);
    }

    .form-password-toggle {
      position: absolute;
      inset-block: 0;
      right: 0.75rem;
      display: flex;
      align-items: center;
      color: #9ca3af;
      transition: color 0.2s ease;
    }

    .form-password-toggle:hover {
      color: var(--brand-green-dark);
    }

    .form-daypicker-popover {
      z-index: 100001;
      width: 20.5rem;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.8);
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
      padding: 0.75rem;
      overflow: hidden;
    }

    .form-daypicker-popover-bottom {
      margin-top: 0.25rem;
    }

    .form-daypicker-popover-top {
      margin-bottom: 0.25rem;
    }

    .form-daypicker .rdp-root {
      --rdp-accent-color: rgb(18 125 87);
      --rdp-accent-background-color: rgb(220 252 231);
      --rdp-day_button-border-radius: 0.6rem;
      --rdp-day-width: 2rem;
      --rdp-day-height: 2rem;
    }

    .form-daypicker .rdp-caption_label,
    .form-daypicker .rdp-weekday {
      color: #374151;
    }

    .form-daypicker .rdp-day_button {
      border-radius: 0.5rem;
      font-size: 0.86rem;
      color: #374151;
    }

    .form-daypicker .rdp-day_button:focus-visible,
    .form-daypicker .rdp-day_button:focus,
    .form-daypicker .rdp-button_next:focus-visible,
    .form-daypicker .rdp-button_previous:focus-visible {
      outline: none;
      border-color: transparent !important;
      box-shadow: 0 0 0 2px rgba(18, 125, 87, 0.25) !important;
    }

    .form-daypicker .rdp-day_today,
    .form-daypicker .rdp-today {
      color: var(--brand-green-dark);
      font-weight: 700;
    }

    .form-daypicker .rdp-day_today .rdp-day_button,
    .form-daypicker .rdp-today .rdp-day_button {
      background: rgba(93, 184, 133, 0.22);
      color: var(--brand-green-dark);
      font-weight: 800;
      box-shadow: inset 0 0 0 1px rgba(18, 125, 87, 0.18);
    }

    .form-daypicker .rdp-day_today:not(.rdp-selected) .rdp-day_button:hover,
    .form-daypicker .rdp-today:not(.rdp-selected) .rdp-day_button:hover {
      background: var(--brand-green-soft);
      color: var(--brand-green-dark);
    }

    .form-daypicker .rdp-day_selected,
    .form-daypicker .rdp-day_selected:hover,
    .form-daypicker .rdp-day_selected:focus,
    .form-daypicker .rdp-day_selected:focus-visible,
    .form-daypicker .rdp-selected .rdp-day_button,
    .form-daypicker .rdp-selected .rdp-day_button:hover,
    .form-daypicker .rdp-selected .rdp-day_button:focus,
    .form-daypicker .rdp-selected .rdp-day_button:focus-visible,
    .form-daypicker .rdp-day_button[aria-selected="true"],
    .form-daypicker .rdp-day_button[aria-selected="true"]:hover {
      background: var(--brand-green-dark);
      color: white;
      border-color: transparent !important;
      outline: none !important;
      box-shadow: 0 0 0 2px rgba(18, 125, 87, 0.24) !important;
    }

    .form-daypicker .rdp-day:hover {
      background: var(--brand-green-soft);
      color: var(--brand-green-dark);
    }

    .form-daypicker-range .rdp-range_middle .rdp-day_button,
    .form-daypicker-range .rdp-range_middle .rdp-day_button:hover,
    .form-daypicker-range .rdp-range_middle .rdp-day_button:focus,
    .form-daypicker-range .rdp-range_middle .rdp-day_button:focus-visible {
      background-color: rgba(18, 125, 87, 0.14) !important;
      color: rgb(18, 125, 87) !important;
      box-shadow: none !important;
      border-radius: 0.55rem !important;
    }

    .form-daypicker-range .rdp-range_start .rdp-day_button,
    .form-daypicker-range .rdp-range_end .rdp-day_button,
    .form-daypicker-range .rdp-range_start .rdp-day_button:hover,
    .form-daypicker-range .rdp-range_end .rdp-day_button:hover,
    .form-daypicker-range .rdp-range_start .rdp-day_button:focus,
    .form-daypicker-range .rdp-range_end .rdp-day_button:focus,
    .form-daypicker-range .rdp-range_start .rdp-day_button:focus-visible,
    .form-daypicker-range .rdp-range_end .rdp-day_button:focus-visible {
      background: var(--brand-green-dark);
      color: white;
      box-shadow: 0 0 0 2px rgba(18, 125, 87, 0.24) !important;
    }

    .form-daypicker-range .rdp-day_selected,
    .form-daypicker-range .rdp-day_selected:hover,
    .form-daypicker-range .rdp-day_selected:focus,
    .form-daypicker-range .rdp-day_selected:focus-visible,
    .form-daypicker-range .rdp-selected .rdp-day_button,
    .form-daypicker-range .rdp-selected .rdp-day_button:hover,
    .form-daypicker-range .rdp-selected .rdp-day_button:focus,
    .form-daypicker-range .rdp-selected .rdp-day_button:focus-visible,
    .form-daypicker-range .rdp-day_button[aria-selected="true"],
    .form-daypicker-range .rdp-day_button[aria-selected="true"]:hover {
      box-shadow: none !important;
    }

    .form-daypicker .rdp-button_next,
    .form-daypicker .rdp-button_previous,
    .form-daypicker .rdp-chevron {
      color: var(--brand-green-dark);
    }

    .form-daypicker .rdp-button_next,
    .form-daypicker .rdp-button_previous {
      border: none !important;
      width: 2rem !important;
      height: 2rem !important;
      border-radius: 9999px !important;
      background-color: transparent !important;
      color: rgb(18, 125, 87) !important;
      outline: none !important;
      box-shadow: none !important;
    }

    .form-daypicker .rdp-button_next .rdp-chevron,
    .form-daypicker .rdp-button_previous .rdp-chevron {
      stroke: rgb(18, 125, 87) !important;
      fill: none !important;
      stroke-width: 2.8px !important;
      stroke-linecap: round !important;
      stroke-linejoin: round !important;
    }

    .form-daypicker .rdp-button_next:hover,
    .form-daypicker .rdp-button_previous:hover {
      background-color: transparent !important;
    }

    .form-daypicker .rdp-button_next:hover .rdp-chevron,
    .form-daypicker .rdp-button_previous:hover .rdp-chevron {
      stroke: rgb(5, 150, 105) !important;
    }

    .form-daypicker .rdp-button_next:focus,
    .form-daypicker .rdp-button_previous:focus,
    .form-daypicker .rdp-button_next:focus-visible,
    .form-daypicker .rdp-button_previous:focus-visible {
      border: none !important;
      outline: none !important;
      box-shadow: 0 0 0 2px rgba(18, 125, 87, 0.2) !important;
    }

    .form-daypicker-time-wrap {
      margin-top: 0.5rem;
      padding-top: 0.75rem;
      border-top: 1px solid #f3f4f6;
    }

    .form-daypicker-time-grid {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      border-radius: 16px;
      background: rgba(249, 250, 251, 0.9);
      padding: 0.5rem;
    }

    .form-daypicker-time-icon {
      display: flex;
      height: 2.5rem;
      width: 2.5rem;
      flex-shrink: 0;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: white;
      color: var(--brand-green-dark);
      box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    }

    .form-daypicker-time-select {
      flex: 1;
      min-width: 0;
    }

    .form-daypicker-time-select .glass-input {
      height: 2.5rem;
      min-height: 2.5rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.8);
      background: rgba(255, 255, 255, 0.95);
      padding-inline: 0.75rem;
      font-size: 0.875rem;
      font-weight: 700;
      color: #374151;
      box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    }

    .form-daypicker-time-separator {
      font-size: 1.125rem;
      font-weight: 900;
      color: #9ca3af;
    }

    .custom-select {
      position: relative;
    }

    .custom-select-trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      cursor: pointer;
      user-select: none;
      text-align: left;
      color: #6b7280;
    }

    .custom-select-trigger.is-open {
      border-bottom-left-radius: 0 !important;
      border-bottom-right-radius: 0 !important;
      border-bottom-color: transparent !important;
      background: rgba(255, 255, 255, 0.95);
    }

    .custom-select-value {
      display: block;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      padding-right: 0.25rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: #374151;
    }

    .custom-select-value.is-placeholder {
      color: #9ca3af;
      font-weight: 500;
    }

    .custom-select-icon {
      flex-shrink: 0;
      font-size: 1.25rem;
      color: #9ca3af;
      transition: transform 0.2s ease, color 0.2s ease;
    }

    .custom-select-trigger.is-open .custom-select-icon {
      transform: rotate(180deg);
      color: var(--brand-green-dark);
    }

    .custom-select-menu {
      position: absolute;
      top: calc(100% - 1px);
      left: 0;
      width: 100%;
      z-index: 120;
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-top-color: transparent;
      border-bottom-left-radius: 16px;
      border-bottom-right-radius: 16px;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 18px 32px -20px rgba(15, 23, 42, 0.28), 0 12px 24px -22px rgba(15, 23, 42, 0.18);
      overflow: hidden;
      animation: fadeIn 0.16s ease;
    }

    .custom-select-option {
      width: 100%;
      border: 0;
      background: transparent;
      padding: 0.85rem 1rem;
      text-align: left;
      font-size: 0.875rem;
      font-weight: 500;
      color: #4b5563;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .custom-select-option:hover,
    .custom-select-option.is-active {
      background: var(--brand-green-soft);
      color: var(--brand-green-dark);
    }

    .custom-select-option.is-selected {
      background: rgba(93, 184, 133, 0.14);
      color: var(--brand-green-dark);
      font-weight: 700;
    }

    .custom-select-option.is-selected:hover {
      background: rgba(93, 184, 133, 0.18);
    }

    .demo-honeypot {
      display: none;
    }

    .demo-submit-btn {
      width: 100%;
      min-height: 46px;
      height: 46px;
      padding: 0.75rem 1.5rem;
      background: var(--brand-green-dark);
      color: #fff;
      border: 1px solid transparent;
      border-radius: 12px;
      font-family: inherit;
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.01em;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 6px;
      box-shadow: 0 4px 16px rgba(51, 143, 115, 0.24);
      transition: all 0.2s ease;
    }

    .demo-submit-btn:hover {
      background: rgba(93, 184, 133, 0.1);
      color: var(--brand-green-dark);
      border-color: rgba(51, 143, 115, 0.2);
      box-shadow: 0 10px 24px rgba(51, 143, 115, 0.16);
      transform: translateY(-2px);
    }

    .demo-submit-btn:active {
      transform: translateY(0);
      box-shadow: none;
    }

    .demo-submit-btn:disabled {
      opacity: 0.7;
      cursor: not-allowed;
      transform: none;
    }

    .demo-submit-btn .is-spinning {
      animation: spin 1s linear infinite;
    }

    .form-send-error {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 12px 16px;
      background: #fff5f5;
      border: 1.5px solid #feb2b2;
      border-radius: var(--radius-sm);
      font-size: 0.875rem;
      color: #c53030;
      line-height: 1.5;
    }

    .form-send-error[hidden] {
      display: none;
    }

    .form-send-error i {
      font-size: 1.1rem;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .demo-success {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
      padding: 24px 0;
    }

    .demo-success-icon {
      width: 68px;
      height: 68px;
      background: var(--brand-green-soft);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.2rem;
      color: var(--brand-green-dark);
    }

    .demo-success h3 {
      font-size: 1.5rem;
      color: var(--text-primary);
    }

    .demo-success p {
      color: var(--text-secondary);
      font-size: 1rem;
      max-width: 380px;
    }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 1024px) {
      .nav-links {
        display: none;
      }

      .footer-inner {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 36px;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
      }

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

    @media (max-width: 768px) {

      html,
      body {
        overflow-x: hidden;
      }

      .section {
        padding: 56px 0;
      }

      .section-sm {
        padding: 48px 0;
      }

      .container {
        padding: 0 18px;
      }

      .nav-links {
        display: none;
      }

      .nav-cta .btn-ghost {
        display: none;
      }

      .nav-inner {
        height: 52px;
        padding: 0 6px 0 12px;
      }

      header {
        padding: 8px 12px;
      }

      header.scrolled .nav-inner {
        height: 52px;
        padding: 0 6px 0 14px;
      }

      .nav-logo-img {
        height: 38px;
      }

      .nav-cta .btn-sm {
        font-size: 0.8rem;
        padding: 8px 14px;
      }

      #hero {
        padding-top: 74px;
      }

      .hero-text-wrap {
        padding: 40px 18px 36px;
      }

      h1.hero-headline {
        font-size: clamp(1.75rem, 7vw, 2.6rem);
      }

      .hero-cta-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }

      .hero-cta-row .btn {
        width: 100%;
        max-width: 380px;
      }

      .hero-visual-wrap {
        padding: 0 14px 0;
        transform: perspective(900px) rotateX(12deg) scale(0.97);
      }

      .segment-inner {
        flex-direction: column;
        gap: 0;
      }

      .segment-item {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        text-align: left;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
        padding: 16px 0;
      }

      .segment-item:last-child {
        border-bottom: none;
      }

      .segment-icon {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
      }

      .section-title-block {
        margin-bottom: 40px;
      }

      h2 {
        font-size: clamp(1.4rem, 5.5vw, 2rem);
      }

      .dor-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .feature-block {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 52px;
      }

      .feature-block.reverse {
        direction: ltr;
      }

      .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .steps-grid::before {
        display: none;
      }

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

      .prova-closing {
        padding: 28px 24px;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
      }

      .pricing-card {
        padding: 28px 22px;
      }

      .popular-badge {
        font-size: 0.62rem;
        padding: 4px 14px;
      }

      .faq-question {
        font-size: 0.9rem;
        padding: 16px 18px;
      }

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

      #cta-final {
        padding: 80px 0;
      }

      .cta-btn-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }

      .cta-btn-row .btn {
        width: 100%;
        max-width: 380px;
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding-bottom: 40px;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }

      .footer-brand p {
        max-width: 100%;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
      }

      footer {
        padding: 52px 0 28px;
      }

      /* ── CTA / Formulário ── */
      #cta-final {
        padding: 64px 0 72px;
      }

      .cta-final-inner h2 {
        font-size: clamp(1.35rem, 5.5vw, 1.9rem);
      }

      .cta-final-inner p {
        font-size: 0.95rem;
        margin-bottom: 28px;
      }

      .cta-form-wrap {
        padding: 28px 20px;
        border-radius: 1.25rem;
        border-top-width: 3px;
      }

      .demo-form {
        gap: 14px;
      }

      .demo-form-row {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .demo-field label {
        font-size: 0.82rem;
      }

      .glass-input,
      .glass-select,
      .glass-textarea,
      .form-select {
        font-size: 16px; /* evita zoom automático no iOS */
        min-height: 48px;
        height: 48px;
        border-radius: 12px;
      }

      .glass-textarea,
      .demo-field textarea.glass-input {
        height: auto;
        min-height: 80px;
      }

      .demo-submit-btn {
        font-size: 0.95rem;
        padding: 14px;
        border-radius: 12px;
      }

      /* ── Pricing ── */
      .pricing-anchor {
        padding: 14px 18px;
      }

      .pricing-payment-row {
        gap: 6px;
        font-size: 0.78rem;
        padding: 12px 18px;
        border-radius: 12px;
      }

      /* ── Label badge center ── */
      .label-badge-center {
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 400px) {
      .container {
        padding: 0 14px;
      }

      h1 {
        font-size: 1.65rem;
      }

      .btn-lg {
        padding: 13px 22px;
        font-size: 0.93rem;
        min-height: 50px;
      }
    }
  
