/* ===== ESCAPED WRAPPER FOR ELEMENTOR ===== */
  .dap-wrapper {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: hsl(220, 15%, 8%);
    color: hsl(0, 0%, 98%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    min-height: 100vh;
    scroll-behavior: smooth;
  }

  /* Performance: lazy-render off-screen sections */
  .method,
  .why-for-you,
  .zero-barriers,
  .what-you-need,
  .why-results,
  .results,
  .authors,
  .faq-section,
  .footer-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
  }

  .dap-wrapper * {
    box-sizing: border-box;
  }

  .dap-wrapper :root {
    --bg: hsl(220, 15%, 8%);
    --fg: hsl(0, 0%, 98%);
    --card-bg: hsl(220, 15%, 12%);
    --muted: hsl(220, 10%, 60%);
    --green: #22c55e;
    --green-dark: #16a34a;
    --green-darker: #15803d;
    --green-400: #4ade80;
    --border: hsl(220, 15%, 20%);
    --radius: 0.75rem;
  }

  /* Redefine variables for scope if :root fails in shadow DOM or iframe */
  .dap-wrapper {
    --bg: hsl(220, 15%, 8%);
    --fg: hsl(0, 0%, 98%);
    --card-bg: hsl(220, 15%, 12%);
    --muted: hsl(220, 10%, 60%);
    --green: #22c55e;
    --green-dark: #16a34a;
    --green-darker: #15803d;
    --green-400: #4ade80;
    --border: hsl(220, 15%, 20%);
    --radius: 0.75rem;
  }

  .dap-wrapper img {
    max-width: 100%;
    display: block;
  }

  .dap-wrapper a {
    text-decoration: none;
    color: inherit;
  }

  img {
    max-width: 100%;
    display: block;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  /* ===== UTILITIES ===== */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .container-lg {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
  }

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

  .relative {
    position: relative;
  }

  .gradient-text {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .glass {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .glow-green {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
  }

  .section-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 18, 28, 0.95), var(--bg), rgba(15, 18, 28, 0.95));
    z-index: 0;
  }

  .section-content {
    position: relative;
    z-index: 10;
  }

  /* ===== ANIMATIONS ===== */
  .pulse-animation {
    animation: pulse-animation 2s ease-in-out infinite;
  }

  @keyframes pulse-animation {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    50% {
      transform: scale(1.05);
      box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }

    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
  }

  .pulse-animation-vip {
    animation: pulse-animation-vip 2s ease-in-out infinite;
  }

  @keyframes pulse-animation-vip {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.7);
    }

    50% {
      transform: scale(1.05);
      box-shadow: 0 0 0 15px rgba(234, 179, 8, 0);
    }

    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(234, 179, 8, 0);
    }
  }

  /* Benefit card dropdown */
  .benefit-dropdown-card .benefit-inner {
    flex-direction: column;
    gap: 0;
  }

  .benefit-dropdown-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    gap: 1rem;
  }

  .benefit-dropdown-header .left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
  }

  .benefit-arrow {
    flex-shrink: 0;
    color: #9ca3af;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  .benefit-dropdown-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    width: 100%;
  }

  .benefit-dropdown-body p {
    padding: 0.75rem 0 0 0;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .benefit-dropdown-card.open .benefit-arrow {
    transform: rotate(180deg);
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
  }

  @keyframes bounce {

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

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

  .animate-bounce {
    animation: bounce 1.5s ease-in-out infinite;
  }

  @keyframes pulse-bg {

    0%,
    100% {
      opacity: 0.5;
    }

    50% {
      opacity: 1;
    }
  }

  .animate-pulse {
    animation: pulse-bg 3s ease-in-out infinite;
  }

  /* ===== HIGHLIGHT SWEEP ANIMATION ===== */
  .highlight-phrase {
    display: inline;
    position: relative;
    padding: 1px 5px;
    margin: 0;
    border-radius: 20px;
    border: 1.5px solid transparent;
    transition: border-color 0.5s ease-out,
      background 0.5s ease-out,
      color 0.5s ease-out;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
  }

  .highlight-phrase.active {
    border-color: rgba(34, 197, 94, 0.7);
    background: rgba(34, 197, 94, 0.08);
    color: #fff;
    animation: highlight-pulse 2s ease-in-out infinite;
  }

  @keyframes highlight-pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }

    50% {
      box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
  }

  /* Card hover */
  .card-hover {
    transition: all 0.3s ease;
  }

  .card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  /* Shine effect */
  .shine {
    position: relative;
    overflow: hidden;
  }

  .shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 5;
  }

  .shine:hover::before {
    left: 100%;
  }

  /* ===== SCROLLBAR ===== */
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: #0f172a;
  }

  ::-webkit-scrollbar-thumb {
    background: #22c55e;
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #16a34a;
  }

  /* ===== ICON ===== */
  .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ===== HEADER ===== */
  .header {
    background: #fff;
    padding: 1.5rem 1rem;
  }

  .header .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .header img {
    height: 4.6rem;
    object-fit: contain;
  }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    overflow: hidden;
  }

  .hero .bg-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg), var(--bg), rgba(15, 18, 28, 0.95));
  }

  .hero .bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    will-change: opacity;
  }

  .hero .blob1 {
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(34, 197, 94, 0.1);
  }

  .hero .blob2 {
    bottom: 25%;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: rgba(22, 163, 74, 0.05);
  }

  .hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(1.875rem, 5vw, 3.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .hero .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
  }

  .hero .text-green {
    color: var(--green-400);
  }

  .hero .text-green-bold {
    color: var(--green-400);
    font-weight: 600;
  }

  /* Video */
  .video-label {
    color: var(--green-400);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .video-label .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--green-400);
  }

  .video-container {
    position: relative;
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }

  @supports not (aspect-ratio: 16 / 9) {
    .video-container {
      padding-bottom: 56.25%;
      height: 0;
    }
  }

  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  @keyframes video-pulse-red {
    0% {
      box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.65);
      border-color: rgba(249, 115, 22, 1);
    }

    50% {
      box-shadow: 0 0 0 20px rgba(249, 115, 22, 0);
      border-color: rgba(249, 115, 22, 0.45);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
      border-color: rgba(249, 115, 22, 1);
    }
  }

  .video-attention {
    animation: video-pulse-red 2s ease-in-out infinite !important;
    border: 3px solid rgba(249, 115, 22, 1);
  }

  /* CTA Button */
  .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--green);
    color: #fff !important;
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    padding: 1rem 2rem;
    border-radius: 2rem;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
    justify-content: center;
    line-height: 1.2;
  }

  @media (max-width: 640px) {
    .btn-cta {
      width: 100%;
      padding: 1rem;
      border-radius: 1rem;
    }
  }

  .btn-cta:hover {
    background: var(--green-dark);
  }

  .btn-cta .icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .btn-cta-lg {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    padding: 1.25rem 2.5rem;
  }

  .btn-cta-lg .icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  /* Scroll indicator */
  .scroll-indicator {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    color: var(--green-400);
  }

  .scroll-indicator .icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  /* ===== METHOD SECTION ===== */
  .method {
    position: relative;
    padding: 5rem 1rem;
  }

  .section-title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  @media (min-width: 768px) {
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .benefit-card {
    border-radius: 1rem;
    padding: 1.5rem;
  }

  .benefit-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .benefit-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .benefit-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--green-400);
  }

  .benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
  }

  .benefit-card p {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
  }

  .highlight-box {
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
  }

  .highlight-box p {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: #fff;
    font-weight: 600;
  }

  /* ===== METHOD LIGHT THEME ===== */
  .method-light {
    background: #ffffff;
    color: #374151;
    width: calc(100% - 1.5rem);
    max-width: 1240px;
    margin: 1.5rem auto;
    border-radius: 1.75rem;
    overflow: hidden;
  }

  .method-light .section-bg {
    display: none;
  }

  .method-light .section-title {
    color: #111827;
  }

  .method-light .gradient-text {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 50%, #166534 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .method-light .section-subtitle {
    color: #4b5563;
  }

  .method-light .section-subtitle span {
    color: var(--green-darker) !important;
  }

  .method-light .benefit-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
  }

  .method-light .benefit-card:hover {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.1);
    transform: translateY(-3px);
  }

  .method-light .benefit-card h3 {
    color: #111827;
  }

  .method-light .benefit-card p {
    color: #6b7280;
  }

  .method-light .benefit-icon {
    background: rgba(34, 197, 94, 0.12);
  }

  .method-light .benefit-icon .icon {
    color: #16a34a;
  }

  .method-light .benefit-arrow {
    color: #9ca3af;
  }

  .method-light .benefit-dropdown-body p {
    border-top-color: #e5e7eb;
  }

  /* ===== RESULTS ===== */
  .results {
    position: relative;
    padding: 5rem 1rem;
  }

  .products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  @media (min-width: 768px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .products-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .product-card {
    border-radius: 1rem;
    overflow: hidden;
  }

  .product-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
  }

  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .product-card:hover .product-image img {
    transform: scale(1.1);
  }

  .product-image .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 18, 28, 0.9), transparent);
  }

  .product-image .product-name {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .product-image h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
  }

  .product-image .product-subtitle {
    font-size: 0.875rem;
    color: var(--green-400);
  }

  .product-details {
    padding: 1.25rem;
  }

  .product-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--green-400);
    margin-bottom: 1rem;
  }

  .product-time .icon {
    width: 1rem;
    height: 1rem;
  }

  .platforms-label {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 800;
    margin-bottom: 0.5rem;
  }

  .platform-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }

  .platform-row .name {
    color: #9ca3af;
  }

  .platform-row .value {
    color: #d1d5db;
  }

  .product-total {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .product-total .label {
    font-size: 0.875rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .product-total .label .icon {
    width: 1rem;
    height: 1rem;
    color: var(--green-400);
  }

  .product-total .amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-400);
  }

  /* Bar Chart */
  .bar-chart-container {
    height: 60px;
    width: 100%;
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    padding: 0 0 2px 0;
    border-bottom: 1px solid rgba(34, 197, 94, 0.15);
  }

  .bar-item {
    flex: 1;
    border-radius: 3px 3px 0 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.2, 1);
    min-height: 4px;
  }

  .chart-animate .bar-item {
    transform: scaleY(1);
  }

  .info-box {
    border-radius: 1rem;
    padding: 2rem;
  }

  .info-box p {
    color: #d1d5db;
  }

  .section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.5), transparent);
    margin: 1.5rem 0;
  }

  /* ===== CTA SECTION ===== */
  .cta-section {
    position: relative;
    padding: 5rem 1rem;
  }

  .cta-section .bg-blob-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    filter: blur(48px);
  }

  .cta-card {
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
  }

  @media (min-width: 768px) {
    .cta-card {
      padding: 3rem;
    }
  }

  .cta-card h2 {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
  }

  .cta-card>p {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 42rem;
    margin: 0 auto 2rem;
  }

  .support-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 1.5rem;
  }

  @media (min-width: 640px) {
    .support-info {
      flex-direction: row;
      justify-content: center;
    }
  }

  .support-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .support-info .icon {
    width: 1rem;
    height: 1rem;
    color: var(--green-400);
  }

  .support-info .dot {
    display: none;
    color: #4b5563;
  }

  @media (min-width: 640px) {
    .support-info .dot {
      display: inline;
    }
  }

  .trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  @media (min-width: 768px) {
    .trust-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .trust-card {
    border-radius: 0.75rem;
    padding: 1.5rem;
  }

  .trust-card .number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--green-400);
    margin-bottom: 0.5rem;
  }

  .trust-card p {
    font-size: 0.875rem;
    color: #9ca3af;
  }

  /* ===== FAQ ===== */
  .faq-section {
    position: relative;
    padding: 5rem 1rem;
    background: #ffffff;
    color: #111827;
  }

  .faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
  }

  .faq-item {
    border-bottom: 1px solid #e5e7eb;
  }

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

  .faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 0;
    background: transparent !important;
    border: none !important;
    font-size: 1.1rem;
    font-weight: 700;
    color: #374151 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.2s;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
  }

  .faq-question:hover,
  .faq-question:focus,
  .faq-question:active {
    color: #111827 !important;
    background: transparent !important;
    text-decoration: none !important;
    box-shadow: none !important;
  }

  .faq-icon {
    flex-shrink: 0;
    color: #374151 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
  }

  .faq-question:hover .faq-icon,
  .faq-question:focus .faq-icon {
    color: #374151 !important;
  }

  .faq-item.active .faq-icon {
    transform: rotate(90deg);
  }

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

  .faq-answer p {
    padding: 0 0 1.25rem 2.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
  }

  /* ===== AUTHORS ===== */
  .authors {
    position: relative;
    padding: 5rem 1rem;
  }

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

  @media (min-width: 1024px) {
    .authors-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  .authors-image-wrap {
    position: relative;
  }

  .authors-image-frame {
    border-radius: 1rem;
    overflow: hidden;
    padding: 0.5rem;
  }

  .authors-image-frame img {
    width: 100%;
    border-radius: 0.75rem;
    object-fit: cover;
  }

  .authors-image-frame .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 18, 28, 0.6), transparent);
  }

  .experience-badge {
    position: absolute;
    bottom: -1rem;
    right: 0;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.5);
    background: hsl(220, 15%, 10%);
  }

  @media (min-width: 480px) {
    .experience-badge {
      right: -1rem;
    }
  }

  .experience-badge .num {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--green-400);
  }

  .experience-badge .label {
    font-size: 0.75rem;
    color: #9ca3af;
  }

  .authors-info h3 {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
  }

  .authors-info>p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .highlight-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .highlight-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .highlight-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--green-400);
  }

  .highlight-item h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }

  .highlight-item p {
    font-size: 0.875rem;
    color: #9ca3af;
  }

  .quote-box {
    border-radius: 0.75rem;
    padding: 1.5rem;
    border-left: 4px solid var(--green);
  }

  .quote-box p {
    color: #d1d5db;
    font-style: italic;
  }

  /* ===== PRICING ====== */
  .pricing-section {
    position: relative;
    padding: 5rem 1rem;
    background: #0f121c;
    /* Background combinando com a página */
  }

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

  @media (min-width: 768px) {
    .pricing-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  .pricing-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  


  .pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.55);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.18);
  }
  .pricing-card.features-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }
  .pricing-card.investment-card {
    border-color: rgba(249, 115, 22, 0.55);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.18);
  }

  .pricing-card.vip {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.1) 0%, rgba(15, 23, 42, 0.4) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.1);
  }

  .pricing-card.vip:hover {
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.8);
  }

  .pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #f97316;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
  }

  .pricing-badge.vip-badge {
    background: #eab308;
    color: #000;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
  }

  .pricing-header {
    text-align: center;
    margin-bottom: 2rem;
  }

  .pricing-header h3 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .pricing-header h3 .icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .pricing-header p {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .pricing-features {
    flex-grow: 1;
    margin-bottom: 2.5rem;
  }

  .pricing-features p {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }

  .pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .pricing-features li .icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: #fb923c;
    margin-top: 0.125rem;
  }

  .pricing-features li .icon-plus {
    color: #eab308;
  }

  .pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .pricing-price .subtext {
    color: #9ca3af;
    font-size: 0.875rem;
  }

  .pricing-card .btn-cta {
    width: 100%;
    font-size: 1rem;
    padding: 1rem;
  }

  .pricing-card .btn-cta.pricing-cta,
  .btn-cta.pricing-cta {
    background: #f97316;
    border-color: #f97316;
    padding: 1.15rem 1.35rem;
  }

  .pricing-card .btn-cta.pricing-cta:hover,
  .btn-cta.pricing-cta:hover {
    background: #ea580c;
  }

  .pricing-card .btn-cta.pricing-cta.pulse-animation,
  .btn-cta.pricing-cta.pulse-animation {
    animation: pulse-animation-orange 2s ease-in-out infinite;
  }

  /* Checkout CTAs fora do card de preços: mesma largura máxima e centralização */
  .btn-cta.pricing-cta.checkout-cta {
    width: min(100%, 28rem);
    margin-inline: auto;
  }

  @keyframes pulse-animation-orange {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.75);
    }

    50% {
      transform: scale(1.05);
      box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
    }

    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
  }

  .guarantee-box {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(21, 128, 61, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .guarantee-box {
      flex-direction: row;
      text-align: left;
      padding: 3rem;
    }
  }

  .guarantee-icon {
    flex-shrink: 0;
    width: 6rem;
    height: 6rem;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .guarantee-icon .icon {
    width: 3rem;
    height: 3rem;
    color: var(--green-400);
  }

  .guarantee-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
  }

  .guarantee-content p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .guarantee-content p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #fff;
  }

  /* ===== FOOTER ===== */
  .footer-section {
    position: relative;
    padding: 4rem 1rem;
    background: #fff;
  }

  .urgency-banner {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(185, 28, 28, 0.04) 100%);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .urgency-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }

  .urgency-icon {
    flex-shrink: 0;
  }

  .urgency-icon .icon {
    width: 2rem;
    height: 2rem;
    color: #ef4444;
  }

  .urgency-banner h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
  }

  .urgency-banner p {
    color: #374151;
  }

  .urgency-highlight {
    color: #dc2626;
    font-weight: 600;
  }

  .final-cta {
    margin-bottom: 3rem;
  }

  .final-cta .time-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
  }

  .final-cta .time-note .icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .footer-divider {
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 2rem;
  }

  .footer-bottom img {
    height: 3rem;
    object-fit: contain;
    margin: 0 auto 1.5rem;
  }

  .footer-bottom .copy {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
  }

  .footer-bottom .disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    max-width: 42rem;
    margin: 0 auto;
  }

  /* ===== RESPONSIVE ===== */
  @media (min-width: 768px) {
    .header img {
      height: 5.75rem;
    }
  }

  /* ===== MOBILE PADDING PADRONIZADO ===== */
  @media (max-width: 767px) {

    .dap-wrapper .container,
    .dap-wrapper .container-lg {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
    }

    .hero {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
    }

    .method,
    .results,
    .cta-section,
    .authors,
    .footer-section,
    .why-results,
    .zero-barriers,
    .faq-section,
    .what-you-need,
    .pricing-section {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
      padding-top: 3rem;
      padding-bottom: 3rem;
    }

    /* FAQ: zerar padding do container interno para não duplicar */
    .faq-section>.container {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }

    .footer-section>div {
      padding-left: 0;
      padding-right: 0;
    }

    .cta-section>.section-content {
      padding-left: 0;
      padding-right: 0;
    }
  }

  /* ===== ZERO BARREIRAS ===== */
  .zero-barriers {
    position: relative;
    padding: 5rem 1rem;
  }

  .zero-barriers-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .zb-subtitle {
    font-size: 1.25rem;
    color: var(--green-400);
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
  }

  .zb-text {
    color: #d1d5db;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
  }

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

  .zb-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
  }

  @media (min-width: 768px) {
    .zb-cards-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
  }

  /* ===== WHAT YOU NEED (3 STEPS) ===== */
  .what-you-need {
    position: relative;
    padding: 5rem 1rem;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }

  @media (min-width: 768px) {
    .steps-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* ===== POR QUE RESULTADOS ===== */
  .why-results {
    position: relative;
    padding: 5rem 1rem;
    background: #ffffff;
    color: #374151;
    /* Letras cinza escuro */
  }

  /* Zera o bg-grad padrão do wrapper nesta section */
  .why-results .section-bg {
    display: none;
  }

  .why-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }

  @media (min-width: 992px) {
    .why-results-grid {
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }
  }

  .why-text h2 {
    color: #111827;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
  }

  .why-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .why-text p strong {
    color: #111827;
  }

  .why-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
  }

  .why-gallery h3 {
    text-align: center;
    color: #111827;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  .why-gallery img {
    border-radius: 1rem;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .why-gallery img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  }

  /* ===== IMAGE MODAL (Lightbox) ===== */
  .image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .image-modal.show {
    display: flex;
    animation: fadeInModal 0.3s forwards;
  }

  @keyframes fadeInModal {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .image-modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 0.5rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s ease;
  }

  .image-modal.show .image-modal-content {
    transform: scale(1);
  }

  .image-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: #f1f1f1;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
  }

  .image-modal-close:hover,
  .image-modal-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }

  .step-card {
    border-radius: 1rem;
    overflow: visible;
    position: relative;
    margin-top: 1.5rem;
    height: 100%;
  }

  .step-card-inner {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .step-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    border-radius: 1rem 1rem 0 0;
  }

  .step-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .step-card:hover .step-img-wrap img {
    transform: scale(1.05);
  }

  /* NUMERAÇÃO (Badges Verdes) */
  .step-number {
    position: absolute;
    top: -1.625rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.625rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
  }

  .step-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .step-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-darker);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }

  .step-info p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 800;
  }

  .zb-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .zb-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.55);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.18);
  }

  .zb-card img {
    width: 100%;
    display: block;
    object-fit: cover;
  }

  /* zero-barriers mobile padding handled in unified block above */

  /* ===== MARQUEE LOGOS ===== */
  .logo-marquee-wrapper {
    position: relative;
    padding: 3rem 1rem;
    z-index: 5;
  }

  .logo-marquee-section {
    background: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem 0;
    overflow: hidden;
    position: relative;
  }

  .logo-marquee-section::before,
  .logo-marquee-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .logo-marquee-section::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
  }

  .logo-marquee-section::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
  }

  .marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScrollLeftToRight 20s linear infinite;
    align-items: center;
  }

  .marquee-track img {
    height: 72px;
    object-fit: contain;
    margin: 0 40px;
  }

  @keyframes marqueeScrollLeftToRight {
    0% {
      transform: translateX(-50%);
    }

    100% {
      transform: translateX(0%);
    }
  }

  @media (max-width: 767px) {
    .logo-marquee-wrapper {
      padding: 1.5rem 10px;
    }

    .logo-marquee-section {
      padding: 1.5rem 0;
    }

    .marquee-track img {
      height: 48px;
      margin: 0 20px;
    }

    .logo-marquee-section::before,
    .logo-marquee-section::after {
      width: 40px;
    }
  }

  /* ===== BIO DROPDOWN ===== */
  .bio-dropdown {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .bio-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid rgba(34, 197, 94, 0.5);
    color: var(--green-400);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
  }

  .bio-toggle:hover {
    background: rgba(34, 197, 94, 0.08);
    border-color: var(--green-400);
  }

  .bio-toggle-icon {
    display: flex;
    align-items: center;
    transition: transform 0.35s ease;
  }

  .bio-toggle-icon.open {
    transform: rotate(180deg);
  }

  .bio-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .bio-content {
    padding: 1.5rem 0 0.5rem;
  }

  .bio-content p {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 0.85rem;
  }

  .bio-content strong {
    color: #e5e7eb;
    font-weight: 700;
  }

  .bio-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
    margin: 1rem 0;
  }

  /* ===== RESPONSIVIDADE MOBILE GLOBAL ===== */

  /* Prevent any horizontal overflow across the whole page */
  .dap-wrapper {
    overflow-x: hidden;
  }

  /* Inline-styled sections: white background sections need mobile padding */
  @media (max-width: 767px) {

    /* Seção "Diferença no Orçamento" */
    .orcamento-section {
      padding-left: 0.75rem !important;
      padding-right: 0.75rem !important;
    }

    .orcamento-section>div {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }

    /* Seção "Suporte WhatsApp" */
    .suporte-section {
      padding-left: 0.75rem !important;
      padding-right: 0.75rem !important;
    }

    .suporte-section>div {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }

    /* Ajuste da seção orcamento interna */
    .orcamento-grid {
      gap: 2rem !important;
    }

    /* Seção why-results: ensure container has padding */
    .why-results .section-content {
      padding-left: 0;
      padding-right: 0;
    }

    /* Remove overflow from benefit section inline markup */
    .benefits-grid[style] {
      margin: 0 !important;
    }

    /* Fixing step cards on mobile */
    .step-card-inner {
      flex-direction: column;
    }

    /* Section titles should wrap naturally */
    .section-title {
      word-break: break-word;
      overflow-wrap: break-word;
    }

    /* Why-text heading wrap */
    .why-text h2 {
      word-break: break-word;
      overflow-wrap: break-word;
    }

    /* Attention block in FAQ: reduce padding on mobile */
    .attention-block {
      padding: 1.25rem 1rem !important;
      margin-bottom: 1.5rem !important;
    }

    /* FAQ question text smaller on mobile */
    .faq-question {
      font-size: 0.95rem !important;
      padding: 1rem 0 !important;
    }

    /* FAQ answer padding */
    .faq-answer p {
      padding-left: 1.75rem !important;
    }

    /* Pricing section subtitle spacing */
    .pricing-section .section-subtitle {
      padding: 0 0.5rem;
    }

    /* Bio toggle should not overflow */
    .bio-toggle {
      width: 100%;
      justify-content: center;
    }

    /* Quote box text wraps */
    .quote-box p {
      word-break: break-word;
      overflow-wrap: break-word;
    }

    /* Guarantee box internal padding */
    .guarantee-box {
      padding: 2rem 1.25rem !important;
      margin: 2rem 0 0 !important;
    }

    /* Global overflow protection for all text elements on mobile */
    .dap-wrapper p,
    .dap-wrapper h1,
    .dap-wrapper h2,
    .dap-wrapper h3,
    .dap-wrapper h4,
    .dap-wrapper span,
    .dap-wrapper a {
      overflow-wrap: break-word;
      word-wrap: break-word;
    }

    /* Ensure all children respect container width */
    .dap-wrapper * {
      max-width: 100%;
    }

    /* Attention block texts mobile */
    .attention-block p {
      font-size: 0.9375rem !important;
    }

    /* FAQ section title mobile */
    .faq-section .section-title {
      font-size: 1.5rem !important;
    }

    /* WhatsApp CTA button in FAQ - ensure it doesn't overflow */
    .faq-section .btn-cta {
      font-size: 0.85rem !important;
      padding: 0.875rem 1rem !important;
    }

    /* FAQ text-center margin */
    .faq-section .text-center {
      margin-bottom: 2rem !important;
    }
  }

  /* ===== STEP CARDS (3 passos) ===== */
  @media (max-width: 767px) {
    .steps-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Logo marquee: ensure no overflow */
  .logo-marquee-section {
    overflow: hidden;
  }
  /* ===== REDESIGN LAYER ===== */
  .dap-wrapper {
    --accent-orange: #fb923c;
    --accent-orange-deep: #f97316;
    --surface-dark: rgba(12, 17, 27, 0.78);
    --surface-dark-strong: rgba(10, 14, 23, 0.92);
    position: relative;
    background:
      radial-gradient(circle at 12% 0%, rgba(34, 197, 94, 0.18), transparent 26%),
      radial-gradient(circle at 88% 10%, rgba(249, 115, 22, 0.16), transparent 22%),
      linear-gradient(180deg, #081019 0%, #0d1320 28%, #0b111a 100%);
  }

  .dap-wrapper::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.38;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 82%);
  }

  .section-content,
  .header,
  .hero,
  .method,
  .why-for-you,
  .zero-barriers,
  .what-you-need,
  .why-results,
  .results,
  .pricing-section,
  .authors,
  .faq-section,
  .footer-section {
    position: relative;
    z-index: 1;
  }

  .section-title,
  .hero h1,
  .pricing-card h3,
  .cta-card h2 {
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .section-subtitle,
  .hero .subtitle,
  .cta-card>p,
  .guarantee-content p,
  .faq-answer p {
    text-wrap: pretty;
  }

  .header {
    position: sticky;
    top: 0;
    z-index: 60;
    padding: 1rem 1rem 0.85rem;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: none;
  }

  .header .inner a {
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: #ffffff;
    border: none;
    box-shadow: none;
  }

  .hero {
    min-height: auto;
    padding: clamp(3rem, 9vw, 6rem) 1rem 4.5rem;
  }

  .hero .bg-grad {
    background:
      radial-gradient(circle at 50% 10%, rgba(34, 197, 94, 0.2), transparent 28%),
      radial-gradient(circle at 85% 22%, rgba(249, 115, 22, 0.15), transparent 20%),
      linear-gradient(180deg, rgba(7, 12, 19, 0.96), rgba(10, 16, 26, 0.9) 48%, rgba(7, 12, 19, 1));
  }

  .hero .bg-blob {
    animation: hero-float 14s ease-in-out infinite;
  }

  .hero .blob2 {
    animation-delay: -5s;
  }

  @keyframes hero-float {
    0%,
    100% {
      transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
      transform: translate3d(0, -18px, 0) scale(1.06);
    }
  }

  .hero-content {
    max-width: 1100px;
  }

  .hero h1 {
    max-width: 980px;
    margin: 0 auto 1.1rem;
    line-height: 0.98;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.32);
  }

  .hero .subtitle {
    max-width: 880px;
    padding: 1.2rem 1.35rem;
    border-radius: 1.4rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .video-label {
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .video-container {
    border-radius: 1.7rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .video-container:hover {
    transform: translateY(-4px);
    box-shadow:
      0 36px 90px rgba(0, 0, 0, 0.48),
      0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  }

  .why-results-cta-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
  }

  .pricing-card.investment-card h3 {
    color: #ffffff !important;
  }

  .installment-line {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
  }

  .installment-times {
    font-size: 1.1rem;
    font-weight: 700;
    color: #cbd5e1;
    line-height: 1.1;
    margin-bottom: 0.45rem;
  }

  .installment-value {
    font-size: clamp(2.85rem, 6vw, 3.7rem) !important;
    font-weight: 600 !important;
    color: #ffffff;
    line-height: 0.95;
    letter-spacing: -0.06em;
    margin-bottom: 0;
  }

  .pricing-price .total-price-note {
    display: block;
    margin-top: 0.8rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: #e5e7eb;
    letter-spacing: -0.03em;
  }

  .pricing-price .old-price {
    margin-bottom: 0.65rem;
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    opacity: 0.88;
  }

  .hero-offer-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
  }

  .hero-offer-inline .old-price {
    font-size: 1.05rem;
    color: #cbd5e1;
    text-decoration: line-through;
    opacity: 0.92;
  }

  .hero-offer-inline .new-price {
    font-size: clamp(2.1rem, 7vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .purchase-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.95rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    color: #22c55e;
    font-size: 1rem;
    font-weight: 600;
  }

  .purchase-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .purchase-trust svg {
    width: 1.05rem;
    height: 1.05rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  .purchase-trust .divider {
    width: 1px;
    height: 1.35rem;
    background: rgba(255, 255, 255, 0.18);
  }

  #oferta {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }

  .footer-section {
    background: linear-gradient(180deg, #f5f6f7 0%, #eef1f3 100%);
  }

  .final-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .btn-cta {
    position: relative;
    overflow: hidden;
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(34, 197, 94, 0.22);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
  }

  .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 52px rgba(34, 197, 94, 0.24);
  }

  .btn-cta.pricing-cta {
    box-shadow: 0 18px 40px rgba(249, 115, 22, 0.22);
  }

  .btn-cta.pricing-cta:hover {
    box-shadow: 0 24px 52px rgba(249, 115, 22, 0.28);
  }

  .btn-cta::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 50%);
    pointer-events: none;
  }

  .share-page-cta {
    background: #ffffff !important;
    color: #1f2937 !important;
    border: 1px solid rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 18px 40px rgba(12, 28, 20, 0.18) !important;
  }

  .share-page-cta:hover {
    background: #f8fafc !important;
    color: #111827 !important;
  }

  .share-page-cta .icon,
  .share-page-cta .share-label {
    position: relative;
    z-index: 1;
    color: #1f2937 !important;
  }

  .share-page-cta .icon {
    width: 1.2rem;
    height: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .share-page-cta .icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .method,
  .why-for-you,
  .results,
  .pricing-section,
  .authors,
  .faq-section {
    padding-top: clamp(4rem, 8vw, 6rem);
    padding-bottom: clamp(4rem, 8vw, 6rem);
  }

  .benefit-card,
  .product-card,
  .pricing-card,
  .trust-card,
  .quote-box,
  .highlight-item,
  .info-box,
  .guarantee-box,
  .cta-card {
    border-radius: 1.5rem;
  }

  .benefit-card,
  .product-card,
  .pricing-card,
  .trust-card,
  .info-box,
  .highlight-item {
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 24px 60px rgba(3, 7, 18, 0.22);
  }

  .card-hover:hover {
    transform: translateY(-8px);
  }

  .method-light {
    background:
      radial-gradient(circle at top right, rgba(34, 197, 94, 0.08), transparent 28%),
      linear-gradient(180deg, #ffffff 0%, #f5f8f6 100%);
  }

  .method-light .benefit-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 248, 0.98));
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  }

  .method-light .benefit-card:hover {
    border-color: rgba(34, 197, 94, 0.28);
    box-shadow: 0 26px 44px rgba(34, 197, 94, 0.08);
  }

  .benefit-icon,
  .highlight-icon {
    box-shadow: 0 10px 28px rgba(34, 197, 94, 0.16);
  }

  .product-card {
    background: linear-gradient(180deg, rgba(14, 21, 32, 0.92), rgba(10, 16, 25, 0.98));
  }

  .product-image {
    height: 13rem;
  }

  .product-details {
    padding: 1.4rem 1.3rem 1.5rem;
  }

  .pricing-section {
    background:
      radial-gradient(circle at top center, rgba(249, 115, 22, 0.12), transparent 26%),
      linear-gradient(180deg, rgba(8, 12, 18, 0.98), rgba(11, 16, 25, 1));
  }

  .pricing-grid {
    gap: 1.5rem;
    align-items: stretch;
  }

  .pricing-card {
    background: linear-gradient(180deg, rgba(16, 24, 37, 0.88), rgba(10, 15, 24, 0.96));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .pricing-card.features-card {
    background: linear-gradient(180deg, rgba(16, 24, 37, 0.72), rgba(10, 15, 24, 0.9));
  }

  .pricing-card.investment-card {
    background:
      radial-gradient(circle at top center, rgba(249, 115, 22, 0.11), transparent 38%),
      linear-gradient(180deg, rgba(16, 24, 37, 0.94), rgba(9, 14, 23, 1));
  }

  .pricing-header,
  .pricing-price,
  .pricing-features {
    position: relative;
    z-index: 1;
  }

  .pricing-features ul {
    gap: 0.9rem;
  }

  .pricing-features li {
    padding: 0.8rem 0.9rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
  }

  .pricing-price {
    border-top-color: rgba(255, 255, 255, 0.12);
  }

  .pricing-price .amount {
    font-size: clamp(2.75rem, 5vw, 3.4rem);
    letter-spacing: -0.05em;
  }

  .pricing-card .btn-cta.pricing-cta,
  .btn-cta.pricing-cta {
    box-shadow: 0 18px 42px rgba(249, 115, 22, 0.28);
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
  }

  .guarantee-box {
    background:
      radial-gradient(circle at top left, rgba(34, 197, 94, 0.14), transparent 35%),
      linear-gradient(135deg, rgba(14, 24, 32, 0.94), rgba(10, 16, 24, 0.96));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.26);
  }

  .authors {
    background:
      radial-gradient(circle at 15% 10%, rgba(34, 197, 94, 0.12), transparent 28%),
      linear-gradient(180deg, rgba(9, 14, 21, 0.98), rgba(8, 12, 18, 1));
  }

  .authors-image-frame {
    border-radius: 1.7rem;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  }

  .experience-badge {
    border-radius: 1.1rem;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  }

  .highlight-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem;
  }

  .faq-section {
    background:
      radial-gradient(circle at top right, rgba(34, 197, 94, 0.08), transparent 20%),
      linear-gradient(180deg, #ffffff 0%, #f4f7f5 100%);
  }

  .faq-accordion {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 1.5rem;
    padding: 0 1.5rem;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
    border: none;
  }

  .faq-question {
    padding: 1.35rem 0;
  }

  .faq-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
  }

  .footer-section {
    background: linear-gradient(180deg, #f5f6f7 0%, #eef1f3 100%);
  }

  .final-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  #planos {
    scroll-margin-top: 20px;
  }

  .faq-section,
  .authors,
  .results,
  .method {
    scroll-margin-top: 96px;
  }

  @media (max-width: 991px) {
    .hero {
      padding-top: 2.6rem;
    }

    .hero .subtitle {
      border-radius: 1.25rem;
    }

    .authors-image-frame {
      max-width: 540px;
      margin: 0 auto;
    }
  }

  @media (max-width: 767px) {
    .header {
      padding: 0.75rem 0.75rem 0.7rem;
    }

    .header .inner a {
      width: 100%;
      justify-content: center;
      display: flex;
    }

    .hero {
      padding: 2rem 0.85rem 3rem;
    }

    .hero h1 {
      line-height: 1.02;
      margin-bottom: 0.9rem;
    }

    .hero .subtitle {
      padding: 1rem 0.95rem;
      border-radius: 1.15rem;
      font-size: 0.98rem;
      line-height: 1.55;
    }

    .video-container {
      border-radius: 1.2rem;
    }

    .btn-cta {
      min-height: 58px;
      width: 100%;
      border-radius: 1.1rem;
    }

    .method,
    .why-for-you,
    .results,
    .pricing-section,
    .authors,
    .faq-section,
    .footer-section {
      padding-top: 3.2rem;
      padding-bottom: 3.2rem;
    }

    .section-title {
      line-height: 1.06;
    }

    .benefit-card,
    .product-card,
    .pricing-card,
    .quote-box,
    .guarantee-box,
    .info-box,
    .highlight-item {
      border-radius: 1.2rem;
    }

    .benefit-card,
    .pricing-card {
      padding: 1.25rem 1rem;
    }

    .pricing-grid {
      gap: 1rem;
      margin-top: 2rem;
    }

    .pricing-card.investment-card {
      order: -1;
    }

    .pricing-features li {
      padding: 0.75rem 0.8rem;
      gap: 0.65rem;
    }

    .pricing-price .amount {
      font-size: 2.85rem;
    }

    .guarantee-box {
      gap: 1.25rem;
    }

    .faq-accordion {
      padding: 0 1rem;
      border-radius: 1.2rem;
    }

    .faq-question {
      gap: 0.65rem;
      font-size: 1rem;
      line-height: 1.35;
    }

    .faq-icon {
      width: 1.8rem;
      height: 1.8rem;
    }

    .final-cta {
      padding: 0;
      border-radius: 0;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero .bg-blob,
    .btn-cta,
    .video-container,
    .card-hover,
    .pulse-animation,
    .pulse-animation-vip {
      animation: none !important;
      transition: none !important;
    }

  }

  @media (max-width: 767px) {
    .fade-in {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }

    .hero .bg-blob,
    .scroll-indicator {
      display: none !important;
    }
  }

@media (min-width: 900px) {
      .orcamento-grid {
        grid-template-columns: 1fr 1fr !important;
      }
    }
