:root {
      --navy: #1B2B4A;
      --navy-deep: #121C33;
      --bg: #F7F4EF;
      --bg2: #EFEAE4;
      --card: #FFFFFF;
      --card2: #F7F4EF;
      --border: rgba(27,43,74,0.10);
      --accent: #0F766E;
      --accent-deep: #115E59;
      --accent-mid: #14B8A6;
      --accent-bright: #5EEAD4;
      --accent-dim: rgba(15,118,110,0.08);
      --accent-border: rgba(15,118,110,0.18);
      --gold: #14B8A6;
      --gold-dim: rgba(20,184,166,0.16);
      --lilac: #14B8A6;
      --lilac-bright: #14B8A6;
      --lilac-dim: rgba(20,184,166,0.16);
      --lilac-glow: rgba(94,234,212,0.28);
      --text: #1B2B4A;
      --text2: #4A5568;
      --text3: #718096;
      --success: #0F766E;
      --success-dim: rgba(15,118,110,0.08);
      --danger: #D94452;
      --danger-dim: rgba(217,68,82,0.08);
      --radius: 20px;
      --radius-lg: 28px;
      --radius-sm: 12px;
      --font-head: 'Plus Jakarta Sans', sans-serif;
      --font-body: 'Plus Jakarta Sans', sans-serif;
      --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
      --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
      --shadow-sm: 0 1px 2px rgba(27,43,74,0.04), 0 4px 12px rgba(27,43,74,0.03);
      --shadow-md: 0 2px 4px rgba(27,43,74,0.05), 0 8px 24px rgba(27,43,74,0.06);
      --shadow-lg: 0 4px 8px rgba(27,43,74,0.06), 0 16px 48px rgba(27,43,74,0.08);
      --shadow-xl: 0 8px 16px rgba(27,43,74,0.08), 0 32px 80px rgba(27,43,74,0.12);
      --shadow-glow: 0 0 60px rgba(20,184,166,0.18);
    }
    .inside-section {
      --text: #F4F7FA;
      --text2: #C5CDD8;
      --text3: #8B95A8;
    }
    .inside-section .stack-card {
      --text: #1B2B4A;
      --text2: #4A5568;
      --text3: #718096;
    }
    .app-phone, .multi-cat-phone, .iphone-screen {
      --text: #E5E7EB; --text2: #9CA3AF; --text3: #94A3B8;
    }
    .app-phone .calc-input, .app-phone .calc-pill,
    .iphone-screen .calc-input, .iphone-screen .calc-pill,
    .multi-cat-phone .calc-input, .multi-cat-phone .calc-pill { color: #0A0A0A !important; }
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-weight: 400;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    html, body { overflow-x: clip; }
    section { overflow-x: clip; }
    ::selection { background: var(--accent); color: #FFFFFF; }

    .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
    .container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

    /* ============ Header ============ */
    .header {
      position: relative; z-index: 100;
      background: #FFFFFF;
      border-bottom: 1px solid var(--border);
    }
    .header-inner {
      display: flex; align-items: center; justify-content: flex-start;
      padding: 10px 24px; max-width: 1120px; margin: 0 auto;
    }
    .logo { display: flex; align-items: center; text-decoration: none; }
    .logo-img {
      height: 120px;
      width: auto;
      transition: transform 0.3s ease;
    }
    .logo:hover .logo-img {
      transform: scale(1.05);
    }
    .header-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .header-cta {
      display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
      background: var(--accent); color: #FFFFFF;
      font-weight: 700; font-size: 12px; padding: 8px 16px; border-radius: 100px;
      text-decoration: none; transition: all 220ms var(--ease-out);
      box-shadow: 0 2px 8px rgba(26,45,90,0.2);
    }
    .header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,45,90,0.3); }
    .header-cta:active { transform: scale(0.97); transition-duration: 100ms; }

    /* ============ Hero ============ */
    .hero {
      position: relative; padding: 84px 0 56px; text-align: center;
      background:
        radial-gradient(ellipse 900px 480px at 78% -8%, rgba(15,118,110,0.14), transparent 62%),
        radial-gradient(ellipse 520px 380px at 8% 88%, rgba(27,43,74,0.06), transparent 58%),
        var(--bg);
      overflow: hidden;
    }
    .hero::before, .hero::after { display: none; }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, rgba(217,68,82,0.12), rgba(217,68,82,0.06));
      border: 1px solid rgba(217,68,82,0.25);
      color: var(--danger); font-size: 14px; font-weight: 700;
      padding: 10px 20px; border-radius: 100px; letter-spacing: 0.02em;
      margin-bottom: 24px;
      box-shadow: 0 2px 12px rgba(217,68,82,0.15);
      animation: badge-pulse 3s ease-in-out infinite;
    }
    @keyframes badge-pulse { 0%, 100% { box-shadow: 0 2px 12px rgba(217,68,82,0.15); } 50% { box-shadow: 0 2px 20px rgba(217,68,82,0.25); } }
    .hero h1 {
      font-family: var(--font-head); font-weight: 900;
      font-size: clamp(30px, 5vw, 58px); line-height: 1.06;
      letter-spacing: -0.025em; max-width: 820px; margin: 0 auto 20px;
      text-wrap: balance;
    }
    .hero h1 .hl {
      color: var(--accent);
    }
    .hero-sub {
      font-size: clamp(17px, 2vw, 20px) !important; color: var(--text) !important;
      max-width: 640px; margin: 0 auto 28px; font-weight: 400; line-height: 1.7;
    }
    .btn-primary {
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      background: linear-gradient(135deg, #0F766E 0%, #115E59 100%);
      color: #FFFFFF;
      font-family: var(--font-head); font-weight: 800; font-size: 18px;
      padding: 18px 48px; border-radius: 100px; text-decoration: none;
      transition: all 250ms var(--ease-out);
      box-shadow: 0 4px 16px rgba(15,118,110,0.28), 0 1px 3px rgba(27,43,74,0.12);
      position: relative;
      overflow: hidden;
    }
    .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 60%);
      pointer-events: none;
    }
    .btn-primary::before {
      content: '';
      position: absolute; top: 0; left: -80%;
      width: 50%; height: 100%;
      background: linear-gradient(105deg, transparent, rgba(255,255,255,0.3), transparent);
      pointer-events: none;
      animation: btn-shine 6s ease-in-out infinite;
    }
    @keyframes btn-shine {
      0% { transform: translateX(0) skewX(-22deg); }
      55%, 100% { transform: translateX(450%) skewX(-22deg); }
    }
    .btn-primary:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 8px 32px rgba(15,118,110,0.38), 0 2px 6px rgba(27,43,74,0.14);
    }
    .btn-primary:active { transform: scale(0.97); transition-duration: 100ms; }
    .btn-arrow { font-size: 20px; transition: transform 200ms var(--ease-out); }
    .btn-primary:hover .btn-arrow { transform: translateX(3px); }
    .hero-trust {
      display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 28px;
      margin-top: 32px; font-size: 14px; color: var(--text2);
    }
    .hero-trust .item { display: inline-flex; align-items: center; gap: 7px; }
    .hero-trust .item svg { width: 15px; height: 15px; flex-shrink: 0; }

    /* ============ Hero New Styles ============ */
    .hero-eyebrow {
      display: inline-block;
      font-family: var(--font-head);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: 20px;
      padding: 8px 16px;
      background: rgba(15,118,110,0.08);
      border-radius: 100px;
      border: 1px solid rgba(15,118,110,0.18);
    }
    .hero-mechanism {
      font-size: clamp(15px, 1.8vw, 17px);
      color: var(--text2);
      max-width: 600px;
      margin: 0 auto 24px;
      line-height: 1.6;
    }
    .hero-mechanism strong {
      color: var(--accent);
      font-weight: 700;
    }
    .hero-phone-mockup {
      margin: 32px auto 36px;
      display: flex;
      justify-content: center;
    }
    .phone-frame {
      width: 280px;
      background: #1A1A1A;
      border-radius: 40px;
      padding: 12px;
      box-shadow: 0 25px 80px rgba(0,0,0,0.3), 0 10px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
      position: relative;
      border: 2px solid #333;
    }
    .phone-notch {
      width: 120px;
      height: 28px;
      background: #1A1A1A;
      border-radius: 0 0 20px 20px;
      position: absolute;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
    }
    .phone-screen {
      background: #FFFFFF;
      border-radius: 30px;
      overflow: hidden;
      min-height: 480px;
      aspect-ratio: 9/19.5;
    }
    .app-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 40px 20px 16px;
      background: linear-gradient(135deg, #0F766E 0%, #115E59 100%);
    }
    .app-logo {
      width: 40px;
      height: 40px;
      background: #FFFFFF;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 18px;
      color: #0F766E;
    }
    .app-title {
      color: #FFFFFF;
      font-weight: 700;
      font-size: 18px;
      flex: 1;
      margin-left: 12px;
    }
    .app-menu {
      color: rgba(255,255,255,0.7);
      font-size: 18px;
      letter-spacing: 2px;
    }
    .app-welcome {
      padding: 20px 20px 16px;
      background: linear-gradient(135deg, #0F766E 0%, #115E59 100%);
      color: #FFFFFF;
    }
    .welcome-text {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .welcome-sub {
      font-size: 14px;
      color: rgba(255,255,255,0.8);
    }
    .app-progress {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 24px 20px;
      margin: -10px 16px 16px;
      background: #FFFFFF;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      border: 1px solid rgba(0,0,0,0.05);
    }
    .progress-ring {
      width: 80px;
      height: 80px;
      position: relative;
    }
    .progress-ring svg {
      width: 100%;
      height: 100%;
      transform: rotate(-90deg);
    }
    .progress-bg {
      stroke: #E8E8E8;
    }
    .progress-fill {
      stroke: #0F766E;
      stroke-linecap: round;
      transition: stroke-dasharray 1s ease;
    }
    .progress-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-weight: 800;
      font-size: 18px;
      color: #0F766E;
    }
    .progress-info {
      flex: 1;
    }
    .progress-label {
      font-size: 14px;
      color: #666;
      margin-bottom: 4px;
    }
    .progress-value {
      font-size: 20px;
      font-weight: 700;
      color: #0F766E;
    }
    .app-nav {
      display: flex;
      justify-content: space-around;
      padding: 16px 8px;
      background: #FFFFFF;
      border-top: 1px solid #F0F0F0;
      margin-top: auto;
    }
    .nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      opacity: 0.5;
    }
    .nav-item.active {
      opacity: 1;
    }
    .nav-icon {
      font-size: 20px;
    }
    .nav-label {
      font-size: 10px;
      font-weight: 600;
      color: #333;
    }
    @media (max-width: 640px) {
      .hero-phone-mockup {
        margin: 28px auto 32px;
      }
      .phone-frame {
        width: 240px;
        padding: 10px;
        border-radius: 32px;
      }
      .phone-screen {
        border-radius: 24px;
        min-height: 400px;
        aspect-ratio: 9/19.5;
      }
      .phone-notch {
        width: 100px;
        height: 24px;
        top: 10px;
      }
      .app-header {
        padding: 36px 16px 12px;
      }
      .app-logo {
        width: 36px;
        height: 36px;
        font-size: 16px;
      }
      .app-title {
        font-size: 16px;
      }
      .app-welcome {
        padding: 16px 16px 12px;
      }
      .welcome-text {
        font-size: 18px;
      }
      .welcome-sub {
        font-size: 12px;
      }
      .app-progress {
        padding: 20px 16px;
        margin: -8px 12px 12px;
        gap: 16px;
      }
      .progress-ring {
        width: 64px;
        height: 64px;
      }
      .progress-text {
        font-size: 16px;
      }
      .progress-label {
        font-size: 12px;
      }
      .progress-value {
        font-size: 18px;
      }
      .app-nav {
        padding: 12px 4px;
      }
      .nav-icon {
        font-size: 18px;
      }
      .nav-label {
        font-size: 9px;
      }
    }
    .hero-micro {
      font-size: 13px;
      color: var(--text2);
      margin-top: 12px;
      margin-bottom: 0;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      flex: 1;
    }
    .hero-stat {
      font-size: clamp(15px, 1.8vw, 18px);
      color: var(--text);
      font-weight: 700;
      margin-bottom: 16px;
      max-width: 600px;
    }
    .hero-image {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 24px auto;
    }
    .hero-image img {
      width: 100%;
      max-width: 480px;
      height: auto;
      border-radius: 24px;
      box-shadow: 0 20px 60px rgba(26,45,90,0.2), 0 8px 24px rgba(26,45,90,0.1);
      object-fit: cover;
    }
    @media (min-width: 900px) {
      .hero {
        text-align: left;
      }
      .hero .container:not(.hero-layout) {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .hero-content {
        align-items: center;
        text-align: center;
        max-width: 800px;
      }
      .hero-trust {
        justify-content: center;
      }
      .hero h1 {
        margin: 0 0 20px 0;
      }
      .hero-stat {
        margin-bottom: 12px;
      }
      .hero-sub {
        margin: 0 0 24px 0;
      }
      .hero-image img {
        max-width: 480px;
      }
    }
    @media (max-width: 899px) {
      .hero {
        padding: 20px 0 32px;
      }
      .hero .container:not(.hero-layout) {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-top: 0;
      }
      .hero-image {
        width: 100%;
        margin: 16px auto;
        order: 0;
      }
      .hero-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: 280px;
        object-fit: cover;
        border-radius: 16px;
      }
      .hero-content {
        padding: 0 4px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .hero h1 {
        font-size: clamp(22px, 5.5vw, 28px);
        margin-bottom: 12px;
        line-height: 1.2;
      }
      .hero-stat {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.5;
      }
      .hero-sub {
        font-size: 14px;
        margin-bottom: 16px;
        line-height: 1.6;
      }
      .hero-eyebrow {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 16px;
      }
      .hero-mechanism {
        font-size: 14px;
        margin-bottom: 16px;
      }
      .hero-micro {
        font-size: 12px;
      }
      .btn-primary {
        width: 100%;
        padding: 16px 32px;
        font-size: 16px;
        margin-bottom: 16px;
      }
      .hero-trust {
        gap: 8px 16px;
        margin-top: 0;
        justify-content: center;
      }
      .hero-trust .item {
        font-size: 12px;
      }
      .hero-trust .item svg {
        width: 12px;
        height: 12px;
      }
    }
    .hero-chips {
      display: flex; justify-content: center; flex-wrap: wrap; gap: 10px;
      max-width: 720px; margin: 0 auto 24px;
    }
    .hero-chips .chip {
      display: inline-flex; align-items: center; gap: 7px;
      background: linear-gradient(135deg, rgba(26,45,90,0.04), rgba(20,184,166),0.08));
      border: 1px solid var(--accent-border);
      color: var(--text); border-radius: 100px;
      font-size: 13px; font-weight: 600; padding: 9px 16px;
      transition: all 200ms var(--ease-out);
    }
    .hero-chips .chip:hover { border-color: var(--accent); background: rgba(26,45,90,0.06); }
    .hero-chips .chip svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--accent); }

    .verified {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 11.5px; font-weight: 700; color: var(--accent);
      margin-top: 4px;
    }
    .verified svg { width: 12px; height: 12px; }

    .vet-strip {
      display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
      background: linear-gradient(135deg, var(--card) 0%, rgba(20,184,166),0.06) 100%);
      border: 1px solid var(--accent-border);
      border-radius: var(--radius); padding: 24px 28px;
      max-width: 900px; margin: 0 auto;
      text-align: center;
      box-shadow: var(--shadow-md);
    }
    .vet-strip .vet-icon {
      width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
      background: linear-gradient(135deg, var(--accent-dim), rgba(20,184,166),0.12));
      color: var(--accent);
      display: flex; align-items: center; justify-content: center;
    }
    .vet-strip .vet-icon svg { width: 24px; height: 24px; }
    .vet-strip .vet-title { font-family: var(--font-head); font-weight: 800; font-size: 16px; }
    .vet-strip .vet-desc { font-size: 13.5px; color: var(--text2); margin-top: 2px; }

    .rating-bar {
      max-width: 580px; margin: 28px auto 0;
      background: linear-gradient(135deg, var(--card) 0%, rgba(20,184,166),0.05) 100%);
      border: 1px solid var(--border);
      border-radius: 18px; padding: 20px 26px;
      display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
      box-shadow: var(--shadow-md);
    }
    .rating-stars { display: flex; gap: 2px; }
    .rating-stars svg { width: 18px; height: 18px; }
    .rating-text { font-size: 14px; color: var(--text2); }
    .rating-text strong { color: var(--text); }
    .rating-num { font-family: var(--font-head); font-weight: 900; font-size: 22px; color: var(--accent); }

    /* ============ Section helpers ============ */
    section { padding: 80px 0; position: relative; }
    .section-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
      margin-bottom: 16px;
    }
    .section-eyebrow::before {
      content: ''; width: 20px; height: 2px; background: var(--accent); border-radius: 1px;
    }
    .section-title {
      font-family: var(--font-head); font-weight: 800;
      font-size: clamp(28px, 3.8vw, 42px); line-height: 1.16;
      letter-spacing: -0.01em; max-width: 720px;
    }
    .section-sub { font-size: 17px; color: var(--text2); margin-top: 14px; max-width: 620px; line-height: 1.7; }

    /* ============ Consequences ============ */
    /* ============ Consequences (Dark Premium) ============ */
    .consequences {
      background: #F4F7F5;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .consequences::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 30% 0%, rgba(217,68,82,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 70% 100%, rgba(245,158,11,0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .consequences .container { position: relative; z-index: 1; }
    .consequences-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
    .consequences-header .section-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--danger); margin-bottom: 16px;
    }
    .consequences-header .section-eyebrow::before,
    .consequences-header .section-eyebrow::after {
      content: ''; width: 24px; height: 1px; background: var(--danger); opacity: 0.4;
    }
    .consequences-header .section-title {
      font-family: var(--font-head); font-weight: 900;
      font-size: clamp(26px,4.5vw,38px); color: var(--text);
      line-height: 1.2; margin-bottom: 14px;
    }
    .consequences-header .section-sub {
      font-size: 16px; color: var(--text2); line-height: 1.7;
    }
    .consequences-header .section-sub strong { color: var(--lilac-bright); }
    .consequences-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .consequence-card {
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 32px 24px;
      text-align: center;
      transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .consequence-card:hover {
      border-color: rgba(217,68,82,0.3);
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(217,68,82,0.15);
    }
    .consequence-icon {
      width: 56px; height: 56px; border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
    }
    .consequence-icon svg { width: 26px; height: 26px; }
    .consequence-danger {
      background: rgba(217,68,82,0.15);
      box-shadow: 0 0 24px rgba(217,68,82,0.2);
    }
    .consequence-danger svg { color: #FF6B6B; }
    .consequence-warning {
      background: rgba(245,158,11,0.15);
      box-shadow: 0 0 24px rgba(245,158,11,0.2);
    }
    .consequence-warning svg { color: #FFB84D; }
    .consequence-content h3 {
      font-family: var(--font-head); font-weight: 700;
      font-size: 17px; margin-bottom: 10px; color: var(--text);
    }
    .consequence-content p {
      font-size: 14px; color: var(--text2);
      line-height: 1.65; margin: 0;
    }
    .consequence-content strong { color: #FF6B6B; }

    .consequences-cost {
      max-width: 700px; margin: 48px auto 0; text-align: center;
    }
    .cost-compare {
      display: flex; align-items: center; justify-content: center;
      gap: 24px; margin-bottom: 16px;
    }
    .cost-bad, .cost-good {
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 16px; padding: 20px 28px;
      text-align: center; flex: 1; max-width: 280px;
      backdrop-filter: blur(8px);
    }
    .cost-bad { border-color: rgba(217,68,82,0.3); }
    .cost-good { border-color: rgba(15,118,110,0.3); background: rgba(15,118,110,0.08); }
    .cost-label {
      display: block; font-size: 12px; font-weight: 600;
      color: var(--text3); text-transform: uppercase;
      letter-spacing: 0.05em; margin-bottom: 8px;
    }
    .cost-value {
      display: block; font-family: var(--font-head); font-weight: 900;
      font-size: 24px; color: #FF6B6B;
    }
    .cost-highlight { color: var(--lilac-bright) !important; }
    .cost-vs {
      font-family: var(--font-head); font-weight: 800;
      font-size: 14px; color: var(--text3);
      text-transform: uppercase; letter-spacing: 0.1em;
    }
    .cost-note {
      font-size: 14px; color: var(--text3); line-height: 1.6; margin: 0;
    }

    .consequences-cta { text-align: center; margin-top: 40px; }
    .cta-pre-text {
      font-family: var(--font-head); font-weight: 700;
      font-size: 18px; color: var(--text); margin-bottom: 20px;
    }

    /* PREMIUM CONSEQUENCE REDESIGN - LIGHT THEME */
    .premium-pain-section {
      background: #F4F7F5;
      padding: 80px 0 60px;
      position: relative;
      overflow: hidden;
    }
    .premium-pain-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 30% 0%, rgba(217,68,82,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 70% 100%, rgba(245,158,11,0.04) 0%, transparent 60%);
      pointer-events: none;
    }
    .premium-pain-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 56px;
      position: relative;
      z-index: 1;
    }
    .premium-pain-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(217,68,82,0.08);
      border: 1px solid rgba(217,68,82,0.15);
      border-radius: 100px;
      padding: 8px 18px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #D94452;
      margin-bottom: 24px;
    }
    .premium-pain-badge svg {
      width: 14px;
      height: 14px;
    }
    .premium-pain-title {
      font-family: var(--font-head);
      font-weight: 900;
      font-size: clamp(28px, 5vw, 42px);
      color: #1F2937;
      line-height: 1.15;
      margin: 0 0 20px;
    }
    .premium-pain-title .highlight-red {
      color: #D94452;
      position: relative;
    }
    .premium-pain-title .highlight-red::after {
      content: '';
      position: absolute;
      bottom: 2px;
      left: 0;
      right: 0;
      height: 8px;
      background: rgba(217,68,82,0.12);
      border-radius: 4px;
    }
    .premium-pain-subtitle {
      font-size: 17px;
      color: #6B7280;
      line-height: 1.7;
      margin: 0;
    }
    .premium-pain-cards {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 600px;
      margin: 0 auto;
    }
    .premium-pain-card {
      background: #FFFFFF;
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 16px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      text-align: left;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    }
    .premium-pain-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 60px;
      height: 100%;
      background: radial-gradient(circle at left center, rgba(217,68,82,0.04) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .premium-pain-card:hover {
      border-color: rgba(217,68,82,0.2);
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(217,68,82,0.1);
    }
    .premium-pain-card:hover::before {
      opacity: 1;
    }
    .premium-pain-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    .premium-pain-icon.danger {
      background: linear-gradient(135deg, rgba(217,68,82,0.12), rgba(217,68,82,0.04));
      box-shadow: 0 0 16px rgba(217,68,82,0.08);
    }
    .premium-pain-icon.warning {
      background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(245,158,11,0.04));
      box-shadow: 0 0 16px rgba(245,158,11,0.08);
    }
    .premium-pain-icon svg {
      width: 20px;
      height: 20px;
    }
    .premium-pain-icon.danger svg { color: #D94452; }
    .premium-pain-icon.warning svg { color: #F59E0B; }
    .premium-pain-card h3 {
      font-family: var(--font-head);
      font-weight: 600;
      font-size: 15px;
      color: #1F2937;
      margin: 0;
      line-height: 1.4;
    }
    .premium-pain-card p {
      font-size: 14px;
      color: #6B7280;
      line-height: 1.6;
      margin: 0;
    }
    .premium-pain-bottom {
      text-align: center;
      margin-top: 32px;
      padding: 20px 28px;
      background: linear-gradient(135deg, rgba(217,68,82,0.06), rgba(245,158,11,0.04));
      border: 1px solid rgba(217,68,82,0.1);
      border-radius: 12px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .premium-pain-bottom p {
      font-size: 17px;
      color: #374151;
      line-height: 1.6;
      margin: 0;
      font-weight: 500;
    }
    .premium-pain-bottom strong {
      color: #1F2937;
      font-weight: 700;
    }

    /* EMERGENCY COST SECTION - PREMIUM LIGHT */

    /* TRANSITION SECTION - PREMIUM LIGHT */
    .premium-transition-section {
      background: #F9F7F4;
      padding: 80px 0;
      position: relative;
    }
    .premium-transition-card {
      background: #FFFFFF;
      border: 1px solid rgba(15,118,110,0.1);
      border-radius: 32px;
      padding: 48px 40px;
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
      box-shadow: 0 12px 40px rgba(15,118,110,0.06);
      position: relative;
      overflow: hidden;
    }
    .premium-transition-card::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(15,118,110,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .premium-transition-card::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(15,118,110,0.04) 0%, transparent 70%);
      pointer-events: none;
    }
    .premium-transition-icon {
      width: 64px;
      height: 64px;
      border-radius: 20px;
      background: linear-gradient(135deg, #0F766E, #14B8A6);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 28px;
      box-shadow: 0 12px 32px rgba(15,118,110,0.2);
      position: relative;
      z-index: 1;
    }
    .premium-transition-icon svg {
      width: 32px;
      height: 32px;
      color: #FFFFFF;
    }
    .premium-transition-title {
      font-family: var(--font-head);
      font-weight: 900;
      font-size: clamp(26px, 4.5vw, 38px);
      color: #1F2937;
      line-height: 1.2;
      margin: 0 0 20px;
      position: relative;
      z-index: 1;
    }
    .premium-transition-text {
      font-size: 17px;
      color: #6B7280;
      line-height: 1.75;
      margin: 0 0 16px;
      position: relative;
      z-index: 1;
    }
    .premium-transition-highlight {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 18px;
      color: #0F766E;
      margin: 0;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 768px) {
      .consequences-grid { grid-template-columns: 1fr; max-width: 400px; }
      .cost-compare { flex-direction: column; gap: 12px; }
      .cost-bad, .cost-good { max-width: 100%; width: 100%; }
      .premium-pain-cards { max-width: 100%; }
      .premium-pain-card { padding: 14px 16px; }
      .premium-pain-icon { width: 36px; height: 36px; min-width: 36px; }
      .premium-pain-icon svg { width: 18px; height: 18px; }
      .premium-pain-card h3 { font-size: 14px; }
      .premium-transition-card { padding: 36px 24px; border-radius: 24px; }
    }

    /* ============ Vision Checklist ============ */
    .vision-checklist {
      max-width: 500px;
      margin: 28px auto 0;
    }
    .check-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
    .check-item:last-child {
      border-bottom: none;
    }
    .check-item svg {
      width: 22px;
      height: 22px;
      color: var(--success);
      flex-shrink: 0;
    }
    .check-item span {
      font-size: 17px;
      color: var(--text);
      line-height: 1.5;
    }
    .check-item strong {
      color: var(--accent);
      font-weight: 700;
    }

    @media (max-width: 768px) {
      .vision-checklist {
        max-width: 100%;
        padding: 0 16px;
      }
      .check-item span {
        font-size: 15px;
      }
    }

    /* ============ Neutralização de objeção ============ */
    .objection {
      background: linear-gradient(135deg, rgba(45,138,86,0.04), rgba(45,138,86,0.02));
      border: 1px solid rgba(45,138,86,0.15);
      border-radius: var(--radius-lg);
      padding: 36px 36px; max-width: 800px; margin: 0 auto;
      text-align: center;
      box-shadow: var(--shadow-md);
    }
    .objection .check {
      width: 52px; height: 52px; margin: 0 auto 18px;
      background: linear-gradient(135deg, #2D8A56, #0F766E);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(45,138,86,0.25);
    }
    .objection .check svg { width: 26px; height: 26px; color: #FFFFFF; }
    .objection h3 { font-family: var(--font-head); font-weight: 800; font-size: 22px; margin-bottom: 10px; }
    .objection p { color: var(--text2); font-size: 15.5px; max-width: 640px; margin: 0 auto; line-height: 1.7; }
    .objection p strong { color: var(--text); }

    .cta-band { text-align: center; padding: 40px 0 0; }

    /* ============ Visão ============ */
    .vision { text-align: center; }
    .vision p.lead { font-size: 18px; color: var(--text2); max-width: 660px; margin: 0 auto; line-height: 1.75; }
    .vision-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 44px; }
    .vision-card {
      background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 32px 28px; text-align: center;
      box-shadow: var(--shadow-sm);
      transition: all 280ms var(--ease-out);
    }
    .vision-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .vision-card .num {
      font-family: var(--font-head); font-weight: 900; font-size: 36px;
      background: linear-gradient(135deg, var(--accent), var(--lilac));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .vision-card h4 { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin: 12px 0 8px; }
    .vision-card p { font-size: 14px; color: var(--text2); line-height: 1.6; }

    /* ============ Método (Ultra-Tech Premium) ============ */
    .method {
      background: #F4F7F5;
      position: relative;
      overflow: hidden;
      scroll-margin-top: 16px;
    }
    .method::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 20% 0%, rgba(15,118,110,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(107,155,138,0.12) 0%, transparent 60%);
      pointer-events: none;
    }
    .method .container { position: relative; z-index: 1; }
    .method .section-title { color: var(--text); }
    .method .section-sub { color: var(--text2); }
    .method-grid { display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }
    .method-step {
      display: flex; align-items: flex-start; gap: 28px;
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 36px;
      transition: all 320ms var(--ease-out);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      position: relative;
    }
    .method-step::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--radius);
      background: linear-gradient(135deg, rgba(15,118,110,0.06) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 320ms var(--ease-out);
      pointer-events: none;
    }
    .method-step:hover {
      border-color: rgba(15,118,110,0.22);
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }
    .method-step:hover::before { opacity: 1; }
    .method-step.active {
      background: #FFFFFF;
      border-color: rgba(15,118,110,0.2);
      box-shadow: var(--shadow-md);
    }
    .step-num {
      width: 60px; height: 60px; border-radius: 16px; flex-shrink: 0;
      border: none;
      background: linear-gradient(135deg, #0F766E, #22B8A6);
      color: #FFFFFF;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head); font-weight: 900; font-size: 24px;
      transition: all 320ms var(--ease-out);
      box-shadow: 0 4px 16px rgba(15,118,110,0.28);
      position: relative;
    }
    .step-num::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 20px;
      background: linear-gradient(135deg, #0F766E, #22B8A6);
      opacity: 0.2;
      filter: blur(8px);
      z-index: -1;
    }
    .method-step.active .step-num {
      background: linear-gradient(135deg, #0F766E, #14B8A6);
      box-shadow: 0 4px 20px rgba(15,118,110,0.35);
    }
    .method-step.active .step-num::after {
      background: linear-gradient(135deg, #0F766E, #14B8A6);
      opacity: 0.3;
    }
    .step-content h3 {
      font-family: var(--font-head); font-weight: 700; font-size: 19px;
      margin-bottom: 8px; color: var(--text);
    }
    .step-content p {
      font-size: 15px; color: var(--text2); line-height: 1.7; max-width: 560px;
    }
    .step-content strong { color: var(--accent); font-weight: 600; }
    .step-etapa {
      font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--lilac); margin-bottom: 6px;
      display: flex; align-items: center; gap: 8px;
    }
    .step-etapa::before {
      content: '';
      width: 16px; height: 1px;
      background: var(--lilac);
      opacity: 0.5;
    }
    .method-cta-area {
      text-align: center; margin-top: 44px;
    }
    .method-cta-area .method-insight {
      font-size: 16px; color: var(--text3); font-weight: 500;
      margin-bottom: 28px;
    }
    .method-cta-area .method-insight strong {
      color: var(--lilac-bright);
    }
    .method .btn-primary {
      background: linear-gradient(135deg, #0F766E 0%, #115E59 100%);
      color: #FFFFFF;
      border: none;
      box-shadow: 0 4px 20px rgba(15,118,110,0.30);
    }
    .method .btn-primary:hover {
      box-shadow: 0 6px 28px rgba(15,118,110,0.42);
      transform: translateY(-2px);
    }

    /* ============ O Que Muda (Premium Comparison) ============ */
    .whats-changes {
      background: var(--bg);
      padding: 72px 0 56px;
      position: relative;
    }
    .whats-changes::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
    }
    .changes-header {
      text-align: center;
      margin-bottom: 40px;
    }
    .changes-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }
    .changes-eyebrow::before,
    .changes-eyebrow::after {
      content: '';
      width: 24px; height: 1px;
      background: var(--accent);
      opacity: 0.3;
    }
    .changes-title {
      font-family: var(--font-head);
      font-size: clamp(24px, 4vw, 32px);
      font-weight: 800;
      color: var(--text);
      margin-bottom: 8px;
    }
    .changes-sub {
      font-size: 16px;
      color: var(--text2);
      max-width: 480px;
      margin: 0 auto;
    }
    .changes-grid {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 720px;
      margin: 0 auto;
    }
    .change-card {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 0;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px 24px;
      transition: all 320ms var(--ease-out);
      box-shadow: var(--shadow-sm);
    }
    .change-card:hover {
      border-color: var(--accent-border);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }
    .change-before {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .change-before-icon {
      width: 36px; height: 36px;
      border-radius: 10px;
      background: var(--danger-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .change-before-icon svg {
      width: 18px; height: 18px;
      stroke: var(--danger);
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .change-before-text {
      font-size: 15px;
      color: var(--text3);
      line-height: 1.4;
    }
    .change-arrow {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--lilac));
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 16px;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(26,45,90,0.2);
    }
    .change-arrow svg {
      width: 18px; height: 18px;
      stroke: #FFFFFF;
      stroke-width: 2.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .change-after {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .change-after-icon {
      width: 36px; height: 36px;
      border-radius: 10px;
      background: var(--success-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .change-after-icon svg {
      width: 18px; height: 18px;
      stroke: var(--success);
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .change-after-text {
      font-size: 15px;
      color: var(--text);
      font-weight: 600;
      line-height: 1.4;
    }

    @media (max-width: 640px) {
      .change-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
      }
      .change-arrow {
        margin: 0 auto;
        width: 32px; height: 32px;
      }
      .change-arrow svg { width: 14px; height: 14px; }
      .change-before, .change-after { justify-content: flex-start; }
    }

    /* ============ App Preview Interativo ============ */
    .app-preview-section { padding: 100px 0 80px; position: relative; }

    /* Multi-Cat Section */
    .multi-cat-section { padding: 80px 0; background: linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(99,102,241,0.03) 50%, rgba(15,23,42,0) 100%); }
    .multi-cat-wrap { display: flex; align-items: center; gap: 60px; max-width: 1000px; margin: 0 auto; }
    .multi-cat-content { flex: 1; }
    .multi-cat-content .section-eyebrow { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lilac); margin-bottom: 12px; }
    .multi-cat-content .section-title { font-family: var(--font-head); font-weight: 900; font-size: clamp(28px,5vw,42px); color: var(--text); line-height: 1.2; margin-bottom: 14px; }
    .multi-cat-content .section-sub { font-size: 16px; color: var(--text2); line-height: 1.7; margin-bottom: 32px; }
    .multi-cat-features { display: flex; flex-direction: column; gap: 20px; }
    .multi-cat-feature { display: flex; align-items: flex-start; gap: 16px; }
    .multi-cat-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(99,102,241,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .multi-cat-icon svg { width: 22px; height: 22px; color: var(--lilac); }
    .multi-cat-feature strong { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--text); display: block; margin-bottom: 4px; }
    .multi-cat-feature p { font-size: 14px; color: var(--text2); line-height: 1.6; margin: 0; }
    .multi-cat-visual { flex-shrink: 0; }
    .multi-cat-phone { width: 260px; height: 480px; background: #1F2937; border-radius: 36px; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 0 0 3px rgba(255,255,255,0.08); overflow: hidden; }
    .multi-cat-phone .app-phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100px; height: 24px; background: #1F2937; border-radius: 0 0 16px 16px; z-index: 10; }
    .multi-cat-phone .app-phone-notch::after { content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 40px; height: 4px; border-radius: 3px; background: rgba(255,255,255,0.12); }
    .multi-cat-phone .app-phone-screen { position: absolute; inset: 4px; border-radius: 32px; background: #FAFAF8; overflow: hidden; padding: 40px 16px 16px; }
    .multi-cat-header { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--text); margin-bottom: 16px; }
    .multi-cat-list { display: flex; flex-direction: column; gap: 10px; }
    .multi-cat-card { display: flex; align-items: center; gap: 12px; padding: 12px; background: #fff; border-radius: 14px; border: 1.5px solid rgba(0,0,0,0.06); transition: all 0.2s; }
    .multi-cat-card.active { border-color: var(--lilac); background: rgba(99,102,241,0.04); }
    .multi-cat-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(99,102,241,0.1); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
    .multi-cat-info { flex: 1; min-width: 0; }
    .multi-cat-name { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--text); }
    .multi-cat-meta { font-size: 12px; color: var(--text2); }
    .multi-cat-status { font-size: 11px; font-weight: 600; color: var(--lilac); background: rgba(99,102,241,0.1); padding: 4px 8px; border-radius: 6px; white-space: nowrap; }
    .multi-cat-add { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; padding: 12px; border: 2px dashed rgba(99,102,241,0.3); border-radius: 12px; color: var(--lilac); font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
    .multi-cat-add:hover { border-color: var(--lilac); background: rgba(99,102,241,0.04); }
    .multi-cat-add svg { width: 18px; height: 18px; }

    @media (max-width: 768px) {
      .multi-cat-wrap { flex-direction: column; text-align: center; gap: 40px; }
      .multi-cat-features { align-items: center; }
      .multi-cat-feature { flex-direction: column; align-items: center; text-align: center; }
    }
    .app-preview-wrap { display: flex; flex-direction: column; align-items: center; gap: 56px; }
    .app-preview-header { text-align: center; max-width: 520px; }
    .app-preview-header .section-eyebrow { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lilac); margin-bottom: 12px; }
    .app-preview-header .section-title { font-family: var(--font-head); font-weight: 900; font-size: clamp(28px,5vw,42px); color: var(--text); line-height: 1.2; margin-bottom: 14px; }
    .app-preview-header .section-sub { font-size: 16px; color: var(--text2); line-height: 1.7; }

    .app-phone-stage { display: flex; align-items: center; justify-content: center; gap: 52px; width: 100%; max-width: 960px; }
    .app-phone-copy { max-width: 320px; flex-shrink: 0; }
    .app-phone-copy h3 { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: var(--text); line-height: 1.3; margin-bottom: 10px; }
    .app-phone-copy p { font-size: 15px; color: var(--text2); line-height: 1.7; }

    /* Phone Frame */
    .app-phone {
      width: 280px; height: 580px; flex-shrink: 0; position: relative;
      background: #1F2937; border-radius: 40px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15), 0 20px 60px rgba(0,0,0,0.2), 0 48px 96px rgba(0,0,0,0.15), inset 0 0 0 3px rgba(255,255,255,0.08);
      overflow: hidden;
    }
    .app-phone-notch {
      position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      width: 120px; height: 28px; background: #1F2937; border-radius: 0 0 18px 18px; z-index: 10;
    }
    .app-phone-notch::after {
      content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
      width: 50px; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.12);
    }
    .app-phone-screen {
      position: absolute; inset: 4px; border-radius: 36px; overflow: hidden;
      background: #FAFAF8;
    }

    /* Screen Content Slides */
    .app-screen.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
    /* Ensure first screen is always visible on load */
    .app-screen:first-child { opacity: 1; transform: translateX(0); pointer-events: auto; }

    /* Screen: Início */
    .screen-home { background: #FAFAF8; }
    .screen-home .home-greeting { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--text); margin-bottom: 2px; }
    .screen-home .home-sub { font-size: 11px; color: var(--text2); margin-bottom: 16px; }
    .screen-home .home-progress-wrap { background: var(--card2); border-radius: 20px; padding: 20px; text-align: center; margin-bottom: 14px; }
    .screen-home .home-progress-ring { width: 90px; height: 90px; margin: 0 auto 10px; position: relative; }
    .screen-home .home-progress-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
    .screen-home .home-progress-ring circle { fill: none; stroke-width: 6; }
    .screen-home .home-progress-ring .ring-bg { stroke: var(--border); }
    .screen-home .home-progress-ring .ring-fill { stroke: var(--accent); stroke-linecap: round; transition: stroke-dashoffset 1s ease; }
    .screen-home .home-progress-ring .ring-text { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
    .screen-home .home-progress-ring .ring-pct { font-family: var(--font-head); font-weight: 900; font-size: 20px; color: var(--text); }
    .screen-home .home-progress-ring .ring-ml { font-size: 10px; color: var(--text3); }
    .screen-home .home-meta { font-size: 10px; color: var(--text3); margin-bottom: 14px; }
    .screen-home .home-cta {
      display: block; width: 100%; padding: 14px; border-radius: 14px;
      background: linear-gradient(135deg, var(--accent), #115E59);
      color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 15px;
      text-align: center; border: none; cursor: pointer;
      box-shadow: 0 4px 16px rgba(26,45,90,0.3);
    }
    .screen-home .home-nav { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-top: 14px; }
    .screen-home .home-nav-item {
      background: var(--card); border: 1px solid var(--border); border-radius: 12px;
      padding: 10px 4px; text-align: center; font-size: 9px; color: var(--text2); font-weight: 600;
    }
    .screen-home .home-nav-item.active { background: var(--accent); color: #fff; border-color: var(--accent); }
    .screen-home .home-nav-item .nav-icon { font-size: 16px; margin-bottom: 3px; display: block; }
    .screen-home .home-recipes { margin-top: 12px; }
    .screen-home .home-recipe-card {
      display: flex; align-items: center; gap: 10px; background: var(--card);
      border: 1px solid var(--border); border-radius: 12px; padding: 10px; margin-bottom: 6px;
    }
    .screen-home .home-recipe-thumb { width: 38px; height: 38px; border-radius: 10px; background: linear-gradient(135deg, #E8D5B7, #C9A96E); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; }
    .screen-home .home-recipe-info { flex: 1; min-width: 0; }
    .screen-home .home-recipe-name { font-size: 11px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .screen-home .home-recipe-meta { font-size: 9px; color: var(--text3); }
    .screen-home .home-recipe-tag { font-size: 8px; font-weight: 600; background: var(--lilac-dim); color: var(--accent); padding: 3px 8px; border-radius: 6px; white-space: nowrap; }

    /* Screen: Receitas */
    .screen-receitas { background: #FAFAF8; }
    .screen-receitas .rec-header { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--text); margin-bottom: 4px; }
    .screen-receitas .rec-sub { font-size: 10px; color: var(--text3); margin-bottom: 12px; }
    .screen-receitas .rec-search {
      display: flex; align-items: center; gap: 8px;
      background: var(--card); border: 1px solid var(--border); border-radius: 10px;
      padding: 10px 12px; margin-bottom: 10px;
    }
    .screen-receitas .rec-search svg { width: 14px; height: 14px; color: var(--text3); flex-shrink: 0; }
    .screen-receitas .rec-search span { font-size: 11px; color: var(--text3); }
    .screen-receitas .rec-filters { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
    .screen-receitas .rec-filter {
      font-size: 10px; font-weight: 600; padding: 6px 12px; border-radius: 100px;
      background: var(--card); border: 1px solid var(--border); color: var(--text2);
    }
    .screen-receitas .rec-filter.active { background: var(--accent); color: #fff; border-color: var(--accent); }
    .screen-receitas .rec-card {
      display: flex; align-items: center; gap: 10px; background: var(--card);
      border: 1px solid var(--border); border-radius: 12px; padding: 10px; margin-bottom: 6px;
    }
    .screen-receitas .rec-thumb { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg, #E8D5B7, #C9A96E); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
    .screen-receitas .rec-info { flex: 1; min-width: 0; }
    .screen-receitas .rec-name { font-size: 12px; font-weight: 700; color: var(--text); }
    .screen-receitas .rec-meta { font-size: 9px; color: var(--text3); }
    .screen-receitas .rec-tag { font-size: 8px; font-weight: 600; background: var(--success-dim); color: var(--success); padding: 3px 8px; border-radius: 6px; white-space: nowrap; }

    /* Screen: Calculadora */
    .screen-calc { background: #FAFAF8; }
    .screen-calc .calc-header { font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--text); margin-bottom: 2px; }
    .screen-calc .calc-sub { font-size: 10px; color: var(--text3); margin-bottom: 16px; }
    .screen-calc .calc-field { margin-bottom: 12px; }
    .screen-calc .calc-label { font-size: 10px; font-weight: 600; color: var(--text2); margin-bottom: 5px; display: block; }
    .screen-calc .calc-input {
      width: 100%; padding: 12px; border-radius: 10px; border: 1px solid var(--border);
      background: var(--card); font-size: 14px; font-weight: 600; color: var(--text); outline: none;
    }
    .screen-calc .calc-input:focus { border-color: var(--accent); }
    .screen-calc .calc-pills { display: flex; gap: 6px; }
    .screen-calc .calc-pill {
      flex: 1; padding: 10px 6px; border-radius: 10px; border: 1px solid var(--border);
      background: var(--card); font-size: 10px; font-weight: 600; color: var(--text2); text-align: center;
    }
    .screen-calc .calc-pill.active { background: var(--accent); color: #fff; border-color: var(--accent); }
    .screen-calc .calc-select {
      width: 100%; padding: 12px; border-radius: 10px; border: 1px solid var(--border);
      background: var(--card); font-size: 12px; font-weight: 600; color: var(--text);
    }
    .screen-calc .calc-btn {
      display: block; width: 100%; padding: 14px; border-radius: 12px;
      background: linear-gradient(135deg, var(--accent), #115E59);
      color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 14px;
      text-align: center; border: none; cursor: pointer; margin-top: 8px;
      box-shadow: 0 4px 16px rgba(26,45,90,0.3);
    }
    .screen-calc .calc-note { font-size: 8px; color: var(--text3); text-align: center; margin-top: 8px; line-height: 1.5; }

    /* Screen: Método */
    .screen-metodo { background: #FAFAF8; }
    .screen-metodo .met-header { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--text); margin-bottom: 2px; }
    .screen-metodo .met-sub { font-size: 10px; color: var(--text3); margin-bottom: 14px; }
    .screen-metodo .met-week {
      background: var(--card); border: 1px solid var(--border); border-radius: 14px;
      padding: 14px; margin-bottom: 8px;
    }
    .screen-metodo .met-week-title { font-family: var(--font-head); font-weight: 700; font-size: 12px; color: var(--accent); margin-bottom: 2px; }
    .screen-metodo .met-week-goal { font-size: 10px; color: var(--text2); margin-bottom: 8px; }
    .screen-metodo .met-progress { height: 5px; border-radius: 3px; background: var(--border); margin-bottom: 8px; overflow: hidden; }
    .screen-metodo .met-progress-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--accent), var(--lilac-bright)); }
    .screen-metodo .met-steps { list-style: none; padding: 0; }
    .screen-metodo .met-step {
      display: flex; align-items: center; gap: 8px; padding: 6px 0;
      border-bottom: 1px solid var(--border); font-size: 10px; color: var(--text2);
    }
    .screen-metodo .met-step:last-child { border-bottom: none; }
    .screen-metodo .met-check { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
    .screen-metodo .met-check.done { background: var(--accent); border-color: var(--accent); }
    .screen-metodo .met-check.done::after { content: '✓'; color: #fff; font-size: 9px; font-weight: 700; }

    /* Tabs */
    .app-phone-tabs {
      display: flex; justify-content: center; gap: 8px; margin-top: 24px;
      width: 100%; max-width: 400px;
    }
    .app-tab {
      flex: 1; padding: 14px 8px; border-radius: 14px;
      background: var(--card); border: 2px solid var(--border);
      text-align: center; cursor: pointer;
      transition: all 300ms var(--ease-out);
    }
    .app-tab:hover { border-color: var(--accent-border); }
    .app-tab.active { background: var(--accent); border-color: var(--accent); }
    .app-tab .tab-icon { font-size: 20px; display: block; margin-bottom: 4px; }
    .app-tab .tab-label { font-size: 10px; font-weight: 700; color: var(--text2); }
    .app-tab.active .tab-label { color: #fff; }

    /* Copy right of phone */
    .app-phone-copy { max-width: 320px; display: flex; flex-direction: column; gap: 16px; }
    .app-feature-card {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 20px; border-radius: 16px;
      background: var(--card); border: 1px solid var(--border);
      transition: all 300ms cubic-bezier(0.22, 1, 0.36, 1);
    }
    .app-feature-card:hover {
      border-color: var(--accent-border); transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(26,45,90,0.08);
    }
    .app-feature-icon {
      width: 48px; height: 48px; min-width: 48px; border-radius: 14px;
      background: linear-gradient(135deg, rgba(26,45,90,0.08), rgba(20,184,166),0.12));
      display: flex; align-items: center; justify-content: center;
    }
    .app-feature-icon svg { width: 24px; height: 24px; color: var(--accent); }
    .app-feature-content h4 {
      font-family: var(--font-head); font-weight: 800; font-size: 13px;
      color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase;
      margin-bottom: 6px;
    }
    .app-feature-content p {
      font-size: 14px; color: var(--text2); line-height: 1.6; margin: 0;
    }
    .app-feature-content p strong { color: var(--text); font-weight: 600; }

    @media (max-width: 768px) {
      .app-phone-stage { flex-direction: column; gap: 32px; }
      .app-phone-copy { max-width: 100%; }
      .app-feature-card { padding: 16px; }
      .app-feature-icon { width: 40px; height: 40px; min-width: 40px; }
      .app-feature-icon svg { width: 20px; height: 20px; }
      .app-phone-tabs { max-width: 340px; }
      .app-phone { width: 260px; height: 540px; }
      .app-phone-notch { width: 110px; height: 26px; }
      .app-phone-screen { border-radius: 34px; }
    }

    /* ============ Prova social ============ */
    .social { background: var(--bg2); }
    .social .section-title { font-size: clamp(20px, 5vw, 28px); margin-bottom: 8px; }
    .social .section-sub { font-size: 14px; color: var(--text3); margin-bottom: 24px; }

    .social-summary { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
    .social-summary .stat { text-align: center; }
    .social-summary .stat .num {
      font-family: var(--font-head); font-weight: 900; font-size: 28px;
      background: linear-gradient(135deg, var(--accent), var(--lilac));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .social-summary .stat .lbl { font-size: 12px; color: var(--text3); margin-top: 2px; }

    .testimonial-grid {
      display: flex; flex-direction: column; gap: 12px;
      padding: 4px 0; overflow: visible;
    }

    .testimonial {
      width: 100%; flex: none;
      background: var(--card); border: 1px solid var(--border);
      border-radius: 14px; padding: 0;
      display: flex; flex-direction: row; overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 280ms var(--ease-out);
    }
    .testimonial:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

    .testimonial-img {
      width: 92px; min-width: 92px; overflow: hidden; flex-shrink: 0;
      border-radius: 14px 0 0 14px; background: var(--card2);
      align-self: stretch;
    }
    .testimonial-img img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      border-radius: 14px 0 0 14px;
    }

    .testimonial-body {
      padding: 14px 16px; display: flex; flex-direction: column; gap: 7px;
      flex: 1; min-width: 0;
    }
    .testimonial-body::before {
      content: '★★★★★';
      display: block; color: #E0A93B; font-size: 13px; letter-spacing: 3px;
      line-height: 1; margin-bottom: 9px;
    }
    .testimonial .quote {
      font-size: 13px; color: var(--text2); line-height: 1.55;
      margin: 0; position: relative;
    }
    .testimonial .quote::before {
      content: '\201C';
      position: absolute; top: -12px; right: 0;
      font-family: Georgia, 'Times New Roman', serif; font-size: 56px; line-height: 1;
      color: rgba(15,118,110,0.13); pointer-events: none;
    }
    .testimonial .quote strong { color: var(--text); }
    .testimonial .author { display: flex; align-items: center; gap: 8px; }
    .testimonial .avatar {
      width: 32px; height: 32px; min-width: 32px; border-radius: 50%;
      background: linear-gradient(135deg, #4A3F7E, #0F766E);
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 11px; color: #FFFFFF;
    }
    .testimonial .author-info { flex: 1; min-width: 0; }
    .testimonial .author .name { font-weight: 700; font-size: 13px; }
    .testimonial .author .city { font-size: 11px; color: var(--text3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .testimonial-badge {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 11px; font-weight: 800; color: #1F7A4D;
      background: rgba(45,138,86,0.12); border: 1px solid rgba(45,138,86,0.3);
      padding: 5px 12px; border-radius: 100px;
      width: fit-content; letter-spacing: 0.01em;
    }
    .testimonial-badge svg { width: 10px; height: 10px; }

    .testimonial-dots { display: none; }

    @media (min-width: 769px) {
      .testimonial-grid { gap: 14px; padding: 4px 0; }
      .testimonial-img { width: 120px; min-width: 120px; }
      .testimonial-body { padding: 16px 20px; }
      .testimonial .quote { font-size: 14px; }
      .testimonial .avatar { width: 38px; height: 38px; min-width: 38px; font-size: 13px; }
      .testimonial .author .name { font-size: 14px; }
      .testimonial .author .city { font-size: 12px; }
      .testimonial-badge { font-size: 12px; padding: 6px 14px; }
      .testimonial-badge svg { width: 12px; height: 12px; }
      .social-summary .stat .num { font-size: 34px; }
      .social-summary .stat .lbl { font-size: 13px; }
    }

    /* ============ Garantia ============ */
    .guarantee-card {
      background: linear-gradient(135deg, rgba(26,45,90,0.03), var(--card) 50%, rgba(20,184,166),0.04));
      border: 1px solid var(--accent-border); border-radius: 28px;
      padding: 48px 44px; display: flex; gap: 36px; align-items: center; flex-wrap: wrap;
      max-width: 920px; margin: 0 auto;
      box-shadow: var(--shadow-md);
    }
    .guarantee-seal {
      width: 120px; height: 120px; flex-shrink: 0; border-radius: 50%;
      border: 3px solid var(--accent);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; color: var(--accent);
      box-shadow: 0 0 0 8px rgba(26,45,90,0.05), 0 0 0 16px rgba(26,45,90,0.03), 0 4px 20px rgba(26,45,90,0.12);
      position: relative;
    }
    .guarantee-seal::before {
      content: ''; position: absolute; inset: -8px; border-radius: 50%;
      border: 1px dashed rgba(26,45,90,0.15);
    }
    .guarantee-seal .big { font-family: var(--font-head); font-weight: 900; font-size: 32px; line-height: 1; }
    .guarantee-seal .small { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; margin-top: 4px; text-transform: uppercase; }
    .guarantee-body h3 { font-family: var(--font-head); font-weight: 800; font-size: 24px; margin-bottom: 12px; }
    .guarantee-body p { color: var(--text2); font-size: 15.5px; max-width: 560px; line-height: 1.7; }
    .guarantee-points { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 18px; }
    .guarantee-points .point { display: flex; align-items: center; gap: 7px; font-size: 14px; color: var(--text2); }
    .guarantee-points .point svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

    /* ============ Oferta ============ */
    /* ============ Offer (Dark Premium) ============ */
    .offer {
      background: #F4F7F5;
      position: relative;
      overflow: hidden;
    }
    .offer::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184,164,217,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(15,118,110),0.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .offer .container { position: relative; z-index: 1; }
    .offer .section-eyebrow { color: var(--lilac); }
    .offer .section-title { color: var(--text); }
    .offer .section-sub { color: var(--text2); }

    .offer-card {
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 32px;
      max-width: 960px; margin: 44px auto 0; overflow: hidden;
      box-shadow: var(--shadow-lg);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    .offer-top {
      background: #FFFFFF;
      border-bottom: 1px solid var(--border);
      padding: 20px 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .offer-top .badge {
      font-family: var(--font-head); font-weight: 800; font-size: 15px;
      letter-spacing: 0.05em; color: var(--lilac-bright);
      display: flex; align-items: center; gap: 6px;
    }
    .offer-top .sub { font-size: 13px; color: var(--text3); }
    .offer-body { padding: 44px; }
    .offer-stack { display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }
    .offer-item {
      display: flex; align-items: center; gap: 14px;
      background: #FFFFFF;
      border: 1px solid var(--border);
      border-radius: 16px; padding: 18px 22px;
      font-size: 14.5px;
      transition: all 280ms var(--ease-out);
    }
    .offer-item:hover {
      border-color: rgba(184,164,217,0.25);
      background: #FFFFFF;
    }
    .offer-item .val {
      width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px;
      background: linear-gradient(135deg, var(--lilac), var(--accent));
      color: var(--text); display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 14px;
      box-shadow: 0 2px 8px rgba(184,164,217,0.25);
    }
    .offer-item .lbl { color: var(--text2); line-height: 1.5; }
    .offer-item .lbl strong { color: var(--text); font-weight: 700; }
    .offer-item .check { margin-left: auto; width: 22px; height: 22px; flex-shrink: 0; color: var(--lilac-bright); }

    .price-box { text-align: center; padding: 16px 0 8px; }
    .price-old {
      font-size: 22px; color: var(--text3); text-decoration: line-through; font-weight: 600;
      position: relative;
    }
    .price-old::after {
      content: ''; position: absolute; left: -4px; right: -4px; top: 50%;
      height: 2px; background: var(--danger); transform: rotate(-2deg);
    }
    .price-current {
      font-family: var(--font-head); font-weight: 900;
      font-size: clamp(48px, 9vw, 72px); line-height: 1;
      margin: 10px 0;
      background: linear-gradient(135deg, var(--gold) 0%, #8FB8AC 50%, var(--lilac-bright) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .price-installments { font-size: 15px; color: var(--text3); }
    .price-installments strong { color: var(--text); font-weight: 700; }
    .price-save {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 14px;
      background: rgba(217,68,82,0.15);
      border: 1px solid rgba(217,68,82,0.3);
      color: #FF6B6B; font-size: 14px; font-weight: 700;
      padding: 8px 18px; border-radius: 100px;
    }
    .offer-cta { text-align: center; margin: 32px 0 20px; }
    .offer-security {
      display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
      font-size: 13px; color: var(--text3);
    }
    .offer-security .item { display: flex; align-items: center; gap: 6px; }
    .offer-security .item svg { width: 14px; height: 14px; color: var(--lilac); }

    /* Offer Value Table (Dark) */
    .offer-price-hero {
      text-align: center; padding: 32px 24px; margin-bottom: 24px;
      background: #FFFFFF;
      border-radius: 20px; border: 2px solid rgba(184,164,217,0.3);
      box-shadow: 0 0 40px rgba(184,164,217,0.08);
    }
    .offer-price-hero-label {
      font-size: 16px; font-weight: 700; color: var(--text3);
      text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px;
    }
    .offer-price-hero-value {
      display: flex; align-items: flex-start; justify-content: center; gap: 4px;
      font-family: var(--font-head); font-weight: 900; line-height: 1;
    }
    .offer-price-currency {
      font-size: 32px; color: var(--gold); margin-top: 8px;
    }
    .offer-price-amount {
      font-size: clamp(64px, 12vw, 96px);
      background: linear-gradient(135deg, var(--gold) 0%, #8FB8AC 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .offer-price-hero-installment {
      font-size: 16px; color: var(--text3); margin-top: 12px;
    }
    .offer-price-hero-installment strong { color: var(--text); font-weight: 700; }
    .offer-value-table {
      width: 100%; border-collapse: collapse; margin-bottom: 24px;
      border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
    }
    .offer-value-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 14px 20px; border-bottom: 1px solid var(--border);
      font-size: 15px; color: var(--text2);
    }
    .offer-value-row:last-child { border-bottom: none; }
    .offer-value-row.header {
      background: #FFFFFF;
      font-weight: 700; color: var(--text); font-size: 14px;
      text-transform: uppercase; letter-spacing: 0.05em;
    }
    .offer-value-row.total {
      background: rgba(15,118,110,0.08); font-weight: 700; color: var(--text);
      border-top: 2px solid var(--border);
    }
    .offer-value-row.total span:last-child {
      text-decoration: line-through; color: var(--text3);
    }
    .offer-value-row.savings {
      background: rgba(34,197,94,0.12);
      font-weight: 700;
      color: var(--text);
    }
    .offer-value-row.savings span:last-child {
      color: #4ade80;
    }

    /* Offer Anchors (Dark) */
    .offer-anchors {
      display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px;
    }
    .offer-anchor {
      display: flex; align-items: flex-start; gap: 12px;
      padding: 16px 18px; border-radius: 12px;
      background: #FFFFFF; border: 1px solid var(--border);
      font-size: 14px; color: var(--text2); line-height: 1.6;
    }
    .offer-anchor svg { width: 20px; height: 20px; min-width: 20px; color: var(--lilac); margin-top: 2px; }
    .offer-anchor strong { color: var(--text); font-weight: 700; }

    /* Offer Guarantee (Dark) */
    .offer-guarantee {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      margin-top: 20px; padding: 16px 20px; border-radius: 12px;
      background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25);
      font-size: 14px; color: var(--text2); text-align: center;
    }
    .offer-guarantee svg { width: 20px; height: 20px; min-width: 20px; color: #4ade80; }
    .offer-guarantee strong { color: #4ade80; }

    .offer-card.in-view .price-current { animation: price-pop 2s cubic-bezier(0.22, 1, 0.36, 1) 2; }
    .offer-card.in-view .offer-top .badge { animation: badge-pop 2s cubic-bezier(0.22, 1, 0.36, 1) 2; }
    @keyframes price-pop { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
    @keyframes badge-pop { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

    /* ============ Urgency Timer Removed ============ */
    .offer-top .urgency-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: linear-gradient(135deg, rgba(217,68,82,0.12), rgba(217,68,82,0.06));
      border: 1px solid rgba(217,68,82,0.25);
      color: var(--danger);
      font-size: 12px; font-weight: 700;
      padding: 6px 14px; border-radius: 100px;
      animation: pulse-urgency 2s ease-in-out infinite;
    }
    @keyframes pulse-urgency {
      0%, 100% { box-shadow: 0 0 0 0 rgba(217,68,82,0.2); }
      50% { box-shadow: 0 0 0 6px rgba(217,68,82,0); }
    }
    .offer-top .urgency-badge svg { width: 14px; height: 14px; }

    .offer-limited {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 0 auto 24px;
      max-width: 560px;
      padding: 14px 18px;
      border: 1px solid rgba(217,68,82,0.24);
      border-radius: 14px;
      background: rgba(217,68,82,0.07);
      color: #9F3C46;
      text-align: left;
      animation: offer-limited-pulse 2.4s ease-in-out infinite;
    }
    .offer-limited-icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
    .offer-limited strong { display: block; font-size: 15px; line-height: 1.4; }
    .offer-limited span { display: block; margin-top: 3px; color: var(--text2); font-size: 13px; line-height: 1.45; }
    .offer-bonus { color: #9F3C46; font-weight: 800; }
    .offer-future-price {
      margin: 22px 0 0;
      padding: 18px 20px;
      border-radius: 14px;
      background: rgba(217,68,82,0.07);
      border: 1px solid rgba(217,68,82,0.18);
      color: var(--text2);
      font-size: 14px;
      line-height: 1.6;
      text-align: left;
    }
    .offer-future-price strong { color: #9F3C46; }
    .offer-future-price ul { margin: 8px 0 0; padding-left: 20px; }
    .offer-future-price li + li { margin-top: 4px; }
    @keyframes offer-limited-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(217,68,82,0); }
      50% { box-shadow: 0 0 0 5px rgba(217,68,82,0.08); }
    }

    /* Offer launch framing */
    .offer-launch {
      display: flex; align-items: flex-start; gap: 12px;
      max-width: 680px; margin: 0 auto 24px; padding: 16px 18px;
      border: 1px solid rgba(15,118,110,0.18); border-left: 4px solid var(--accent);
      border-radius: 14px; background: rgba(15,118,110,0.06); color: var(--text2);
      text-align: left; box-shadow: 0 8px 24px rgba(15,118,110,0.06);
    }
    .offer-launch-icon { color: var(--accent); font-size: 20px; line-height: 1.2; flex-shrink: 0; }
    .offer-launch strong { display: block; color: var(--text); font-size: 14px; line-height: 1.45; }
    .offer-launch span { display: block; margin-top: 4px; font-size: 13px; line-height: 1.5; }
    .offer-card { border-color: rgba(15,118,110,0.18); }
    .offer-top { background: linear-gradient(180deg, #FFFFFF, #F7FBFA); }
    .offer-top .badge { color: var(--accent); }
    .offer-body { display: flex; flex-direction: column; }
    .offer-body > .offer-value-table:first-child { order: 2; }
    .offer-body > .offer-price-hero { order: 1; }
    .offer-body > .offer-value-table[style] { order: 3; }
    .offer-body > p { order: 4; }
    .offer-body > .offer-future-price { order: 5; }
    .offer-body > .offer-anchors { order: 6; }
    .offer-body > .offer-cta { order: 7; }
    .offer-body > .offer-security { order: 8; }
    .offer-body > .offer-guarantee { order: 9; }
    .offer-price-hero { border-color: rgba(15,118,110,0.28); box-shadow: 0 12px 30px rgba(15,118,110,0.08); }
    .offer-price-hero-label { color: var(--text); letter-spacing: 0.04em; }
    .offer-price-currency, .offer-price-amount { color: var(--accent); }
    .offer-price-amount { background: linear-gradient(135deg, var(--accent), #4A9A8E); -webkit-background-clip: text; background-clip: text; }
    .offer-cta .btn-primary { width: min(100%, 520px); box-shadow: 0 12px 28px rgba(15,118,110,0.22); }
    .offer-guarantee { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.2); }
    @media (max-width: 480px) {
      .offer-launch { margin-bottom: 18px; padding: 14px 15px; }
      .offer-card { border-radius: 22px; }
      .offer-top { padding: 16px 18px; }
      .offer-top .badge { font-size: 13px; }
      .offer-body { padding: 18px 14px; }
      .offer-price-hero { padding: 22px 14px; margin-bottom: 16px; }
      .offer-price-hero-label { font-size: 13px; }
      .offer-price-amount { font-size: 64px; }
      .offer-value-row { padding: 11px 12px; font-size: 12px; }
      .offer-value-row.header { font-size: 11px; }
      .offer-future-price { padding: 14px; font-size: 12px; }
      .offer-anchor { padding: 13px 14px; font-size: 12px; }
      .offer-security { gap: 10px 14px; font-size: 11px; }
      .offer-guarantee { padding: 14px; font-size: 12px; }
    }

    /* ============ Offer Health Urgency (Premium) ============ */
    .offer-health-urgency {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: linear-gradient(135deg, rgba(217,68,82,0.06) 0%, rgba(217,68,82,0.03) 100%);
      border: 1px solid rgba(217,68,82,0.18);
      border-radius: 14px;
      padding: 16px 20px;
      margin: 0 0 24px;
      position: relative;
      overflow: hidden;
    }
    .offer-health-urgency::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 3px;
      height: 100%;
      background: linear-gradient(180deg, #D94452, #B83341);
      border-radius: 3px 0 0 3px;
    }
    .offer-health-icon {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      color: #D94452;
      margin-top: 1px;
    }
    .offer-health-text {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .offer-health-text strong {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.4;
      letter-spacing: -0.01em;
    }
    .offer-health-text span {
      font-size: 13px;
      color: var(--text2);
      line-height: 1.5;
      font-weight: 500;
    }

    /* ============ Offer Social Proof (Premium) ============ */
    .offer-social-proof {
      display: flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, rgba(15,118,110),0.07) 0%, rgba(15,118,110),0.03) 100%);
      border: 1px solid rgba(15,118,110),0.18);
      border-radius: 12px;
      padding: 14px 18px;
      margin: 20px 0;
    }
    .offer-social-stars {
      display: flex;
      gap: 2px;
    }
    .offer-social-stars svg {
      width: 16px;
      height: 16px;
    }
    .offer-social-text {
      font-size: 14px;
      color: var(--text2);
      line-height: 1.4;
    }
    .offer-social-text strong {
      font-weight: 800;
      color: var(--gold);
      font-size: 15px;
    }
    .offer-social-text span {
      font-weight: 500;
    }

    /* ============ Sticky CTA Mobile ============ */
    .sticky-cta {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 200;
      background: rgba(249,247,244,0.78);
      backdrop-filter: blur(20px) saturate(150%);
      -webkit-backdrop-filter: blur(20px) saturate(150%);
      border-top: 1px solid rgba(15,118,110,0.12);
      padding: 6px 12px calc(6px + env(safe-area-inset-bottom));
      transform: translateY(100%);
      transition: transform 350ms var(--ease-out);
      box-shadow: 0 -4px 20px rgba(11,22,40,0.08);
    }
    .sticky-cta.visible {
      transform: translateY(0);
    }
    .sticky-cta-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      max-width: 600px;
      margin: 0 auto;
    }
    .sticky-cta-price {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
      align-items: flex-start;
      min-width: 38px;
    }
    .sticky-cta-price .old {
      font-size: 10px;
      color: var(--text3);
      text-decoration: line-through;
    }
    .sticky-cta-price .current {
      font-family: var(--font-head);
      font-weight: 900;
      font-size: 18px;
      color: var(--accent);
    }
    .sticky-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(135deg, #0F766E 0%, #115E59 100%);
      color: #FFFFFF;
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 12px;
      line-height: 1.15;
      padding: 10px 14px;
      border-radius: 14px;
      text-decoration: none;
      white-space: nowrap;
      flex: 0 1 auto;
      justify-content: center;
      min-height: 40px;
      box-shadow: 0 6px 16px rgba(15,118,110,0.2);
      transition: all 200ms var(--ease-out);
    }
    .sticky-cta-btn:active { transform: scale(0.97); }
    @media (min-width: 769px) {
      .sticky-cta { display: none !important; }
    }
    @media (max-width: 768px) {
      .sticky-cta { display: block; }
      .footer { padding-bottom: 100px !important; }
      .final { padding-bottom: 80px; }
    }
    @media (max-width: 360px) {
      .sticky-cta { padding-left: 8px; padding-right: 8px; }
      .sticky-cta-inner { gap: 7px; }
      .sticky-cta-btn { font-size: 11px; padding-left: 10px; padding-right: 10px; }
    }

    /* ============ Bônus ============ */
    .bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px,100%), 1fr)); gap: 16px; margin-top: 44px; }
    .bonus-card {
      background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 32px 28px; position: relative; overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 280ms var(--ease-out);
    }
    .bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .bonus-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--accent), var(--lilac), var(--gold));
    }
    .bonus-card .tag {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
      color: var(--accent); background: var(--accent-dim); padding: 5px 12px; border-radius: 100px;
      margin-bottom: 14px;
    }
    .bonus-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 18px; margin-bottom: 8px; }
    .bonus-card p { font-size: 14px; color: var(--text2); line-height: 1.65; }
    .bonus-card .free {
      position: absolute; top: 26px; right: 26px;
      font-size: 12px; font-weight: 800; color: var(--success);
      background: var(--success-dim); padding: 4px 10px; border-radius: 100px;
    }

    /* ============ Bonus + Guarantee + CTA Combined ============ */
    .bonus-guarantee-cta {
      background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
      padding: 64px 0;
    }
    .bgc-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 40px 36px;
      max-width: 800px;
      margin: 0 auto;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }
    .bgc-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent), var(--lilac), var(--gold));
    }
    .bgc-header {
      text-align: center;
      margin-bottom: 32px;
    }
    .bgc-header h2 {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: clamp(22px, 3vw, 28px);
      color: var(--text);
      margin: 8px 0 0;
    }
    .bgc-badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      background: linear-gradient(135deg, rgba(15,118,110),0.12), rgba(15,118,110),0.06));
      border: 1px solid rgba(15,118,110),0.25);
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 12px;
    }
    .bgc-subtitle {
      font-size: 15px;
      color: var(--text2);
      margin-top: 8px;
      line-height: 1.5;
    }
    .bgc-bonus-grid {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 28px;
    }
    .bgc-bonus-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px;
      background: linear-gradient(135deg, rgba(45,138,86,0.05), rgba(45,138,86,0.02));
      border: 1px solid rgba(45,138,86,0.15);
      border-radius: 14px;
      transition: all 280ms var(--ease-out);
    }
    .bgc-bonus-item:hover {
      border-color: rgba(45,138,86,0.3);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    .bgc-bonus-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, rgba(45,138,86,0.1), rgba(45,138,86,0.05));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .bgc-bonus-icon svg {
      width: 22px;
      height: 22px;
      color: var(--success);
    }
    .bgc-bonus-content {
      flex: 1;
    }
    .bgc-bonus-tag {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--success);
      margin-bottom: 4px;
    }
    .bgc-bonus-name {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 16px;
      color: var(--text);
      margin: 0 0 6px;
    }
    .bgc-bonus-desc {
      font-size: 14px;
      color: var(--text2);
      line-height: 1.5;
      margin: 0 0 10px;
    }
    .bgc-bonus-price {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .bgc-bonus-original {
      font-size: 14px;
      color: var(--text3);
      text-decoration: line-through;
    }
    .bgc-bonus-free {
      font-size: 12px;
      font-weight: 800;
      color: var(--success);
      background: var(--success-dim);
      padding: 4px 12px;
      border-radius: 100px;
    }
    .bgc-total {
      padding: 20px;
      background: linear-gradient(135deg, rgba(15,118,110),0.08), rgba(15,118,110),0.04));
      border: 1px solid rgba(15,118,110),0.2);
      border-radius: 12px;
      margin-bottom: 24px;
    }
    .bgc-total-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
    }
    .bgc-total-row span {
      font-size: 14px;
      color: var(--text2);
    }
    .bgc-total-row strong {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 16px;
      color: var(--text3);
      text-decoration: line-through;
    }
    .bgc-total-highlight {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 8px;
      border-top: 1px solid rgba(15,118,110),0.2);
    }
    .bgc-total-highlight span {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
    }
    .bgc-total-highlight strong {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 18px;
      color: var(--gold);
    }
    .bgc-divider {
      height: 1px;
      background: var(--border);
      margin: 24px 0;
    }
    .bgc-guarantee {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px;
      margin-bottom: 16px;
    }
    .bgc-guarantee svg {
      width: 20px;
      height: 20px;
      color: var(--accent);
    }
    .bgc-guarantee span {
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
    }
    .bgc-urgency {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px;
      background: linear-gradient(135deg, rgba(217,68,82,0.06), rgba(217,68,82,0.03));
      border: 1px solid rgba(217,68,82,0.15);
      border-radius: 12px;
      margin-bottom: 28px;
    }
    .bgc-urgency svg {
      width: 20px;
      height: 20px;
      color: var(--danger);
    }
    .bgc-urgency span {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
    }
    .bgc-cta {
      text-align: center;
    }
    @media (max-width: 640px) {
      .bgc-card { padding: 28px 20px; }
      .bgc-bonus-info { flex-direction: column; align-items: flex-start; gap: 6px; }
    }

    /* ============ Para quem é ============ */
    .fit-section { padding: 80px 0; }
    .fit-header { text-align: center; max-width: 520px; margin: 0 auto 48px; }
    .fit-header .section-eyebrow { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lilac); margin-bottom: 12px; }
    .fit-header .section-title { font-family: var(--font-head); font-weight: 900; font-size: clamp(28px,5vw,42px); color: var(--text); line-height: 1.2; }
    .fit-form { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .fit-form-item {
      display: flex; align-items: center; gap: 16px;
      background: var(--card); border: 1.5px solid var(--border); border-radius: 14px;
      padding: 18px 22px; cursor: pointer;
      transition: all 0.25s ease;
    }
    .fit-form-item:hover { border-color: var(--lilac); background: rgba(99,102,241,0.02); }
    .fit-form-item:has(.fit-checkbox:checked) { border-color: #22c55e; background: rgba(34,197,94,0.04); }
    .fit-checkbox { display: none; }
    .fit-form-check {
      width: 28px; height: 28px; min-width: 28px; border-radius: 8px;
      border: 2px solid var(--border); background: var(--bg);
      display: flex; align-items: center; justify-content: center;
      transition: all 0.25s ease;
    }
    .fit-checkbox:checked + .fit-form-check {
      border-color: #22c55e; background: #22c55e;
    }
    .fit-checkbox:checked + .fit-form-check::after {
      content: '✓'; color: #fff; font-size: 16px; font-weight: 700;
    }
    .fit-form-text { font-size: 16px; color: var(--text2); line-height: 1.5; }
    .fit-form-text strong { color: var(--text); font-weight: 700; }
    .fit-form-result {
      display: flex; align-items: center; justify-content: center; gap: 12px;
      margin-top: 16px; padding: 14px 20px; border-radius: 12px;
      background: rgba(99,102,241,0.06); border: 1px solid rgba(99,102,241,0.12);
    }
    .fit-form-counter { font-size: 15px; font-weight: 700; color: var(--lilac); }
    .fit-form-message { font-size: 15px; color: var(--text2); }

    @media (max-width: 768px) {
      .fit-form-item { padding: 16px 18px; gap: 14px; }
      .fit-form-check { width: 24px; height: 24px; min-width: 24px; }
      .fit-checkbox:checked + .fit-form-check::after { font-size: 14px; }
      .fit-form-text { font-size: 15px; }
    }

    /* ============ FAQ ============ */

    /* ============ Objeções Quebra Rápida (Premium Tech) ============ */
    .obj-section {
      background: linear-gradient(180deg, #F9F7F4 0%, #F4F7F5 100%);
      position: relative; overflow: hidden;
    }
    .obj-section::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 60% 40% at 0% 0%, rgba(15,118,110,0.05) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(107,155,138,0.06) 0%, transparent 60%);
    }
    .obj-section .container { position: relative; z-index: 1; }
    .obj-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
    .obj-head h2 {
      font-family: var(--font-head); font-weight: 900;
      font-size: clamp(28px, 4vw, 40px); line-height: 1.14;
      letter-spacing: -0.01em; color: var(--text); margin: 0 0 10px;
    }
    .obj-head h2 .hl {
      background: linear-gradient(120deg, var(--accent), #115E59);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .obj-head p { font-size: 16px; color: var(--text2); margin: 0; line-height: 1.7; }
    .obj-list { display: flex; flex-direction: column; gap: 16px; max-width: 760px; margin: 0 auto; }
    .obj-card {
      background: #FFFFFF; border: 1px solid var(--border); border-radius: 18px;
      padding: 26px 28px; box-shadow: var(--shadow-sm);
      transition: all 280ms var(--ease-out);
      display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
    }
    .obj-card:hover { border-color: rgba(15,118,110,0.32); box-shadow: var(--shadow-md); transform: translateY(-2px); }
    .obj-tag {
      width: 52px; height: 52px; border-radius: 16px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--accent), #115E59);
      color: #fff; display: flex; align-items: center; justify-content: center;
      font-weight: 900; font-size: 18px; letter-spacing: -0.02em;
      box-shadow: 0 6px 18px rgba(15,118,110,0.30), inset 0 1px 0 rgba(255,255,255,0.18);
    }
    .obj-body .obj-q {
      font-family: var(--font-head); font-weight: 900; font-size: 18px;
      color: var(--text); line-height: 1.3; margin-bottom: 8px;
    }
    .obj-body .obj-a {
      color: var(--text2); font-size: 15px; line-height: 1.72; margin: 0;
    }
    .obj-body .obj-a strong { color: var(--text); font-weight: 700; }
    @media (max-width: 640px) {
      .obj-card { grid-template-columns: 1fr; gap: 14px; padding: 22px 20px; }
      .obj-tag { width: 40px; height: 40px; font-size: 13px; }
      .obj-body .obj-q { font-size: 16px; }
      .obj-body .obj-a { font-size: 14.5px; }
    }

    /* Compact conversion FAQ */
    .obj-head { max-width: 620px; margin-bottom: 28px; }
    .obj-head h2 { font-size: clamp(26px, 3.5vw, 36px); }
    .obj-head p { font-size: 14px; line-height: 1.55; }
    .obj-list {
      display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px; max-width: 900px;
    }
    .obj-card {
      grid-template-columns: auto 1fr; gap: 14px; padding: 18px 20px;
      border-radius: 14px; box-shadow: 0 5px 18px rgba(11,22,40,0.045);
    }
    .obj-card:last-child { grid-column: 1 / -1; }
    .obj-tag { width: 36px; height: 36px; border-radius: 11px; font-size: 12px; }
    .obj-body .obj-q { font-size: 15px; line-height: 1.3; margin-bottom: 6px; }
    .obj-body .obj-a { font-size: 13.5px; line-height: 1.52; }
    @media (max-width: 640px) {
      .obj-head { margin-bottom: 22px; }
      .obj-head h2 { font-size: 25px; }
      .obj-head p { font-size: 13.5px; }
      .obj-list { grid-template-columns: 1fr; gap: 10px; }
      .obj-card, .obj-card:last-child {
        grid-column: auto; grid-template-columns: 32px 1fr;
        gap: 10px; padding: 14px 14px; border-radius: 13px;
      }
      .obj-tag { width: 32px; height: 32px; border-radius: 9px; font-size: 11px; }
      .obj-body .obj-q { font-size: 14px; line-height: 1.35; margin-bottom: 5px; }
      .obj-body .obj-a { font-size: 13px; line-height: 1.48; }
    }

    /* ============ Veja o Felinus por dentro ============ */
    /* --- iPhone 15 Pro Mockup System --- */
.inside-section {
  background: linear-gradient(180deg, #F9F7F4 0%, #EEF5F3 50%, #F4F7F5 100%);
  position: relative; overflow: hidden; padding: 96px 0 88px;
}
.inside-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 15% 20%, rgba(15,118,110,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 45% 40% at 90% 80%, rgba(20,184,166,0.06) 0%, transparent 55%);
}
.inside-section .container { position: relative; z-index: 1; }

/* Header */
.inside-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.inside-head h2 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(28px, 4.2vw, 44px); line-height: 1.12;
  letter-spacing: -0.02em; color: var(--text); margin: 0 0 14px;
}
.inside-head h2 .hl {
  background: linear-gradient(120deg, var(--accent), #14B8A6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.inside-head p {
  font-size: clamp(15px, 2.2vw, 18px); color: var(--text2); line-height: 1.7; margin: 0;
}

/* Product peek — one framed stage, never a full-screen dump */
.prod-head { text-align: center; max-width: 640px; margin: 0 auto 22px; }
.prod-head h2 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(28px, 4.4vw, 46px); line-height: 1.12;
  letter-spacing: -0.03em; color: var(--text); margin: 0 0 12px;
}
.prod-head h2 .hl {
  background: linear-gradient(120deg, var(--accent), #14B8A6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.prod-head p {
  font-size: clamp(16px, 2.3vw, 19px); color: var(--text2); line-height: 1.55; margin: 0;
}

.stack {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stack-pager {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.stack-pager::-webkit-scrollbar { display: none; }
.stack-flow.stack-flow-pager {
  flex-direction: row;
  align-items: stretch;
  gap: 12px;
  padding: 4px 10px 6px;
}
.stack-flow-pager::before,
.stack-flow-pager .stack-node { display: none; }
.stack-flow-pager .stack-card {
  flex: 0 0 calc(100% - 36px);
  max-width: 560px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.stack-pager-ui {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 2px;
}
.stack-pager-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}
.stack-pager-dots button {
  appearance: none;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.stack-pager-dots button.is-on {
  width: 22px;
  background: #5EEAD4;
}
.stack-pager-btn {
  appearance: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #5EEAD4;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.stack-pager-btn:disabled {
  opacity: 0.32;
  cursor: default;
}
.stack-pager-hint {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #8B95A8;
  margin: 0 0 6px;
}
.stack-card-feed { margin-top: 2px; }
.stack-flow {
  position: relative;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.stack-flow::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 28px;
  bottom: 28px;
  width: 5px;
  border-radius: 8px;
  background: linear-gradient(180deg, #5EEAD4 0%, #14B8A6 38%, #0F766E 72%, #134E4A 100%);
  box-shadow:
    inset 1px 0 0 rgba(255,255,255,0.55),
    inset -2px 0 0 rgba(15,23,42,0.22),
    4px 0 14px rgba(15,118,110,0.22);
}
.stack-node {
  position: absolute;
  left: -22px;
  top: 26px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #F0FDFA, #14B8A6 42%, #0F766E 100%);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(15,118,110,0.35), inset 0 1px 0 rgba(255,255,255,0.7);
  z-index: 2;
}
.stack-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(15,118,110,0.12);
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 8px 22px rgba(15,23,42,0.05);
}
.stack-card .stack-shots,
.stack-card .stack-feed {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.stack-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: auto;
  padding: 14px 14px 0;
  background: linear-gradient(180deg, #EEF3F1 0%, #F7F9F8 100%);
}
.stack-shots img {
  width: 100%;
  height: auto;
  aspect-ratio: 519 / 1024;
  object-fit: contain;
  object-position: top center;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.06);
  background: #fff;
}
.stack-feed {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  background: linear-gradient(180deg, #EEF3F1 0%, #F7F9F8 100%);
  padding: 12px 0 4px;
}
.stack-feed.is-drag { cursor: grabbing; }
.stack-feed .proof-track {
  align-items: stretch;
  gap: 12px;
  padding: 4px 14px 10px;
}
.stack-feed-item {
  flex: 0 0 min(82%, 300px);
  width: min(82%, 300px);
  flex-shrink: 0;
  margin: 0;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.06);
  overflow: hidden;
}
.stack-feed-item img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}
.stack-feed.is-static {
  overflow-x: auto;
  cursor: default;
  -webkit-overflow-scrolling: touch;
}
.stack-feed.is-static .proof-track { transform: none !important; }
.stack-copy {
  padding: 12px 14px 14px;
  padding-right: 118px;
}
.stack-id {
  margin: 0 0 4px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0F766E;
}
.stack-copy h3 {
  margin: 0 0 4px;
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}
.stack-copy p:last-child {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text2);
}
.stack-tag {
  position: absolute;
  right: 10px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.stack-was {
  font-size: 13px;
  font-weight: 700;
  color: #94A3B8;
  text-decoration: line-through;
  text-decoration-color: #E11D48;
  text-decoration-thickness: 2px;
}
.stack-tag b {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #042F2E;
  background: #5EEAD4;
  padding: 4px 8px;
  border-radius: 999px;
}
.stack-total {
  margin-top: 8px;
  text-align: center;
  padding: 22px 16px 20px;
  border-radius: 18px;
  background: #0F172A;
  color: #fff;
}
.stack-total-kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94A3B8;
}
.stack-total-sum {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(36px, 10vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stack-cut {
  position: relative;
  display: inline-block;
}
.stack-cut::after {
  content: '';
  position: absolute;
  left: -4%;
  top: 52%;
  width: 0;
  height: 4px;
  background: #E11D48;
  border-radius: 2px;
  transform: rotate(-8deg);
  transform-origin: left center;
}
.stack-total.is-cut .stack-cut::after {
  width: 108%;
  transition: width .45s cubic-bezier(.22,1,.36,1);
}
.stack-total-in {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #042F2E;
  background: #5EEAD4;
  padding: 7px 14px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(8px) rotate(-2deg);
}
.stack-total.is-in .stack-total-in {
  opacity: 1;
  transform: translateY(0) rotate(-2deg);
  transition: opacity .35s ease, transform .35s cubic-bezier(.22,1,.36,1);
}
.stack-web {
  max-width: 520px;
  margin: 0 auto 20px;
  padding: 14px 16px;
  text-align: left;
  background: #F0FDFA;
  border: 1px solid rgba(15,118,110,0.18);
  border-radius: 14px;
  font-size: 14.5px !important;
  font-weight: 500 !important;
  color: #334155 !important;
  line-height: 1.55 !important;
}
.stack-web strong { color: #0F766E; font-weight: 800; }
@media (min-width: 720px) {
  .stack-copy { padding: 14px 16px 16px; padding-right: 130px; }
  .stack-copy h3 { font-size: 18px; }
  .stack-copy p:last-child { font-size: 14.5px; line-height: 1.5; }
  .stack-flow { padding-left: 26px; gap: 26px; }
  .stack-flow.stack-flow-pager { padding: 4px 10px 6px; gap: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .stack-total.is-cut .stack-cut::after,
  .stack-total.is-in .stack-total-in { transition: none !important; }
}
.prod-app { max-width: 880px; margin: 0 auto; }
.prod-tabs {
  display: flex; gap: 4px; overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 5px; margin: 0 auto 18px; max-width: 100%;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(15,118,110,0.12);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(15,23,42,0.05);
  scrollbar-width: none;
}
.prod-tabs::-webkit-scrollbar { display: none; }
.prod-tab {
  flex: 1 0 auto;
  appearance: none; border: 0; cursor: pointer;
  min-height: 38px; padding: 7px 12px;
  border-radius: 10px;
  background: transparent;
  color: #475569;
  font-family: var(--font-head, inherit);
  font-size: 12.5px; font-weight: 700; letter-spacing: -0.01em;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.prod-tab:hover { background: #F0F7F5; color: #0F766E; }
.prod-tab.is-on {
  background: #0F766E; color: #fff;
  box-shadow: 0 5px 14px rgba(15,118,110,0.26);
}
.prod-tab:focus-visible { outline: 2px solid #14B8A6; outline-offset: 2px; }

.prod-stage-wrap {
  display: grid;
  gap: 18px;
  align-items: center;
}
.prod-canvas {
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 14px 14px 12px;
  border-radius: 26px;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(15,118,110,0.12), transparent 68%),
    #F6F8F7;
  border: 1px solid rgba(15,118,110,0.10);
  box-shadow: 0 18px 40px rgba(15,23,42,0.07);
}
.prod-window {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #F4F6F8;
  border: 1px solid rgba(15,23,42,0.07);
  box-shadow: 0 10px 24px rgba(15,23,42,0.08);
}
.prod-chrome {
  display: flex; align-items: center; gap: 6px;
  height: 30px; padding: 0 12px;
  background: linear-gradient(180deg, #fff 0%, #F3F6F5 100%);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.prod-chrome span { width: 7px; height: 7px; border-radius: 50%; background: #D1D5DB; }
.prod-chrome span:nth-child(1) { background: #FECACA; }
.prod-chrome span:nth-child(2) { background: #FDE68A; }
.prod-chrome span:nth-child(3) { background: #A7F3D0; }
.prod-chrome b {
  margin-left: 6px;
  font-size: 11px; font-weight: 650; color: #94A3B8;
}

.prod-viewport {
  position: relative;
  aspect-ratio: 392 / 850;
  overflow: hidden;
  background: #EEF2F6;
}
.prod-shot {
  position: absolute; inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity .4s cubic-bezier(.22,1,.36,1), transform .4s cubic-bezier(.22,1,.36,1);
}
.prod-app[data-dir="prev"] .prod-shot { transform: translateX(-18px); }
.prod-shot.is-on {
  opacity: 1;
  transform: none;
  z-index: 1;
}
.prod-shot img,
.prod-clip {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
}
.prod-clip {
  opacity: 0;
  transition: opacity .35s ease;
}
.prod-clip.is-live { opacity: 1; }

.prod-cap { text-align: center; padding: 0 8px; }
.prod-kicker, .prod-cap h3, .prod-lead {
  transition: opacity .22s ease, transform .22s ease;
}
.prod-cap.is-swap .prod-kicker,
.prod-cap.is-swap h3,
.prod-cap.is-swap .prod-lead {
  opacity: 0;
  transform: translateY(6px);
}
.prod-kicker {
  margin: 0 0 6px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: #0F766E;
}
.prod-cap h3 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: clamp(20px, 4.2vw, 28px);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.2; color: var(--text);
}
.prod-lead { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--text2); }
.prod-foot p { line-height: 1.7; }
.prod-foot strong { color: #0F766E; }

@media (min-width: 860px) {
  .prod-head { margin-bottom: 28px; }
  .prod-tabs { width: fit-content; }
  .prod-tab { flex: 0 0 auto; min-width: 108px; }
  .prod-stage-wrap {
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 48px;
    align-items: start;
  }
  .prod-canvas { width: 100%; }
  .prod-cap { text-align: left; padding: 12px 0 0; }
  .prod-cap h3 { font-size: 32px; }
  .prod-lead { font-size: 17px; max-width: 26em; }
}
@media (prefers-reduced-motion: reduce) {
  .prod-shot, .prod-tab, .prod-kicker, .prod-cap h3, .prod-lead { transition: none !important; }
  .prod-shot { transform: none !important; }
}

/* iPhone 15 Pro Frame */
.iphone-frame {
  position: relative;
  width: 260px;
  height: 530px;
  flex-shrink: 0;
  /* Titanium frame effect */
  background: linear-gradient(165deg, #2A2D35 0%, #1C1E24 30%, #111318 100%);
  border-radius: 50px;
  box-shadow:
    /* outer glow */
    0 0 0 1px rgba(255,255,255,0.06),
    /* soft ambient */
    0 4px 8px rgba(0,0,0,0.08),
    /* depth shadow */
    0 20px 40px rgba(11,22,40,0.15),
    0 40px 80px rgba(11,22,40,0.12),
    /* inner highlight top */
    inset 0 1px 0 rgba(255,255,255,0.12),
    /* inner shadow bottom */
    inset 0 -1px 0 rgba(0,0,0,0.3);
  overflow: hidden;
  transition: transform 600ms cubic-bezier(0.32,0.72,0,1), box-shadow 600ms cubic-bezier(0.32,0.72,0,1);
}
.iphone-frame:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 8px 16px rgba(0,0,0,0.1),
    0 32px 60px rgba(15,118,110,0.18),
    0 60px 100px rgba(11,22,40,0.15),
    inset 0 1px 0 rgba(255,255,255,0.14),
    inset 0 -1px 0 rgba(0,0,0,0.3);
}

/* Side buttons */
.iphone-frame::before {
  content: ''; position: absolute; right: -1px; top: 100px;
  width: 3px; height: 32px; border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, #3A3D45 0%, #2A2D35 50%, #3A3D45 100%);
  z-index: 20;
}
.iphone-frame::after {
  content: ''; position: absolute; right: -1px; top: 148px;
  width: 3px; height: 56px; border-radius: 0 2px 2px 0;
  background: linear-gradient(180deg, #3A3D45 0%, #2A2D35 50%, #3A3D45 100%);
  z-index: 20;
}

/* Dynamic Island */
.iphone-dynamic-island {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 34px; background: #000; border-radius: 20px; z-index: 15;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
}
.iphone-dynamic-island::before {
  content: ''; position: absolute; top: 50%; left: 16px; transform: translateY(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle, #1a1a2e 30%, #0d0d15 70%);
  box-shadow: inset 0 0 2px rgba(15,118,110,0.3);
}

/* Screen */
.iphone-screen {
  position: absolute; top: 8px; left: 8px; right: 8px; bottom: 8px;
  border-radius: 42px; overflow: hidden;
  background: #FAFAF8;
  display: flex; flex-direction: column;
}

/* Home Indicator */
.iphone-home-indicator {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 4px; border-radius: 2px;
  background: rgba(0,0,0,0.18); z-index: 15;
}

/* Status Bar */
.iphone-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px 0; font-size: 11px; font-weight: 700;
  color: #1a1a2e; letter-spacing: 0.01em; flex-shrink: 0;
}
.iphone-status-signal { display: flex; gap: 2px; align-items: flex-end; }
.iphone-status-signal span { width: 3px; border-radius: 1px; background: #1a1a2e; }
.iphone-status-signal span:nth-child(1) { height: 4px; }
.iphone-status-signal span:nth-child(2) { height: 6px; }
.iphone-status-signal span:nth-child(3) { height: 8px; }
.iphone-status-signal span:nth-child(4) { height: 5px; opacity: 0.4; }
.iphone-status-icons { display: flex; gap: 4px; align-items: center; }
.iphone-status-icons svg { width: 14px; height: 14px; }

/* App Screen Content */
.app-screen {
  flex: 1; padding: 10px 14px 14px; overflow: hidden;
  display: flex; flex-direction: column; gap: 8px;
}
.app-screen.real-app-screen { display: block; padding: 0; }
.inside-real-shot { display: block; width: 100%; height: 100%; object-fit: contain; object-position: top center; background: #fff; }

/* === HOME SCREEN === */
.app-greeting {
  font-family: var(--font-head); font-weight: 800;
  font-size: 15px; color: #1a1a2e; line-height: 1.2;
}
.app-sub { font-size: 10px; color: #6B7280; margin-top: -2px; }

/* Hydration Ring Card */
.hydration-card {
  background: #fff; border: 1px solid #E8ECEF; border-radius: 16px;
  padding: 14px; box-shadow: 0 1px 3px rgba(11,22,40,0.04);
}
.hydration-ring-row { display: flex; align-items: center; gap: 14px; }
.hydration-ring {
  width: 72px; height: 72px; position: relative; flex-shrink: 0;
}
.hydration-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.hydration-ring-text {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.hydration-ring-pct {
  font-family: var(--font-head); font-weight: 900;
  font-size: 16px; color: #0F766E; line-height: 1;
}
.hydration-ring-ml { font-size: 8px; color: #9CA3AF; margin-top: 2px; }
.hydration-meta-label {
  font-size: 9px; font-weight: 700; color: #9CA3AF;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hydration-meta-value {
  font-family: var(--font-head); font-weight: 800;
  font-size: 14px; color: #1a1a2e; margin-top: 2px;
}

/* CTA Button inside phone */
.app-btn {
  display: block; width: 100%; padding: 11px; border-radius: 14px; border: none;
  background: linear-gradient(135deg, #0F766E, #115E59); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 11px; text-align: center;
  box-shadow: 0 4px 14px rgba(15,118,110,0.3);
  letter-spacing: 0.01em;
}

/* Quick Action Row */
.app-action-row {
  display: flex; align-items: center; gap: 10px; padding: 10px;
  background: #fff; border: 1px solid #E8ECEF; border-radius: 14px;
}
.app-action-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  background: linear-gradient(135deg, #E8F5F1, #D1EDE5);
}
.app-action-name { font-size: 11px; font-weight: 700; color: #1a1a2e; line-height: 1.2; }
.app-action-meta { font-size: 9px; color: #9CA3AF; margin-top: 1px; }
.app-action-badge {
  margin-left: auto; font-size: 8px; font-weight: 700; padding: 3px 8px;
  border-radius: 100px; background: rgba(15,118,110,0.08); color: #0F766E; white-space: nowrap;
}

/* Bottom Nav */
.app-nav {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 3px;
  margin-top: auto; padding-top: 6px; flex-shrink: 0;
}
.app-nav span {
  text-align: center; font-size: 8px; font-weight: 600; color: #9CA3AF;
  background: #fff; border: 1px solid #E8ECEF; border-radius: 10px; padding: 6px 2px;
  display: flex; flex-direction: column; align-items: center; gap: 1px;
}
.app-nav span svg { width: 13px; height: 13px; stroke-width: 1.8; }
.app-nav span.active { background: #0F766E; color: #fff; border-color: #0F766E; }
.app-nav span.active svg { stroke: #fff; }

/* === CALCULATOR SCREEN === */
.calc-field label {
  display: block; font-size: 9px; font-weight: 700; color: #6B7280; margin-bottom: 4px;
}
.calc-input {
  width: 100%; padding: 10px 12px; border-radius: 12px; border: 1px solid #E8ECEF;
  background: #fff; font-size: 13px; font-weight: 700; color: #1a1a2e;
  font-family: var(--font-head);
}
.calc-pills { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 4px; }
.calc-pill {
  font-size: 9px; font-weight: 600; padding: 5px 10px; border-radius: 100px;
  background: #fff; border: 1px solid #E8ECEF; color: #6B7280;
  transition: all 200ms ease;
}
.calc-pill.active { background: #0F766E; color: #fff; border-color: #0F766E; }
.calc-result-card {
  border: 1px solid rgba(15,118,110,0.2); background: #F0FAF8; border-radius: 14px; padding: 14px;
}
.calc-result-label {
  font-size: 9px; font-weight: 700; color: #9CA3AF;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.calc-result-value {
  font-family: var(--font-head); font-weight: 900; font-size: 30px;
  color: #0F766E; margin: 4px 0; line-height: 1;
}
.calc-result-desc { font-size: 10px; color: #6B7280; }

/* === RECIPES SCREEN === */
.recipe-card {
  display: flex; align-items: center; gap: 10px; padding: 10px;
  background: #fff; border: 1px solid #E8ECEF; border-radius: 14px;
  transition: transform 300ms cubic-bezier(0.32,0.72,0,1);
}
.recipe-card:hover { transform: translateX(4px); }
.recipe-img {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: linear-gradient(135deg, #FEF3C7, #FDE68A);
}
.recipe-name { font-size: 11px; font-weight: 700; color: #1a1a2e; line-height: 1.2; }
.recipe-meta { font-size: 9px; color: #9CA3AF; margin-top: 1px; }
.recipe-tag {
  margin-left: auto; font-size: 8px; font-weight: 700; padding: 3px 8px;
  border-radius: 100px; background: rgba(15,118,110,0.08); color: #0F766E; white-space: nowrap;
}
.recipe-tag.water {
  background: rgba(59,130,246,0.08); color: #3B82F6;
}

/* === METHOD SCREEN === */
.method-card {
  background: #fff; border: 1px solid #E8ECEF; border-radius: 14px; padding: 12px;
}
.method-card.completed { opacity: 0.5; }
.method-week {
  font-family: var(--font-head); font-weight: 800; font-size: 11px; color: #0F766E;
}
.method-goal { font-size: 9px; color: #6B7280; margin: 2px 0 8px; }
.method-progress {
  height: 5px; border-radius: 3px; background: #E8ECEF; overflow: hidden;
}
.method-progress-bar {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, #0F766E, #14B8A6);
  transition: width 800ms cubic-bezier(0.32,0.72,0,1);
}
.method-check {
  display: flex; align-items: center; gap: 6px; font-size: 9px; color: #6B7280; margin-top: 6px;
}
.method-check-dot {
  width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid #D1D5DB;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 8px; flex-shrink: 0; color: transparent;
}
.method-check-dot.done {
  background: #0F766E; border-color: #0F766E; color: #fff;
}

/* === COMMUNITY SCREEN === */
.community-post {
  background: #fff; border: 1px solid #E8ECEF; border-radius: 14px; padding: 12px;
}
.community-avatar-row { display: flex; align-items: center; gap: 8px; }
.community-avatar {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #0F766E, #14B8A6); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}
.community-avatar.orange { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.community-avatar.purple { background: linear-gradient(135deg, #8B5CF6, #6366F1); }
.community-name { font-size: 11px; font-weight: 800; color: #1a1a2e; }
.community-name-meta { font-weight: 400; color: #9CA3AF; font-size: 9px; }
.community-level {
  margin-left: auto; font-size: 8px; font-weight: 700; padding: 2px 7px;
  border-radius: 100px; background: rgba(15,118,110,0.08); color: #0F766E;
}
.community-text { font-size: 10px; color: #4B5563; line-height: 1.5; margin-top: 8px; }
.community-actions { display: flex; gap: 14px; margin-top: 8px; }
.community-action {
  display: flex; align-items: center; gap: 4px;
  font-size: 9px; color: #9CA3AF;
}
.community-action svg { width: 12px; height: 12px; }

/* Caption under phone */
.inside-caption { text-align: center; max-width: 220px; margin-top: 20px; }
.inside-caption strong {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 15px; color: #1a1a2e; line-height: 1.3; margin-bottom: 4px;
}
.inside-caption span { font-size: 12px; color: #6B7280; line-height: 1.5; }

/* === LAYOUT === */
.inside-grid {
  display: flex; gap: 36px; justify-content: center; flex-wrap: wrap;
  padding: 0 20px;
}
.inside-phone-wrap {
  display: flex; flex-direction: column; align-items: center;
}
.inside-phone-wrap.reveal {
  opacity: 1; transform: translateY(0);
}
/* Staggered heights for visual rhythm */
.inside-phone-wrap:nth-child(1) { margin-top: 0; }
.inside-phone-wrap:nth-child(2) { margin-top: 40px; }
.inside-phone-wrap:nth-child(3) { margin-top: 0; }
.inside-phone-wrap:nth-child(4) { margin-top: 40px; }
.inside-phone-wrap:nth-child(5) { margin-top: 0; }

/* Dots (mobile only) */
.inside-dots { display: none; justify-content: center; gap: 7px; margin: 24px 0 8px; }
.inside-dots button {
  width: 7px; height: 7px; border-radius: 100px; border: none; padding: 0;
  background: rgba(15,118,110,0.18); cursor: pointer;
  transition: all 300ms cubic-bezier(0.32,0.72,0,1);
}
.inside-dots button.active { width: 24px; background: #0F766E; }

/* Footer CTA */
.inside-foot { text-align: center; max-width: 560px; margin: 48px auto 0; }
.inside-foot p { font-size: 15px; color: #6B7280; line-height: 1.7; margin: 0 0 22px; }
.inside-foot .btn-primary { font-size: 15px; padding: 15px 28px; }

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .inside-grid { gap: 28px; }
  .inside-phone-wrap:nth-child(2),
  .inside-phone-wrap:nth-child(4) { margin-top: 24px; }
}
@media (max-width: 900px) {
  .inside-grid {
    flex-wrap: wrap; overflow-x: visible;
    padding: 20px 24px 28px; gap: 32px; justify-content: center;
  }
  .inside-phone-wrap {
    flex: 0 0 auto; width: 260px;
    margin-top: 0 !important;
  }
  .inside-dots { display: none; }
  .iphone-frame { width: 240px; height: 494px; }
  .iphone-screen { border-radius: 38px; }
  .iphone-dynamic-island { width: 100px; height: 28px; top: 14px; }
  .inside-section { padding: 72px 0 64px; }
}
@media (max-width: 640px) {
  .inside-grid {
    flex-direction: column; align-items: center;
    gap: 40px; padding: 16px 16px 24px;
  }
  .inside-phone-wrap { width: 100%; }
  .iphone-frame { width: 220px; height: 456px; border-radius: 44px; }
  .iphone-screen { border-radius: 36px; top: 7px; left: 7px; right: 7px; bottom: 7px; }
  .iphone-dynamic-island { width: 90px; height: 26px; top: 11px; }
  .inside-head { margin-bottom: 36px; }
  .inside-caption { max-width: 260px; }
}

    /* ============ FAQ ============ */
    .faq { background: var(--bg2); }
    .faq-list {
      max-width: 700px; margin: 44px auto 0;
      display: flex; flex-direction: column; gap: 12px;
    }
    .faq-item {
      background: var(--card); border: 1px solid var(--border); border-radius: 16px;
      overflow: hidden; transition: border-color 280ms var(--ease-out);
    }
    .faq-item:hover { border-color: var(--accent-border); }
    .faq-item.active { border-color: var(--accent); }
    .faq-question {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 24px; cursor: pointer; gap: 16px;
      background: none; border: none; width: 100%; text-align: left;
      font-family: var(--font-head); font-weight: 700; font-size: 16px;
      color: var(--text); line-height: 1.4;
    }
    .faq-question:hover { color: var(--accent); }
    .faq-icon {
      width: 28px; height: 28px; min-width: 28px; border-radius: 8px;
      background: rgba(15,118,110,0.08); display: flex; align-items: center; justify-content: center;
      transition: all 300ms ease;
    }
    .faq-item.active .faq-icon { background: var(--accent); transform: rotate(45deg); }
    .faq-icon svg { width: 16px; height: 16px; color: var(--accent); }
    .faq-item.active .faq-icon svg { color: #fff; }
    .faq-answer {
      max-height: 0; overflow: hidden; transition: max-height 400ms ease, padding 400ms ease;
    }
    .faq-item.active .faq-answer { max-height: 600px; }
    .faq-answer-inner {
      padding: 0 24px 20px; color: var(--text2); font-size: 15px; line-height: 1.75;
    }
    .faq-answer-inner strong { color: var(--text); font-weight: 700; }
    .faq-cta {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 14px; padding: 10px 20px; border-radius: 10px;
      background: linear-gradient(135deg, var(--accent), #115E59);
      color: #fff; font-size: 13px; font-weight: 700; text-decoration: none;
      transition: all 200ms ease;
    }
    .faq-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(26,45,90,0.3); }
    .faq-cta svg { width: 14px; height: 14px; }
    @media (max-width: 640px) {
      .faq-question { font-size: 15px; padding: 18px 20px; }
      .faq-answer-inner { padding: 0 20px 18px; font-size: 14.5px; }
    }

    /* ============ Final CTA ============ */
    .final { text-align: center; position: relative; overflow: hidden; }
    .final::before {
      content: '';
      position: absolute;
      top: -40px; left: 50%; transform: translateX(-50%);
      width: min(500px, 100vw); height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(26,45,90,0.06), rgba(20,184,166),0.04) 40%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    .final h2 {
      font-family: var(--font-head); font-weight: 800;
      font-size: clamp(30px, 4.2vw, 46px); line-height: 1.14;
      max-width: 740px; margin: 0 auto 20px; position: relative; z-index: 1;
    }
    .final h2 .hl {
      background: linear-gradient(135deg, var(--accent), var(--lilac));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .final p.sub { color: var(--text2); font-size: 17px; max-width: 580px; margin: 0 auto 40px; line-height: 1.7; position: relative; z-index: 1; }
    .final-recap {
      display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
      margin-top: 44px; font-size: 14px; color: var(--text2); position: relative; z-index: 1;
    }
    .final-recap .item { display: flex; align-items: center; gap: 7px; }
    .final-recap .item svg { width: 15px; height: 15px; color: var(--accent); }

    /* ============ Footer ============ */
    .footer { border-top: 1px solid var(--border); padding: 48px 0 130px; text-align: center; background: var(--bg); }
    .footer .logo { justify-content: center; margin-bottom: 16px; }
    .logo-mark { color: #1B2B4A; font-size: 22px; }
    .logo-name {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 22px;
      letter-spacing: -0.03em;
      color: #0F766E;
    }
    .footer p { font-size: 13px; color: var(--text3); line-height: 1.7; max-width: 640px; margin: 0 auto; }
    .footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 18px; }
    .footer-links a { color: var(--text2); font-size: 13.5px; text-decoration: none; transition: color 200ms; }
    .footer-links a:hover { color: var(--accent); }

    /* ============================================================
       PHONE MOCKUPS — Premium 3D
    ============================================================ */
    .phone-scene {
      position: relative;
      margin: 32px auto 0;
      width: min(340px, 85vw);
      overflow: hidden;
    }
    .phone-scene.small { width: min(260px, 72vw); margin-top: 0; }
    .phone-glow {
      position: absolute; inset: 0; z-index: 0; border-radius: 48px;
      background: radial-gradient(50% 50% at 50% 38%, rgba(20,184,166),0.4), rgba(20,184,166),0.1) 60%, transparent 75%);
      filter: blur(20px);
    }
    .phone {
      position: relative; z-index: 1;
      background: linear-gradient(165deg, #1E2D52, #1F2937);
      border-radius: 44px; padding: 10px;
      box-shadow:
        0 40px 80px -20px rgba(11,22,38,0.6),
        0 12px 32px rgba(26,45,90,0.25),
        inset 0 0 0 1.5px rgba(255,255,255,0.08),
        inset 0 1px 0 rgba(255,255,255,0.05);
      transition: box-shadow 300ms ease;
    }
    .phone-screen {
      position: relative; border-radius: 35px; overflow: hidden;
      aspect-ratio: 9 / 19.5; background: #FFFFFF;
      box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
      opacity: 1; min-height: 200px;
    }
    .phone-screen img {
      display: block; width: 100%; height: auto; margin: 0;
      opacity: 1;
    }
    .phone-notch {
      position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
      width: 100px; height: 24px; background: #1F2937; border-radius: 14px; z-index: 2;
    }
    .phone-scene.small .phone-notch { width: 84px; height: 20px; }
    .phone-caption {
      margin-top: 20px; text-align: center;
      font-size: 14px; color: var(--text2); font-weight: 500; line-height: 1.6;
    }
    .phone-caption strong { color: var(--text); font-weight: 700; }
    .phone-duo {
      display: flex; justify-content: center; align-items: flex-start; flex-wrap: wrap;
      gap: clamp(28px, 7vw, 72px); margin-top: 56px;
    }
    .phone-duo .phone-scene { margin-top: 0; }



    /* ============ Reveal on scroll ============ */
    html { scroll-behavior: smooth; }
    .reveal { opacity: 1; transform: none; }
    html.js .reveal {
      opacity: 1;
      transform: none;
    }
    html.js .reveal.in { opacity: 1; transform: translateY(0); }
    html.js .testimonial-img, html.js .who img { opacity: 1 !important; transform: none !important; }
    html.js .testimonial.reveal { opacity: 1 !important; transform: none !important; }
    .reveal-delay-1 { transition-delay: 100ms; }
    .reveal-delay-2 { transition-delay: 200ms; }
    .reveal-delay-3 { transition-delay: 300ms; }
    .reveal-delay-4 { transition-delay: 400ms; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
      html { scroll-behavior: auto; }
      .reveal { opacity: 1; transform: none; transition: none; }
    }
    @media (max-width: 768px) {
      .consequence-card, .cost-bad, .cost-good, .method-step, .offer-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
      }
    }

    /* ============ Responsive: Tablets Landscape ============ */
    @media (min-width: 769px) and (max-width: 1024px) {
      .container, .container-narrow { padding: 0 32px; }
      section { padding: 72px 0; }
      .hero { padding: 72px 0 56px; }
    }

    /* ============ Responsive: Tablets Portrait / Large Phones ============ */
    @media (max-width: 768px) {
      section { padding: 56px 0; }
      .hero { padding: 56px 0 40px; }
      .method-step { flex-direction: column; align-items: flex-start; gap: 16px; }
      .step-num { width: 52px; height: 52px; font-size: 22px; }
      .guarantee-card { padding: 36px 28px; justify-content: center; text-align: center; flex-direction: column; }
      .offer-body { padding: 32px 24px; }
      .footer { padding: 40px 0 90px; }
      body { padding-bottom: 0; }
      .pain-card, .content-card, .vision-card, .bonus-card { padding: 26px 22px; }
      .content-card { flex-direction: column; }
      .offer-item { gap: 10px; padding: 16px 16px; }
      .offer-item .lbl { font-size: 13.5px; }
      .price-current { font-size: clamp(44px, 12vw, 60px); }
      .hero-chips .chip { font-size: 12px; padding: 8px 14px; }
      .rating-bar { padding: 16px 18px; justify-content: center; text-align: center; }
      .phone-screen { aspect-ratio: 9 / 19.5; }
    }

    /* ============ Responsive: Small Phones ============ */
    @media (max-width: 480px) {
      .container { padding: 0 16px; }
      .container-narrow { padding: 0 16px; }
      section { padding: 48px 0; }
      .hero { padding: 52px 0 36px; }
      .hero h1 { font-size: 24px; }
      .hero-sub { font-size: 15px; }
      .btn-primary { padding: 16px 36px; font-size: 16px; }
      .section-title { font-size: 26px; }
      .section-sub { font-size: 15px; }
      .rating-num { font-size: 18px; }
      .guarantee-card { padding: 28px 20px; }
      .offer-body { padding: 26px 18px; }
      .objection { padding: 28px 20px; }
      .dash-card { padding: 18px; }
      .final h2 { font-size: 26px; }
      .final p.sub { font-size: 15px; }
      .phone-duo { gap: 28px; }
      .phone-scene { width: min(290px, 82vw); }
      .phone-scene.small { width: min(220px, 68vw); }
      .offer .phone-scene { width: min(260px, 74vw); }
      .phone-screen { aspect-ratio: 9 / 19.5; }
      .price-current { font-size: clamp(40px, 13vw, 52px); }
      .content-card { flex-direction: column; gap: 14px; }
      .guarantee-card { flex-direction: column; text-align: center; gap: 24px; }
      .footer { padding: 36px 0 80px; }
      .social-summary { gap: 32px; }
    }
    .hero-sub, .hero-content .hero-sub { color: var(--text) !important; }

    /* ===== REDESIGN PREMIUM — bandas de contraste + tipografia grande ===== */
    .section-title {
      font-weight: 900 !important;
      letter-spacing: -0.03em !important;
      line-height: 1.04 !important;
      font-size: clamp(32px, 6vw, 60px) !important;
    }
    .premium-pain-section { background: #EFEAE4 !important; }
    .premium-transition-section { background: #F7F4EF !important; }
    .method { background: #FFFFFF !important; }
    .inside-section { background: #1B2B4A !important; }
    .social { background: #F7F4EF !important; }
    .qualify-section { background: #FFFFFF !important; }
    .obj-section { background: #F7F4EF !important; }
    .offer { background: #FFFFFF !important; }
    .who { background: #F7F4EF !important; }
    .vs-sache { background: #EFEAE4 !important; }
    .faq { background: #F7F4EF !important; }
    .final-urgency { background: #1B2B4A !important; }
      .premium-pain-section, .premium-transition-section,
    .method, .inside-section, .social, .qualify-section, .obj-section,
    .offer, .who, .vs-sache, .faq, .final-urgency {
      padding-top: 108px !important; padding-bottom: 108px !important;
    }
    .obj-tag { width: 60px; height: 60px; border-radius: 18px; font-size: 22px; }
    .step-num { width: 72px; height: 72px; font-size: 30px; }
    .premium-pain-card, .premium-transition-card {
      border-radius: var(--radius-lg) !important;
    }
    @media (max-width: 640px) {
      .section-title { font-size: clamp(28px, 8vw, 38px) !important; }
      .obj-tag { width: 48px; height: 48px; font-size: 17px; border-radius: 14px; }
      .step-num { width: 56px; height: 56px; font-size: 24px; }
    .premium-pain-section, .premium-transition-section,
      .method, .inside-section, .social, .qualify-section, .obj-section,
      .offer, .who, .vs-sache, .faq, .final-urgency {
        padding-top: 72px !important; padding-bottom: 72px !important;
      }
    }
.qualify-head { text-align:center; max-width:660px; margin:0 auto 36px; }
    .qualify-head .qualify-title { font-family:var(--font-head); font-weight:900; font-size:clamp(26px,3.5vw,36px); line-height:1.15; letter-spacing:-0.02em; color:var(--text); margin:10px 0 0; }
    .qualify-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; max-width:1000px; margin:0 auto; align-items:start; }
    .qualify-card { background:#FFFFFF; border:1px solid var(--border); border-radius:20px; padding:26px 24px; box-shadow:var(--shadow-sm); position:relative; overflow:hidden; }
    .qualify-yes { border-color:rgba(15,118,110,0.18); }
    .qualify-yes::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,#0F766E,#22B8A6); }
    .qualify-no { background:#FCF8F8; border-color:rgba(217,68,82,0.18); }
    .qualify-no::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,#D94452,#E8828C); }
    .qualify-card-head { display:flex; align-items:center; gap:12px; margin-bottom:18px; }
    .qualify-badge { width:34px; height:34px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-weight:900; font-size:18px; flex:0 0 34px; }
    .qualify-badge.yes { background:rgba(15,118,110,0.12); color:var(--accent); }
    .qualify-badge.no { background:rgba(217,68,82,0.12); color:#D94452; }
    .qualify-card-head h3 { font-family:var(--font-head); font-weight:800; font-size:19px; line-height:1.2; color:var(--text); margin:0; }
    .qualify-no .qualify-card-head h3 { color:#9F3C46; }
    .qualify-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
    .qualify-yes .qualify-list { display:grid; grid-template-columns:1fr 1fr; gap:10px 16px; }
    .qualify-list li { display:flex; align-items:flex-start; gap:10px; font-size:15px; line-height:1.5; color:var(--text2); }
    .qualify-list li::before { content:'✓'; width:20px; height:20px; flex:0 0 20px; display:flex; align-items:center; justify-content:center; border-radius:50%; background:rgba(15,118,110,0.1); color:var(--accent); font-weight:900; font-size:12px; margin-top:1px; }
    .qualify-no .qualify-list li::before { content:'×'; background:rgba(217,68,82,0.1); color:#D94452; }
    @media (max-width: 720px) {
      .qualify-grid { grid-template-columns:1fr; }
      .qualify-head { margin-bottom:28px; }
      .qualify-yes .qualify-list { grid-template-columns:1fr; }
      .qualify-card { padding:24px 20px; }
    }
.obj-section .obj-head { max-width: 620px; margin-bottom: 28px; }
  .obj-section .obj-head h2 { font-size: clamp(26px, 3.5vw, 36px); }
  .obj-section .obj-head p { font-size: 14px; line-height: 1.55; }
  .obj-section .obj-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 900px; }
  .obj-section .obj-card { grid-template-columns: auto 1fr; gap: 14px; padding: 18px 20px; border-radius: 14px; box-shadow: 0 5px 18px rgba(11,22,40,0.045); }
  .obj-section .obj-card:last-child { grid-column: 1 / -1; }
  .obj-section .obj-tag { width: 36px; height: 36px; border-radius: 11px; font-size: 12px; }
  .obj-section .obj-body .obj-q { font-size: 15px; line-height: 1.3; margin-bottom: 6px; }
  .obj-section .obj-body .obj-a { font-size: 13.5px; line-height: 1.52; }
  @media (max-width: 640px) {
    .obj-section .obj-head { margin-bottom: 22px; }
    .obj-section .obj-head h2 { font-size: 25px; }
    .obj-section .obj-head p { font-size: 13.5px; }
    .obj-section .obj-list { grid-template-columns: 1fr; gap: 10px; }
    .obj-section .obj-card, .obj-section .obj-card:last-child { grid-column: auto; grid-template-columns: 32px 1fr; gap: 10px; padding: 14px; border-radius: 13px; }
    .obj-section .obj-tag { width: 32px; height: 32px; border-radius: 9px; font-size: 11px; }
    .obj-section .obj-body .obj-q { font-size: 14px; line-height: 1.35; margin-bottom: 5px; }
    .obj-section .obj-body .obj-a { font-size: 13px; line-height: 1.48; }
  }
@media (max-width: 820px) {
      .vs-sache .vs-grid { grid-template-columns: 1fr !important; }
      .who-wrap { flex-direction: column-reverse !important; align-items: center !important; text-align: center; }
    }
/* === Urgency Section v2 — Direct Response Optimized === */
.final-urgency {
  background: linear-gradient(180deg, #F4F7F5 0%, #EEF3F1 100%);
  padding: 56px 20px;
  position: relative;
  overflow: hidden;
}
.urgency-glow-1 {
  position: absolute;
  top: -120px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,118,110,0.10), transparent 60%);
  pointer-events: none;
}
.urgency-glow-2 {
  position: absolute;
  bottom: -100px; left: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,155,138,0.10), transparent 55%);
  pointer-events: none;
}
.urgency-container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,68,82,0.10);
  border: 1px solid rgba(217,68,82,0.28);
  color: #D94452;
  font-size: 11px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.urgency-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #D94452;
  animation: urgency-pulse 1.5s ease-in-out infinite;
}
@keyframes urgency-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}
.urgency-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 5vw, 30px);
  color: #0F172A;
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.urgency-highlight {
  color: #14B8A6;
}
.urgency-sub {
  font-size: 18px;
  color: var(--text2);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.65;
}
.urgency-sub strong { color: var(--accent); font-weight: 800; font-size: 22px; }

/* Urgency Checklist */
.urgency-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 280px;
  margin: 0 auto 24px;
  text-align: left;
}
.urgency-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}
.urgency-check-item svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: #2D8A56;
}

/* Urgency Social Text */
.urgency-social-text {
  font-size: 15px;
  color: var(--text2);
  margin-bottom: 28px;
}
.urgency-social-text strong { color: #0F172A; font-weight: 700; }

.urgency-offer-box {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px 24px;
  max-width: 400px;
  margin: 0 auto 24px;
}
.urgency-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 4px;
}
.urgency-old-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.urgency-old-label {
  font-size: 11px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}
.urgency-old-value {
  font-size: 20px;
  color: var(--text3);
  text-decoration: line-through;
  font-weight: 600;
}
.urgency-current-price {
  display: flex;
  align-items: flex-start;
  color: #0F172A;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  line-height: 1;
}
.urgency-currency {
  font-size: 24px;
  margin-top: 6px;
  margin-right: 2px;
}
.urgency-amount {
  font-size: 56px;
  letter-spacing: -0.03em;
}
.urgency-installment {
  font-size: 13px;
  color: var(--text3);
  margin-bottom: 20px;
}
.urgency-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #0F766E 0%, #115E59 100%);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 200ms ease;
  box-shadow: 0 4px 16px rgba(15,118,110,0.30);
  text-align: center;
}
.urgency-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(15,118,110,0.40);
}
.urgency-cta:active {
  transform: scale(0.98);
}
.urgency-cta-arrow {
  transition: transform 150ms ease;
}
.urgency-cta:hover .urgency-cta-arrow {
  transform: translateX(3px);
}
.urgency-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text3);
}
.urgency-guarantee svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* WhatsApp Link */
.urgency-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text2);
  font-size: 14px;
  text-decoration: none;
  transition: color 200ms ease;
  margin-top: 8px;
}
.urgency-whatsapp:hover { color: #25D366; }
.urgency-whatsapp svg { width: 20px; height: 20px; }

/* Mobile-first responsive */
@media (min-width: 640px) {
  .final-urgency { padding: 72px 24px; }
  .urgency-offer-box { padding: 36px 32px 28px; }
}
@media (max-width: 380px) {
  .urgency-amount { font-size: 48px; }
  .urgency-currency { font-size: 20px; margin-top: 4px; }
  .urgency-old-value { font-size: 18px; }
  .urgency-cta { font-size: 15px; padding: 15px 24px; }
}

/* ==========================================================================
   COMPACTACAO DE LAYOUT — direct response
   Objetivo: reduzir a altura da pagina e antecipar a oferta, sem alterar
   nenhuma copy. Este bloco fica no fim do arquivo de proposito: ele precisa
   vencer as regras !important declaradas acima.
   ========================================================================== */

/* --- Escala de espacamento -------------------------------------------------
   Substitui o padding de 108px/72px por secao. Eram ~2.400px de espaco vazio
   no desktop antes de qualquer conteudo existir. */
.premium-pain-section, .premium-transition-section, .method, .inside-section,
.social, .qualify-section, .obj-section, .offer, .who, .vs-sache, .faq,
.final-urgency {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.hero { padding-top: 40px !important; padding-bottom: 32px !important; }
.footer { padding-top: 32px !important; }

@media (max-width: 640px) {
  .premium-pain-section, .premium-transition-section, .method, .inside-section,
  .social, .qualify-section, .obj-section, .offer, .who, .vs-sache, .faq,
  .final-urgency {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  .hero { padding-top: 20px !important; padding-bottom: 24px !important; }
}

/* Cabecalhos de secao: o respiro entre titulo e conteudo somava mais que o
   proprio conteudo em varias secoes. */
.premium-pain-header { margin-bottom: 28px !important; }
.inside-head { margin-bottom: 32px !important; }
.method-grid { margin-top: 28px !important; }
.faq-list { margin-top: 28px !important; }
.qualify-head { margin-bottom: 26px !important; }
.obj-head { margin-bottom: 22px !important; }
.inside-foot { margin-top: 28px !important; }

/* --- Cards de dor: coluna única (copy original) --------------------------- */
.premium-pain-cards {
  display: flex !important;
  flex-direction: column;
  gap: 12px;
  max-width: 600px !important;
}
.premium-pain-card { align-items: center; }
.premium-pain-bottom { margin-top: 22px !important; padding: 16px 24px !important; }

/* --- Transicao: era uma secao inteira para 3 paragrafos ------------------- */
.premium-transition-card { padding: 30px 32px !important; }
.premium-transition-text { margin-bottom: 12px !important; }

/* --- Metodo: palco visual (1 acento teal), scan em 3s --------------------
   Estrutura tipo Jeff (01/02/03 + demo viva + caption curta), paleta Felinus.
   3 colunas so funcionam porque o card e 70% prova visual, nao muro de texto. */
.method-title {
  max-width: 18em;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.method-hl { color: #0F766E; }
.method-grid {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 14px !important;
  max-width: 1080px;
  margin: 28px auto 0 !important;
}
.fel-step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 16px 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15, 118, 110, 0.12);
}
.fel-step-head { display: flex; align-items: flex-start; gap: 10px; }
.fel-step-num {
  flex-shrink: 0;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: #0F766E;
  color: #fff;
  font-family: var(--font-head, inherit);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.fel-step-head h3 {
  font-family: var(--font-head, inherit);
  font-size: clamp(17px, 3.4vw, 20px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #1B2B4A;
  margin: 0 !important;
}
.fel-stage {
  position: relative;
  min-height: 148px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: #1B2B4A;
  color: #ECFDF8;
  overflow: hidden;
}
.fel-stage--calc { min-height: 0; }
.fel-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
  margin-bottom: 12px;
}
.fel-calc-wide { grid-column: 1 / -1; }
.fel-calc-k {
  margin: 0 0 5px !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5EEAD4 !important;
  line-height: 1.2 !important;
}
.fel-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 0; }
.fel-chips span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(236,253,248,0.55);
}
.fel-step.is-live .fel-chips span.on {
  color: #042F2E;
  background: #5EEAD4;
}
.fel-stage-label {
  font-size: 11px !important;
  color: #99F6E4 !important;
  margin: 0 0 8px !important;
  font-weight: 600;
  line-height: 1.3 !important;
}
.fel-ml-unit {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5EEAD4;
  margin-bottom: 8px;
}
.fel-ml-bar, .fel-goal-bar {
  height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
.fel-ml-bar i, .fel-goal-bar i {
  display: block;
  height: 100%;
  width: 18%;
  border-radius: 99px;
  background: #5EEAD4;
}
.fel-step.is-live .fel-ml-bar i { animation: fel-fill 1.5s cubic-bezier(0.23,1,0.32,1) forwards; }
.fel-step.is-live .fel-goal-bar i { animation: fel-fill 1.7s 0.15s cubic-bezier(0.23,1,0.32,1) forwards; }
@keyframes fel-fill { from { width: 14%; } to { width: 82%; } }
.fel-stage-status {
  margin: 10px 0 0 !important;
  font-size: 11px !important;
  color: rgba(236,253,248,0.7) !important;
  line-height: 1.3 !important;
  min-height: 1.3em;
  position: relative;
}
.fel-status-done { display: none; color: #5EEAD4 !important; font-weight: 800; }
.fel-step.is-live .fel-status-wait { display: none; }
.fel-step.is-live .fel-status-done { display: inline; }
.fel-feed { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.fel-feed li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  font-size: 13px;
  font-weight: 600;
  color: rgba(236,253,248,0.55);
}
.fel-step.is-live .fel-feed li:nth-child(1) { animation: fel-on 4.8s 0s infinite; }
.fel-step.is-live .fel-feed li:nth-child(2) { animation: fel-on 4.8s 1.2s infinite; }
.fel-step.is-live .fel-feed li:nth-child(3) { animation: fel-on 4.8s 2.4s infinite; }
.fel-step.is-live .fel-feed li:nth-child(4) { animation: fel-on 4.8s 3.6s infinite; }
@keyframes fel-on {
  0%, 18% { color: #042F2E; background: #5EEAD4; }
  22%, 100% { color: rgba(236,253,248,0.55); background: rgba(255,255,255,0.06); }
}
.fel-checks { list-style: none; margin: 12px 0 0; padding: 0; }
.fel-checks li {
  font-size: 12px;
  color: rgba(236,253,248,0.45);
  padding: 4px 0 4px 18px;
  position: relative;
}
.fel-checks li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.fel-step.is-live .fel-checks li.done { color: #ECFDF8; }
.fel-step.is-live .fel-checks li.done::before { background: #5EEAD4; }
.fel-scan {
  font-size: 15px !important;
  line-height: 1.45 !important;
  color: #1B2B4A !important;
  margin: 0 !important;
  font-weight: 600;
}
.fel-scan strong { color: #0F766E; font-weight: 800; }
.fel-body {
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: #64748B !important;
  margin: 0 !important;
}
.fel-step--result {
  background: #0F766E;
  border-color: #0F766E;
  padding: 22px 20px;
}
.fel-step--result h3 {
  font-family: var(--font-head, inherit);
  color: #fff;
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 800;
  margin: 0 0 8px;
}
.fel-step--result p {
  color: rgba(255,255,255,0.92);
  font-size: clamp(15px, 3.4vw, 17px);
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
}
.method-cta-area { margin-top: 28px !important; }

@media (min-width: 900px) {
  .method-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px !important;
    align-items: stretch;
  }
  .fel-step--result { grid-column: 1 / -1; }
  .fel-step { padding: 20px 18px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .fel-ml-bar i, .fel-goal-bar i { width: 82%; animation: none !important; }
  .fel-feed li, .fel-stage-status { animation: none !important; }
  .fel-feed li:nth-child(2) { color: #042F2E; background: #5EEAD4; }
}

/* --- App por dentro: cards coloridos, um por tela -------------------------
   Leitura primeiro (titulo + texto), aparelho reto (sem 3D), cor propria
   por funcao. Padrao de feature-row de LP (Apple/Calm): um recinto por ideia. */
.inside-tour {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 880px;
  margin: 0 auto;
  padding: 4px 8px 0;
}
.inside-card {
  --card-bg: #EEF5F3;
  --card-accent: #0F766E;
  --card-ink: #0F172A;
  --card-muted: #334155;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "copy" "device";
  align-items: center;
  gap: 8px 28px;
  padding: 22px 18px 24px;
  border-radius: 28px;
  background: var(--card-bg);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-left: 5px solid var(--card-accent);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}
.inside-card--home { --card-bg: #E7F3F0; --card-accent: #0F766E; }
.inside-card--receitas { --card-bg: #F8EFE4; --card-accent: #B45309; }
.inside-card--quiz { --card-bg: #F3EEF8; --card-accent: #7C3AED; }
.inside-card--metodo { --card-bg: #E8EEF6; --card-accent: #1E3A5F; }
.inside-card--comunidade { --card-bg: #F8EEEF; --card-accent: #BE185D; }

.inside-card-copy { grid-area: copy; padding: 4px 8px 0; }
.inside-device { grid-area: device; position: relative; display: flex; justify-content: center; padding: 8px 8px 20px; }

.inside-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 26px;
  padding: 0 10px;
  margin-bottom: 12px;
  border-radius: 100px;
  background: var(--card-accent);
  color: #fff;
  font-family: var(--font-head, inherit);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.inside-caption {
  text-align: left !important;
  max-width: none !important;
  margin-top: 0 !important;
}
.inside-caption strong {
  display: block;
  font-family: var(--font-head, inherit);
  font-size: clamp(20px, 4.4vw, 28px) !important;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--card-ink);
  margin-bottom: 10px !important;
}
.inside-caption span {
  display: block;
  font-size: clamp(15px, 3.4vw, 17px) !important;
  line-height: 1.65 !important;
  color: var(--card-muted);
  font-weight: 500;
  max-width: 38em;
}

.inside-tour .iphone-frame {
  position: relative;
  z-index: 1;
  width: 232px !important;
  height: 476px !important;
  transform: none !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 12px 28px rgba(15, 23, 42, 0.16),
    0 28px 56px rgba(15, 23, 42, 0.1) !important;
}
.inside-tour .iphone-frame:hover { transform: none !important; }

.inside-bridge { padding-top: 14px !important; padding-bottom: 10px; }

.real-app-screen { padding: 0 !important; overflow: hidden; display: block; height: 100%; }
.inside-real-shot {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.iphone-screen:has([data-screen="home"]) { background: #F3F5F8; }
.iphone-screen:has([data-screen="receitas"]) { background: #1A2550; }
.real-app-screen:has([data-screen="home"]),
.real-app-screen:has([data-screen="receitas"]) {
  position: absolute;
  inset: 0;
  top: 36px;
}
.inside-dots { display: none !important; }

@media (min-width: 860px) {
  .inside-card {
    grid-template-columns: 1.08fr 0.92fr;
    grid-template-areas: "copy device";
    padding: 36px 40px 28px;
    gap: 20px 40px;
  }
  .inside-card--flip {
    grid-template-columns: 0.92fr 1.08fr;
    grid-template-areas: "device copy";
  }
  .inside-card-copy { padding: 12px 8px 12px 12px; }
  .inside-tour .iphone-frame {
    width: 260px !important;
    height: 532px !important;
  }
}

@media (max-width: 640px) {
  .inside-card { padding: 20px 16px 24px; border-radius: 24px; }
  .inside-tour .iphone-frame {
    width: 220px !important;
    height: 452px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .inside-tour .iphone-frame,
  .inside-device {
    animation: none !important;
    transform: none !important;
  }
}

/* --- Prova social: loop infinito horizontal ------------------------------- */
.social .section-title { margin-bottom: 10px !important; }
.proof-lead {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text2);
  font-weight: 500;
}
.proof-hint {
  text-align: center;
  margin: 18px auto 0;
  font-size: 13px;
  color: var(--text3);
}
.proof-marquee {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.proof-marquee.is-drag { cursor: grabbing; }
.proof-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  padding: 8px 24px 16px;
  will-change: transform;
}
.proof-marquee .testimonial {
  flex: 0 0 min(78vw, 340px) !important;
  width: min(78vw, 340px) !important;
  max-width: 340px;
  flex-shrink: 0;
  height: auto !important;
  flex-direction: column !important;
  background: #fff;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 22px !important;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  transform: none !important;
}
.proof-marquee .testimonial:hover {
  transform: none !important;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}
.proof-marquee .testimonial-img {
  width: 100% !important;
  min-width: 0 !important;
  height: 168px !important;
  align-self: auto !important;
  border-radius: 0 !important;
  background: #E8EEEC;
}
.proof-marquee .testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  pointer-events: none;
}
.proof-marquee .testimonial-body {
  padding: 18px 20px 20px !important;
  gap: 10px !important;
}
.proof-marquee .testimonial-body::before {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 2px;
}
.proof-marquee .testimonial .quote {
  font-size: 15px !important;
  line-height: 1.65 !important;
  color: #334155 !important;
  font-weight: 500;
}
.proof-marquee .testimonial .quote::before { display: none; }
.proof-marquee .testimonial .author { margin-top: 4px; }
.proof-marquee .testimonial .author .name {
  font-size: 14px !important;
  font-weight: 800;
  color: #0F172A;
}
.proof-marquee .testimonial .author .city {
  font-size: 12.5px !important;
  white-space: normal !important;
  color: #64748B !important;
}
.proof-marquee.is-static {
  overflow-x: auto;
  cursor: default;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.proof-marquee.is-static .proof-track { transform: none !important; }

@media (min-width: 900px) {
  .testimonial-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px !important;
  }
  .testimonial { flex-direction: column !important; height: 100%; }
  .testimonial-img {
    width: 100% !important; min-width: 0 !important;
    height: 132px; align-self: auto !important;
    border-radius: 14px 14px 0 0 !important;
  }
  .testimonial-img img { border-radius: 14px 14px 0 0 !important; }
}
@media (max-width: 899px) {
  .testimonial-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px !important;
  }
  .testimonial-grid::-webkit-scrollbar { display: none; }
  .testimonial {
    flex: 0 0 86% !important;
    width: 86% !important;
    scroll-snap-align: center;
  }
  .testimonial-img { width: 96px !important; min-width: 96px !important; }
}
.social-summary { margin-bottom: 20px !important; }

/* --- Pra quem e / nao e --------------------------------------------------- */
.qualify-card { padding: 20px 20px !important; }
.qualify-card-head { margin-bottom: 12px !important; }
.qualify-list li { font-size: 14.5px !important; line-height: 1.45 !important; }

/* --- Quem esta por tras: o logo ocupava meia tela ------------------------- */
.who-wrap { gap: 32px !important; }
.who img { max-width: 220px !important; }
.who p { margin-bottom: 12px !important; }

/* --- FAQ ------------------------------------------------------------------ */
.faq-list { gap: 8px !important; }
.faq-question { padding: 15px 20px !important; }

/* --- Oferta --------------------------------------------------------------- */
.offer-premium-card { padding: 28px 26px !important; }
.offer-benefits { gap: 10px !important; }
.offer-price-section { padding: 20px 16px !important; margin: 18px 0 !important; }
@media (max-width: 640px) {
  .offer-premium-card { padding: 20px 16px !important; }
}

/* --- Fechamento ----------------------------------------------------------- */
.urgency-checklist { margin-bottom: 18px !important; gap: 9px !important; }
.urgency-offer-box { padding: 22px 20px 20px !important; }
.urgency-sub { margin-bottom: 20px !important; }

/* --- Frases-ponte entre secoes -------------------------------------------
   Micro-copy nova de uma linha que fecha um bloco abrindo o proximo. E o que
   sustenta a retencao de scroll numa pagina sem VSL. */
.bridge {
  max-width: 620px;
  margin: 0 auto;
  padding: 22px 24px 0;
  text-align: center;
  font-family: var(--font-head, inherit);
  font-size: clamp(15px, 2.2vw, 17px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text2, #1A1A1A);
}
.bridge span { color: var(--accent, #0F766E); }
.bridge::after {
  content: '';
  display: block;
  width: 1px;
  height: 26px;
  margin: 12px auto 0;
  background: linear-gradient(180deg, var(--accent, #0F766E), transparent);
  opacity: 0.45;
}
@media (max-width: 640px) {
  .bridge { padding: 16px 20px 0; }
  .bridge::after { height: 20px; margin-top: 10px; }
}

/* Respeita quem pediu menos movimento no sistema. */
@media (prefers-reduced-motion: reduce) {
  .inside-grid, .testimonial-grid { scroll-behavior: auto; }
  html { scroll-behavior: auto; }
}

/* --- Objecoes + FAQ como um bloco unico -----------------------------------
   Eram duas secoes separadas com padding cheio cada uma. Agora sao lidas como
   uma zona continua de duvidas, sem alterar nenhuma copy dos dois blocos. */
.obj-section { padding-bottom: 18px !important; background: #F7F4EF !important; }
.faq { padding-top: 18px !important; background: #F7F4EF !important; }
.faq .section-eyebrow { margin-top: 10px; }
@media (max-width: 640px) {
  .obj-section { padding-bottom: 12px !important; }
  .faq { padding-top: 12px !important; }
}

/* ==========================================================================
   BRAND × CONVERSION — navy + teal do app, faixas de capítulo, 0 copy
   App: header/card #1B2B4A · CTA/progress #0F766E / #5EEAD4 · canvas oat
   ========================================================================== */

.inside-section {
  background:
    radial-gradient(ellipse 70% 50% at 18% 8%, rgba(94,234,212,0.16), transparent 58%),
    radial-gradient(ellipse 55% 40% at 92% 92%, rgba(15,118,110,0.28), transparent 55%),
    #1B2B4A !important;
  overflow: visible;
}
.inside-section::before { opacity: 0.35; }
.inside-section .prod-head h2,
.inside-section .inside-head h2 { color: #F8FAFC; }
.inside-section .prod-head p,
.inside-section .inside-head p { color: #C5CDD8; }
.inside-section .prod-head h2 .hl,
.inside-section .inside-head h2 .hl {
  background: linear-gradient(120deg, #5EEAD4, #14B8A6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.inside-section .stack-card {
  box-shadow: 0 18px 48px rgba(0,0,0,0.32);
  border-color: rgba(255,255,255,0.14);
}
.inside-section .stack-flow::before {
  box-shadow:
    inset 1px 0 0 rgba(255,255,255,0.55),
    0 0 18px rgba(94,234,212,0.45);
}
.inside-section .stack-total {
  background: linear-gradient(180deg, #243656 0%, #152238 100%);
  border: 1px solid rgba(94,234,212,0.28);
  box-shadow: 0 12px 36px rgba(0,0,0,0.28), 0 0 28px rgba(45,212,191,0.12);
}
.inside-section .inside-foot p { color: #C5CDD8 !important; }
.inside-section .inside-foot p.stack-web,
.inside-section .stack-web {
  background: #FFFFFF;
  border-color: rgba(15,118,110,0.18);
  color: #000000 !important;
}
.inside-section .stack-web strong { color: #000000 !important; }
.inside-section .bridge { color: #C5CDD8; }
.inside-section .bridge span { color: #5EEAD4; }
.inside-section .bridge::after {
  background: linear-gradient(180deg, #5EEAD4, transparent);
}

.final-urgency {
  background:
    radial-gradient(ellipse 60% 50% at 88% 0%, rgba(94,234,212,0.14), transparent 58%),
    #1B2B4A !important;
}
.final-urgency .urgency-title { color: #F8FAFC; }
.final-urgency .urgency-highlight { color: #5EEAD4; }
.final-urgency .urgency-sub,
.final-urgency .urgency-social-text,
.final-urgency .urgency-whatsapp { color: #C5CDD8; }
.final-urgency .urgency-sub strong,
.final-urgency .urgency-social-text strong { color: #5EEAD4; }
.final-urgency .urgency-check-item { color: #F4F7FA; }
.final-urgency .urgency-check-item svg { color: #5EEAD4; }
.final-urgency .urgency-offer-box {
  background: #fff;
  box-shadow: 0 18px 48px rgba(0,0,0,0.28);
}
.final-urgency .urgency-cta {
  background: linear-gradient(135deg, #0F766E 0%, #14B8A6 100%);
}

.sticky-cta {
  background: rgba(27,43,74,0.94) !important;
  border-top: 1px solid rgba(94,234,212,0.22);
}
.sticky-cta-price .old { color: #94A3B8; }
.sticky-cta-price .current { color: #5EEAD4 !important; }
.sticky-cta-btn {
  background: #5EEAD4 !important;
  color: #042F2E !important;
  box-shadow: 0 6px 18px rgba(94,234,212,0.28) !important;
}

.premium-pain-section {
  background:
    radial-gradient(ellipse 50% 40% at 12% 0%, rgba(217,68,82,0.06), transparent 62%),
    #EFEAE4 !important;
}

.social {
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(15,118,110,0.06), transparent 60%),
    #F7F4EF !important;
}

.footer {
  background: #F7F4EF;
  border-top: 1px solid rgba(27,43,74,0.08);
}

h1, h2, h3 { color: var(--text); }
.hl { color: var(--accent); }

/* Hero proof — trust island after CTA */
.hero-proof {
  margin: 36px auto 0;
  max-width: 540px;
  background: #fff;
  border: 1px solid rgba(27,43,74,0.08);
  border-radius: 24px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 18px 48px rgba(27,43,74,0.08);
  overflow: hidden;
  text-align: left;
}
.hero-proof::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #0F766E 0%, #14B8A6 52%, #5EEAD4 100%);
}
.hero-proof-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 22px 8px 18px;
}
.hero-proof-stat {
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.hero-proof-stat + .hero-proof-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(27,43,74,0.12), transparent);
}
.hero-proof-stat b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(26px, 6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: #1B2B4A;
  font-variant-numeric: tabular-nums;
}
.hero-proof-stat:first-child b { color: #0F766E; }
.hero-proof-stars {
  display: block;
  margin-top: 5px;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 2px;
  color: #0F766E;
  line-height: 1;
}
.hero-proof-stat span {
  display: block;
  margin-top: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #718096;
}
.hero-proof-stat:last-child span {
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.hero-proof-quote {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  padding: 16px 20px 20px;
  background:
    linear-gradient(180deg, rgba(247,244,239,0.9) 0%, #fff 100%);
  border-top: 1px solid rgba(27,43,74,0.06);
}
.hero-proof-quote img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 6px 16px rgba(27,43,74,0.16);
}
.hero-proof-quote blockquote {
  margin: 0;
}
.hero-proof-quote p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #1B2B4A;
  font-style: italic;
  font-weight: 500;
}
.hero-proof-quote figcaption {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  color: #0F766E;
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .hero-proof { border-radius: 20px; }
  .hero-proof-metrics { padding: 18px 4px 14px; }
  .hero-proof-stat b { font-size: 24px; }
  .hero-proof-quote { padding: 14px 14px 16px; gap: 12px; }
  .hero-proof-quote img { width: 48px; height: 48px; }
  .hero-proof-quote p { font-size: 14px; }
}

/* Hero — 3s fold: foto e copy lado a lado (vence o flex antigo do .container) */
.hero { text-align: left; }
.hero .hero-layout {
  display: grid !important;
  grid-template-areas:
    "brand"
    "head"
    "visual"
    "rest";
  gap: 14px;
  align-items: start;
  width: 100%;
  max-width: 1120px;
  flex-direction: unset !important;
}
.hero-brand { grid-area: brand; justify-self: end; }
.hero-head { grid-area: head; }
.hero-visual { grid-area: visual; position: relative; }
.hero-rest { grid-area: rest; }
.hero .hero-head h1 {
  max-width: 16ch;
  margin: 0 0 10px;
  text-align: left;
  text-wrap: balance;
}
.hero .hero-sub {
  margin: 0 !important;
  max-width: 34em;
  text-align: left;
  color: var(--text) !important;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 18% -10% -10% 20%;
  background: radial-gradient(ellipse at 60% 40%, rgba(15,118,110,0.2), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 32% 42%;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 22px 50px rgba(27,43,74,0.16);
}
.hero-rest .hero-mechanism {
  margin: 2px 0 16px;
  max-width: none;
  text-align: left;
}
.hero-rest .btn-primary { width: 100%; }
.hero .hero-proof {
  margin: 18px 0 0;
  max-width: none;
}
@media (min-width: 768px) {
  .hero .hero-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
    grid-template-areas:
      "brand brand"
      "visual head"
      "visual rest";
    column-gap: 40px;
    row-gap: 8px;
    align-items: center;
  }
  .hero-visual {
    align-self: stretch;
    display: flex;
    align-items: center;
  }
  .hero-visual img {
    aspect-ratio: 4 / 5;
    min-height: 420px;
    max-height: 560px;
    height: 100%;
    object-position: 28% 40%;
    border-radius: 28px;
  }
  .hero .hero-head h1 {
    font-size: clamp(32px, 3.6vw, 50px);
    line-height: 1.08;
    max-width: 13ch;
  }
  .hero-rest .btn-primary {
    width: auto;
    min-width: 280px;
  }
}
@media (max-width: 767px) {
  .hero-visual img {
    max-height: 228px;
    aspect-ratio: 16 / 10;
  }
}

/* Compare boards — vs sachê + pra quem é, lado a lado */
.vs-wrap { max-width: 1040px; }
.vs-head {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 720px;
}
.vs-head .section-eyebrow { justify-content: center; }
.vs-head .section-title { margin: 8px auto 0; }
.vs-board {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr !important;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(27,43,74,0.08);
  box-shadow: 0 22px 56px rgba(27,43,74,0.10);
  align-items: stretch;
}
.vs-col {
  padding: 32px 28px 34px;
  display: flex;
  flex-direction: column;
}
.vs-col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.vs-col-head h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  margin: 0;
  letter-spacing: -0.02em;
}
.vs-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
}
.vs-ico svg { width: 20px; height: 20px; }
.vs-col p {
  font-size: 15px;
  line-height: 1.7;
  margin: 14px 0 0;
}
.vs-col-lose {
  background: #F7F4EF;
  color: #1B2B4A;
}
.vs-col-lose .vs-ico {
  background: rgba(217,68,82,0.1);
  color: #D94452;
}
.vs-col-lose h3 { color: #1B2B4A; }
.vs-col-lose p { color: #4A5568; }
.vs-col-lose strong { color: #D94452; font-weight: 800; }
.vs-col-win {
  background: linear-gradient(165deg, #1B2B4A 0%, #152238 55%, #0F766E 140%);
  color: #fff;
}
.vs-col-win h3 { color: #fff; }
.vs-col-win .vs-ico {
  background: rgba(94,234,212,0.16);
  color: #5EEAD4;
}
.vs-col-win p { color: rgba(255,255,255,0.82); }
.vs-col-win p b,
.vs-col-win p strong { color: #fff; font-weight: 800; }
.vs-price {
  margin: 18px 0 4px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(94,234,212,0.22);
  border-radius: 16px;
}
.vs-price .price-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5EEAD4;
  margin-bottom: 6px;
}
.vs-price strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(36px, 6vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}
.vs-price span:last-child {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.vs-mid {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: #1B2B4A;
  border: 2px solid #1B2B4A;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(27,43,74,0.2);
}

.qualify-board {
  display: grid;
  grid-template-columns: 1fr 1fr !important;
  gap: 0;
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(27,43,74,0.08);
  box-shadow: 0 22px 56px rgba(27,43,74,0.08);
  align-items: stretch;
}
.qualify-section .qualify-card {
  border-radius: 0;
  border: 0;
  box-shadow: none;
  min-height: 100%;
}
.qualify-section .qualify-yes .qualify-list {
  display: flex !important;
  flex-direction: column;
  grid-template-columns: none !important;
}
.qualify-section .qualify-yes {
  background: #fff;
}
.qualify-section .qualify-no {
  background: #F7F4EF;
}

@media (max-width: 639px) {
  .vs-board,
  .qualify-board {
    grid-template-columns: 1fr !important;
    border-radius: 22px;
  }
  .vs-mid {
    top: auto;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
  }
  .vs-board { gap: 0; }
  .vs-col { padding: 24px 20px 26px; }
  .vs-mid {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: -8px auto;
    width: 40px;
    height: 40px;
  }
}

/* Quem está por trás — logo como selo, história ao lado */
.who-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: center;
  text-align: left;
}
.who-seal {
  margin: 0 auto;
  width: min(180px, 46vw);
  background: #1B2B4A;
  border-radius: 28px;
  padding: 10px;
  border: 1px solid rgba(94,234,212,0.2);
  box-shadow: 0 20px 48px rgba(27,43,74,0.14);
}
.who-seal img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none !important;
  border-radius: 20px;
}
.who-copy .section-title {
  margin: 8px 0 16px;
  text-align: left;
}
.who-copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text2);
  margin: 0 0 14px !important;
}
.who-copy p strong { color: var(--text); font-weight: 700; }
.who-copy .who-stat { color: var(--accent) !important; }
.who-quote {
  margin: 18px 0 0;
  padding: 18px 20px 18px 22px;
  border-left: 3px solid #0F766E;
  background: #fff;
  border-radius: 0 16px 16px 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.35;
  color: #1B2B4A;
  box-shadow: 0 8px 24px rgba(27,43,74,0.05);
}
@media (min-width: 768px) {
  .who-stage {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 44px;
  }
  .who-seal {
    width: 100%;
    margin: 0;
  }
}