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

  :root {
    --navy: #0D0D1A;
    --navy2: #13132B;
    --card: #1A1A35;
    --border: #2A2A50;
    --cyan: #00C9FF;
    --cyan2: #0099CC;
    --green: #00C875;
    --green2: #009A5A;
    --text: #E8E8F0;
    --muted: #8888AA;
    --white: #FFFFFF;
    --red: #FF4D4D;
    --font: 'Inter', -apple-system, sans-serif;
    --radius: 16px;
    --radius-sm: 8px;
  }

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

  body {
    background: var(--navy);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAVBAR ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    background: rgba(13,13,26,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }
  nav.scrolled { border-bottom-color: var(--border); }

  .nav-logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    text-decoration: none;
  }
  .nav-logo span { color: var(--cyan); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
  }
  .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
  .btn:active { transform: translateY(0); }

  .btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green2));
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,200,117,0.35);
  }
  .btn-primary:hover { box-shadow: 0 8px 30px rgba(0,200,117,0.5); }

  .btn-secondary {
    background: transparent;
    color: var(--cyan);
    border: 1.5px solid var(--cyan);
  }
  .btn-secondary:hover { background: rgba(0,201,255,0.1); }

  .btn-large { padding: 1rem 2.2rem; font-size: 1.05rem; }
  .btn-xl { padding: 1.1rem 2.8rem; font-size: 1.1rem; }

  .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
  .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

  /* ── HERO ── */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 68px;
    overflow: hidden;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.6;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,201,255,0.12) 0%, transparent 70%),
                radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0,200,117,0.1) 0%, transparent 60%),
                rgba(13, 13, 26, 0.8); /* Fundo marinho semitransparente para legibilidade */
    z-index: 1;
  }

  .hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5% 5%;
    min-height: calc(100vh - 68px);
  }

  .hero-copy { max-width: 560px; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,201,255,0.12);
    border: 1px solid rgba(0,201,255,0.3);
    color: var(--cyan);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .hero-badge::before { content: ''; display: block; width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; }

  .hero-h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
  }
  .hero-h1 .highlight { color: var(--cyan); }

  .hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
  }

  .hero-cta-group { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; margin-bottom: 2.5rem; }

  .hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .proof-item { display: flex; flex-direction: column; }
  .proof-number { font-size: 1.3rem; font-weight: 800; color: var(--white); }
  .proof-label { font-size: 0.75rem; color: var(--muted); }
  .proof-divider { width: 1px; height: 36px; background: var(--border); }

  /* ── HERO PHONE MOCKUP ── */
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .phone-wrapper {
    position: relative;
    width: 280px;
    filter: drop-shadow(0 40px 80px rgba(0,201,255,0.2));
  }

  .phone-frame {
    width: 100%;
    background: transparent;
    border-radius: 36px;
    border: none;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 201, 255, 0.4); /* glow azul ciano suave */
  }

  .phone-notch {
    display: none; /* Desativado a pedido do usuario para 100% fill */
  }

  .phone-screen {
    border-radius: 36px;
    overflow: hidden;
    aspect-ratio: 9/19;
    position: relative;
    background: transparent;
    /* Force clip on iOS safari during animations */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
  }

  #hero-sequence {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
  }

  .phase-bar {
    position: absolute;
    bottom: 40px;
    z-index: 10;
    width: 80%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
  }
  .phase-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--green));
    border-radius: 2px;
    width: 0%;
    transition: width 1.5s ease;
  }

  .phase-result-card {
    width: 100%;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 6px;
  }
  .result-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
  }
  .result-key { color: var(--muted); }
  .result-val { color: var(--white); font-weight: 700; }
  .result-val.green { color: var(--green); }

  /* Fase progresso */
  .phase-dots {
    position: absolute;
    bottom: 20px;
    z-index: 10;
    display: flex;
    gap: 8px;
    justify-content: center;
  }
  .phase-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.3s, transform 0.3s;
  }
  .phase-dot.active { background: var(--cyan); transform: scale(1.3); }

  /* Glow rings ao redor do phone */
  .phone-glow-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0,201,255,0.1);
    animation: pulse-ring 3s ease-in-out infinite;
  }
  @keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.2; }
  }

  /* ── SCROLL INDICATOR ── */
  .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.75rem;
    animation: bounce 2s infinite;
    z-index: 2;
  }
  .scroll-arrow { width: 20px; height: 20px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); }
  @keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

  /* ── SECTIONS COMUNS ── */
  section { padding: 80px 5%; }
  .section-inner { max-width: 1100px; margin: 0 auto; }

  .section-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }

  .section-h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
  }

  .section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 640px;
  }

  /* ── SECTION PROBLEMA ── */
  #problema { background: var(--navy2); }

  .problema-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .pain-cards { display: flex; flex-direction: column; gap: 1rem; }

  .pain-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: var(--card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: border-color 0.3s, transform 0.3s;
  }
  .pain-card:hover { border-color: rgba(0,201,255,0.3); transform: translateX(4px); }

  .pain-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(255,77,77,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
  }

  .pain-text-title { font-weight: 700; color: var(--white); font-size: 0.9rem; margin-bottom: 3px; }
  .pain-text-body { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

  .solution-box {
    background: linear-gradient(135deg, rgba(0,201,255,0.08), rgba(0,200,117,0.08));
    border: 1px solid rgba(0,201,255,0.25);
    border-radius: var(--radius);
    padding: 2rem;
  }
  .solution-box h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 0.75rem; line-height: 1.3; }
  .solution-box p { color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }

  /* ── COMO FUNCIONA ── */
  #como-funciona { background: var(--navy); }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(16.6% + 24px);
    right: calc(16.6% + 24px);
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), var(--green));
    opacity: 0.4;
  }

  .step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color 0.3s, transform 0.3s;
  }
  .step-card.visible { animation: slideUp 0.6s forwards; }
  @keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

  .step-number {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .step-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
  .step-body { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

  /* ── O QUE VOCE RECEBE ── */
  #recebe { background: var(--navy2); }

  .deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .deliverable-card {
    padding: 1.5rem;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color 0.3s, transform 0.3s;
  }
  .deliverable-card.visible { animation: slideUp 0.5s forwards; }
  .deliverable-card:hover { border-color: rgba(0,200,117,0.4); transform: translateY(-4px); }

  .deliverable-icon {
    width: 48px; height: 48px;
    background: rgba(0,200,117,0.12);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .deliverable-title { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
  .deliverable-body { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

  /* Comparativo */
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .compare-table th { background: var(--card); color: var(--white); padding: 1rem 1.2rem; text-align: left; font-size: 0.85rem; border-bottom: 1px solid var(--border); }
  .compare-table td { padding: 0.9rem 1.2rem; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .compare-table td:first-child { color: var(--muted); }
  .compare-table td.green { color: var(--green); font-weight: 700; }
  .compare-table td.red { color: var(--red); }
  .compare-table tr:hover td { background: rgba(255,255,255,0.02); }

  /* ── PROVA SOCIAL ── */
  #depoimentos { background: var(--navy); }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .testimonial-card {
    padding: 1.5rem;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color 0.3s;
  }
  .testimonial-card.visible { animation: slideUp 0.5s forwards; }
  .testimonial-card:hover { border-color: rgba(0,201,255,0.3); }

  .testimonial-stars { color: #FFB800; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
  .testimonial-quote { font-size: 0.9rem; color: var(--text); line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
  .testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
  .testimonial-name { font-size: 0.85rem; font-weight: 700; color: var(--white); }
  .testimonial-meta { font-size: 0.75rem; color: var(--muted); }

  /* ── PRECOS ── */
  #precos { background: var(--navy2); }

  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 760px;
    margin: 3rem auto 0;
  }

  .pricing-card {
    padding: 2rem;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
  }
  .pricing-card:hover { transform: translateY(-4px); }
  .pricing-card.featured {
    border-color: var(--cyan);
    background: linear-gradient(135deg, rgba(0,201,255,0.05), rgba(0,200,117,0.05));
  }

  .pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--cyan), var(--green));
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .pricing-plan { font-size: 0.8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem; }
  .pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 0.4rem; }
  .pricing-currency { font-size: 1.2rem; font-weight: 700; color: var(--white); }
  .pricing-amount { font-size: 3.2rem; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -2px; }
  .pricing-period { font-size: 0.85rem; color: var(--muted); }
  .pricing-annual-note { font-size: 0.78rem; color: var(--green); font-weight: 600; margin-bottom: 1.5rem; }
  .pricing-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin-bottom: 1.5rem; }
  .pricing-cta { width: 100%; }

  .pricing-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
  .pricing-feature {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.82rem; color: var(--text);
  }
  .pricing-feature::before { content: ''; width: 16px; height: 16px; border-radius: 50%; background: rgba(0,200,117,0.2); border: 1.5px solid var(--green); flex-shrink: 0; }

  .guarantee-box {
    max-width: 480px;
    margin: 2.5rem auto 0;
    padding: 1.5rem;
    background: rgba(0,200,117,0.08);
    border: 1px solid rgba(0,200,117,0.3);
    border-radius: var(--radius);
    text-align: center;
  }
  .guarantee-box h4 { color: var(--green); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
  .guarantee-box p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

  /* ── BADGES SEGURANÇA ── */
  .security-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }
  .sec-badge {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.75rem; color: var(--muted);
  }

  /* ── FAQ ── */
  #faq { background: var(--navy); }

  .faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    user-select: none;
    gap: 1rem;
  }
  .faq-question:hover { color: var(--cyan); }

  .faq-chevron {
    width: 20px; height: 20px; flex-shrink: 0;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    transition: transform 0.3s;
    margin-bottom: 4px;
  }
  .faq-item.open .faq-chevron { transform: rotate(-135deg); margin-bottom: -4px; }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
  }
  .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.2rem; }

  /* ── CTA FINAL ── */
  #cta-final {
    background: linear-gradient(180deg, var(--navy2) 0%, var(--navy) 100%);
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,201,255,0.07) 0%, transparent 70%);
  }
  #cta-final .section-inner { position: relative; z-index: 1; max-width: 700px; }
  .cta-final-h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
  }
  .cta-final-sub { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 0.75rem; }
  .cta-anchor { font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; }
  .cta-anchor strong { color: var(--green); }
  .cta-final-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
  .cta-micro { font-size: 0.78rem; color: var(--muted); }

  /* ── FOOTER ── */
  footer {
    background: #08080F;
    padding: 40px 5%;
    border-top: 1px solid var(--border);
  }
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-brand { display: flex; flex-direction: column; gap: 0.3rem; }
  .footer-logo { font-size: 1.1rem; font-weight: 800; color: var(--white); }
  .footer-logo span { color: var(--cyan); }
  .footer-tagline { font-size: 0.78rem; color: var(--muted); }
  .footer-links { display: flex; gap: 1.5rem; }
  .footer-links a { font-size: 0.8rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--white); }
  .footer-disclaimer { width: 100%; text-align: center; font-size: 0.72rem; color: var(--muted); line-height: 1.5; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.04); }

  /* ── ANIMACOES GSAP SETUP ── */
  /* As opacidades serao manipuladas diretamente pelo JS */
  /* ── ZIG ZAG FEATURES ── */
  .feature-zigzag { margin-top: 4rem; display: flex; flex-direction: column; gap: 7rem; }
  .feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .feature-row.reverse { direction: rtl; }
  .feature-row.reverse > * { direction: ltr; } /* restore text direction */

  .feature-copy h3 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; line-height: 1.2; letter-spacing: -0.5px; }
  .feature-copy p { font-size: 1.05rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }

  .feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
  .feature-list li { display: flex; align-items: center; gap: 0.5rem; color: var(--text); font-size: 0.95rem; }
  .feature-list .chk { color: var(--green); font-weight: bold; }

  .feature-visual { position: relative; display: flex; justify-content: center; align-items: center; }
  .feature-glow {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,201,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
  }
  .feature-row:nth-child(even) .feature-glow { background: radial-gradient(circle, rgba(0,200,117,0.1) 0%, transparent 70%); }
  .feature-visual img { position: relative; z-index: 1; width: 100%; max-width: 320px; height: auto; display: block; border-radius: 32px; filter: drop-shadow(0 25px 50px rgba(0,0,0,0.5)); }

  /* Floating Chips */
  .chip-float {
    position: absolute;
    z-index: 2;
    background: rgba(20,20,40,0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: float-chip-anim 4s ease-in-out infinite;
  }
  .chip-float span.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
  .chip-float.green span.dot { background: var(--green); box-shadow: 0 0 10px var(--green); }

  @keyframes float-chip-anim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  /* ── APP NA PRATICA ── */
  .app-pratica-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .app-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .app-card img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border);
    object-fit: cover;
    background: var(--card);
  }
  .app-card h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
  }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    .nav-links, nav .btn { display: none; }
    .nav-hamburger { display: flex; }
    .nav-mobile-menu {
      position: fixed;
      top: 68px; left: 0; right: 0;
      background: var(--navy2);
      border-bottom: 1px solid var(--border);
      padding: 1.5rem 5%;
      display: none;
      flex-direction: column;
      gap: 1.2rem;
      z-index: 999;
    }
    .nav-mobile-menu.open { display: flex; }
    .nav-mobile-menu a { color: var(--text); text-decoration: none; font-size: 1rem; font-weight: 500; }
    .nav-mobile-menu .btn { width: 100%; justify-content: center; }

    .hero-grid { grid-template-columns: 1fr; text-align: center; padding-top: 60px; gap: 1.5rem; min-height: auto; padding-bottom: 60px; }
    .hero-copy { max-width: 100%; }
    .hero-badge, .hero-cta-group, .hero-social-proof { align-items: center; }
    .hero-sub { margin-left: auto; margin-right: auto; margin-bottom: 1.5rem; }
    .hero-cta-group { margin-bottom: 1.5rem; }
    .phone-wrapper { width: 200px; }
    .scroll-indicator { display: none; }

    .problema-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
    .feature-zigzag { gap: 3.5rem; margin-top: 2.5rem; }
    .feature-row { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
    .feature-row.reverse { direction: ltr; }
    .feature-list { align-items: center; }
    .feature-visual img { max-width: 220px; }
    .chip-float { padding: 0.5rem 0.8rem; font-size: 0.7rem; }
    .chip-float[style*="left"] { left: 0 !important; }
    .chip-float[style*="right"] { right: 0 !important; }

    .app-pratica-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 2rem;
      gap: 1rem;
      scrollbar-width: none;
    }
    .app-pratica-grid::-webkit-scrollbar { display: none; }
    .app-card {
      min-width: 240px;
      scroll-snap-align: center;
    }

    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
    .pricing-card { padding: 1.5rem; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .cta-final-buttons { flex-direction: column; align-items: stretch; width: 100%; }
    .cta-final-buttons .btn { width: 100%; }
    #cta-final { padding: 60px 5%; }
    .compare-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; font-size: 0.78rem; }
    .compare-table th, .compare-table td { padding: 0.7rem 0.8rem; white-space: nowrap; }
    .guarantee-box { margin-top: 2rem; }
  }

  @media (max-width: 500px) {
    section { padding: 50px 4%; }
    .hero-h1 { font-size: 1.9rem; letter-spacing: -0.5px; }
    .hero-sub { font-size: 0.95rem; }
    .section-h2 { font-size: 1.5rem; }
    .feature-copy h3 { font-size: 1.5rem; }
    .step-card { padding: 1.5rem 1rem; }
    .phone-wrapper { width: 180px; }
    .hero-social-proof { gap: 1rem; }
    .proof-number { font-size: 1.1rem; }
    .btn-xl { padding: 1rem 1.8rem; font-size: 1rem; }
    .chip-float { display: none; }
  }