/* ===============================
   RADAR DAS ESCOLAS — LP STYLES
   =============================== */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: #083FCF;
    color: white;
}

/* Focus Visible */
*:focus-visible {
    outline: 3px solid #083FCF;
    outline-offset: 2px;
}

/* ===============================
   BUTTONS
   =============================== */

.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    box-shadow: 0 4px 12px rgba(8, 63, 207, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(8, 63, 207, 0.4);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* ===============================
   CONTAINER
   =============================== */

.pnae-hero .container,
.pnae-waitlist .container,
.pnae-proof .container,
.pnae-deliverables .container,
.pnae-how-it-works .container,
.pnae-what-we-ask .container,
.pnae-privacy .container,
.pnae-supporters .container,
.pnae-timeline .container,
.faq-section .container,
.pnae-final-cta .container,
.radar-problem .container,
.radar-live-content .container,
.radar-para-quem .container,
.radar-form-cta .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===============================
   STICKY SUB-NAVIGATION
   =============================== */

.pnae-subnav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 999;
}

.pnae-subnav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.3s ease;
    z-index: 1001;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

.subnav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.subnav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.subnav-link {
    color: #1F2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    position: relative;
    padding-bottom: 4px;
}

.subnav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #083FCF;
    transition: width 0.3s ease;
}

.subnav-link:hover {
    color: #083FCF;
}

.subnav-link:hover::after {
    width: 100%;
}

.subnav-cta {
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(8, 63, 207, 0.2);
}

/* ===============================
   HERO SECTION
   =============================== */

.pnae-hero {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background-image: url('../images/lp%20live%20radar/background_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background {
    display: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: 1rem;
}

.hero-title {
    font-size: 3.25rem;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.hero-highlight {
    color: #FC7D55;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-ghost {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    font-weight: 600;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.hero-microcopy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.hero-event-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.event-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Nunito', sans-serif;
    backdrop-filter: blur(6px);
}

.event-badge strong {
    color: #ffffff;
    font-weight: 700;
}

.event-badge-icon {
    font-size: 1rem;
    line-height: 1;
}

/* Hero Logos */
.hero-logos {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.hero-logo {
    height: 32px;
    width: auto;
    opacity: 0.95;
}

.hero-logos-divider {
    display: block;
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.hero-logo-lumni {
    height: 22px;
    width: auto;
    opacity: 0.85;
}

/* Hero Image Column */
.hero-visual-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Radar cards grid — ajuste de tamanhos para as imagens do Radar */
.radar-cards-grid {
    min-height: 660px;
}

.radar-cards-grid .crm-hero-card-main {
    width: 400px;
}

.radar-cards-grid .crm-hero-card-secondary {
    width: 280px;
    top: 210px;
    left: 15px;
    right: auto;
    z-index: 4;
}

.radar-cards-grid .crm-hero-card-accent {
    width: 350px;
    top: 185px;
    right: -30px;
    
}

.radar-card-extra {
    left: -30px;
    transform: translateX(-50%);
    top: 370px;
    width: 350px;
    z-index: 2;
    animation: cardFloat 6s ease-in-out infinite;
    animation-delay: 3s;
}

.radar-card-extra:hover {
    animation-play-state: paused;
    transform: translateX(-50%) translateY(-10px) scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

/* ===============================
   PROBLEMA/DOR SECTION
   =============================== */

.radar-problem {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #EFE2FF 100%);
}

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

.problem-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-right {
    display: flex;
    flex-direction: column;
}

.problem-headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1F2937;
    font-family: 'Outfit', sans-serif;
}

.problem-highlight {
    color: #FC7D55;
}

.problem-statement {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.7;
    font-family: 'Nunito', sans-serif;
}

.problem-right-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #083FCF;
    margin-bottom: 1.25rem;
    font-family: 'Outfit', sans-serif;
}

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

/* Flip card container */
.problem-question {
    perspective: 900px;
    min-height: 140px;
    cursor: pointer;
    border-radius: 12px;
}

/* Inner wrapper — gira no hover */
.question-inner {
    position: relative;
    width: 100%;
    min-height: 140px;
    transform-style: preserve-3d;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-question:hover .question-inner {
    transform: rotateY(180deg);
}

/* Faces compartilham mesma posição */
.question-front,
.question-back {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Frente — apenas o ? */
.question-front {
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

/* Verso — pergunta revelada */
.question-back {
    background: #f0f4ff;
    border: 1px solid #083FCF;
    transform: rotateY(180deg);
    text-align: center;
}

.question-back p {
    font-size: 0.95rem;
    color: #083FCF;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

/* Grande ? na frente */
.question-mark {
    font-size: 3rem;
    font-weight: 800;
    color: #FC7D55;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    display: inline-block;
}

.problem-question p {
    font-size: 0.95rem;
    color: #1F2937;
    line-height: 1.5;
    margin: 0;
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
}

.problem-closing {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    font-family: 'Nunito', sans-serif;
    font-style: italic;
    border-top: 1px solid #e5e7eb;
    padding-top: 1.25rem;
}

/* ===============================
   LIVE CONTENT SECTION
   =============================== */

.radar-live-content {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #EFE2FF 100%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center .section-title {
    margin-bottom: 1rem;
}

.live-items {
    max-width: 780px;
    margin: 0 auto 3rem;
}

.live-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.live-item-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FC7D55;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    min-width: 64px;
    flex-shrink: 0;
}

.live-item-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.live-item-content p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

/* ===============================
   PARA QUEM SECTION
   =============================== */

.radar-para-quem {
    padding: 5rem 0;
    background-image: url('../images/lp%20live%20radar/background_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.radar-para-quem .section-title {
    color: #ffffff;
}

.radar-para-quem .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.para-quem-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.para-quem-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.para-quem-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #083FCF 0%, #B073FF 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.para-quem-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.para-quem-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

/* ===============================
   FORM CTA SECTION
   =============================== */

.radar-form-cta {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #EFE2FF 100%);
}

.form-cta-wrapper {
    max-width: 580px;
    margin: 0 auto;
}

.form-cta-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-cta-logo {
    height: 40px;
    width: auto;
    display: block;
    margin: 0 auto 1.5rem;
    opacity: 0.95;
}

.form-cta-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.form-cta-header p {
    font-size: 1.125rem;
    color: #6B7280;
    line-height: 1.6;
    font-family: 'Nunito', sans-serif;
}

.radar-form-cta .waitlist-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-required {
    color: #FC7D55;
    font-weight: 700;
}

.form-radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.25rem;
}

.form-radio-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    color: #4B5563;
    font-weight: 400;
    cursor: pointer;
}

.form-radio-label input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #083FCF;
    cursor: pointer;
}

/* ===============================
   CARD EXPAND — sistema de expansão inline
   =============================== */

/* Container dos cards: não quebra linha */
.deliverables-cards {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
}

/* Cabeçalho do card: ícone + título */
.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    transition: flex-direction 0.35s ease, align-items 0.35s ease;
}

/* Área de expansão — escondida por padrão */
.card-expand-area {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease 0.15s,
                margin-top 0.35s ease;
}

.card-expand-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

/* === ESTADO ATIVO === */
.deliverable-card.is-active {
    flex-basis: 56% !important;
    max-width: 56% !important;
    border-color: #083FCF;
    box-shadow: 0 12px 40px rgba(8, 63, 207, 0.18);
    cursor: default;
}

.deliverable-card.is-active .card-expand-area {
    max-height: 380px;
    height: 380px;
    opacity: 1;
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deliverable-card.is-active .card-text {
    opacity: 0.7;
}

/* === ESTADO COMPACTO === */
.deliverable-card.is-compact {
    flex-basis: 18% !important;
    max-width: 18% !important;
    min-width: 140px;
    padding: 1.25rem 1rem;
    opacity: 0.7;
    text-align: left;
    cursor: pointer;
    align-self: flex-start;
}

.deliverable-card.is-compact .card-header {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0;
}

.deliverable-card.is-compact .card-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.deliverable-card.is-compact .card-icon svg {
    width: 40px;
    height: 40px;
}

.deliverable-card.is-compact .card-title {
    font-size: 0.78rem;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 0;
    color: #374151;
}

.deliverable-card.is-compact .card-text {
    display: none;
}

.deliverable-card.is-compact:hover {
    opacity: 1;
    border-color: #083FCF;
    transform: none;
}

.deliverable-card.is-compact::after {
    content: "Ver exemplo";
    display: block;
    margin-top: 0.75rem;
    font-size: 0.7rem;
    color: #083FCF;
    text-align: center;
    opacity: 0.7;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Botão "Ver exemplo" no estado normal */
.card-cta-hint {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.35rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #083FCF;
    border: 1.5px solid #083FCF;
    border-radius: 20px;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, color 0.2s ease;
    pointer-events: none;
}

.deliverable-card:not(.is-active):not(.is-compact):hover .card-cta-hint {
    background: #083FCF;
    color: #ffffff;
}

/* Oculta o hint quando o card está ativo ou compacto */
.deliverable-card.is-active .card-cta-hint,
.deliverable-card.is-compact .card-cta-hint {
    display: none;
}

/* ===============================
   CLOSING SECTION
   =============================== */

.radar-closing {
    padding: 4rem 0;
    background: #070d1f;
    text-align: center;
}

.radar-closing .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.closing-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.closing-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.closing-text {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-family: 'Nunito', sans-serif;
    margin: 0;
    max-width: 600px;
}

.closing-text strong {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.closing-logo {
    height: 32px;
    width: auto;
    opacity: 0.4;
    margin-top: 0.5rem;
}

/* Responsivo - Novas Seções */
@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .problem-left {
        justify-content: flex-start;
    }

    .problem-headline {
        font-size: 1.75rem;
    }

    .problem-questions {
        grid-template-columns: 1fr;
    }

    .live-item {
        gap: 1.25rem;
    }

    .live-item-number {
        font-size: 2rem;
        min-width: 44px;
    }

    .live-item-content h3 {
        font-size: 1.05rem;
    }

    .para-quem-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-cta-header h2 {
        font-size: 1.875rem;
    }
}

@media (max-width: 480px) {
    .para-quem-grid {
        grid-template-columns: 1fr;
    }

    .radar-form-cta .waitlist-form {
        padding: 1.5rem;
    }
}

/* ===============================
   WAITLIST FORM SECTION
   =============================== */

.pnae-waitlist {
    padding: 5rem 0;
    background: linear-gradient(180deg, #EFE2FF 0%, #ffffff 100%);
}

.waitlist-content {
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1F2937;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.waitlist-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #EFE2FF;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1F2937;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    transition: all 0.2s;
    background: white;
}

.form-group input:hover,
.form-group select:hover {
    border-color: #d1d5db;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #083FCF;
    box-shadow: 0 0 0 3px rgba(8, 63, 207, 0.1);
}

.waitlist-form .btn {
    margin-top: 1rem;
    width: 100%;
}

/* ===============================
   PROOF SECTION
   =============================== */

.pnae-proof {
    padding: 4rem 0;
    background: white;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.proof-card {
    background: linear-gradient(135deg, #EFE2FF 0%, #FFE4DC 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.proof-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #083FCF;
}

.proof-card p {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.5;
    margin: 0;
}

/* ===============================
   DELIVERABLES SECTION
   =============================== */

.pnae-deliverables {
    padding: 5rem 0;
    background-image: url('../images/lp%20live%20radar/background_hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.deliverables-logo-wrap {
    text-align: center;
    margin-bottom: 1.5rem;
}

.deliverables-logo {
    height: 44px;
    width: auto;
    opacity: 0.95;
}

.pnae-deliverables .section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-weight: 700;
}

.pnae-deliverables .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.pnae-deliverables .mockup-caption {
    color: rgba(255, 255, 255, 0.6);
}

.deliverables-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.deliverables-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.deliverable-card {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(33.333% - 1rem);
    max-width: 500px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #EFE2FF;
    transition: flex-basis 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease,
                border-color 0.3s ease,
                opacity 0.35s ease,
                padding 0.35s ease;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
}

.deliverable-card:not(.is-active):not(.is-compact):hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #083FCF;
}

.deliverable-card .card-icon {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
}

.deliverable-card .card-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1F2937;
    font-weight: 700;
}

.deliverable-card .card-text {
    color: #6B7280;
    line-height: 1.7;
    font-size: 1.1rem;
}

.deliverables-visual {
    text-align: center;
    position: relative;
}

.mockup-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.deliverables-visual:hover .mockup-image {
    transform: scale(1.02);
}

.mockup-caption {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #9CA3AF;
    font-style: italic;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.section-cta .btn {
    box-shadow: 0 4px 12px rgba(8, 63, 207, 0.3);
}

/* ===============================
   HOW IT WORKS SECTION
   =============================== */

.pnae-how-it-works {
    padding: 5rem 0;
    background: white;
}

.pnae-how-it-works .section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1F2937;
    font-weight: 700;
}

.progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem auto;
    max-width: 600px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e5e7eb;
    border: 4px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.progress-step.active .step-dot {
    background: #083FCF;
    box-shadow: 0 4px 12px rgba(8, 63, 207, 0.3);
}

.step-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-step.active .step-label {
    color: #083FCF;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: #e5e7eb;
    margin: 0 1rem;
    max-width: 100px;
}

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

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #083FCF;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #083FCF 0%, #0629a3 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(8, 63, 207, 0.3);
}

.step-title {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #1F2937;
    font-weight: 700;
}

.step-text {
    color: #6B7280;
    line-height: 1.7;
    font-size: 1rem;
}

/* ===============================
   WHAT WE ASK SECTION
   =============================== */

.pnae-what-we-ask {
    padding: 5rem 0;
    background: #EFE2FF;
}

.pnae-what-we-ask .section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1F2937;
    font-weight: 700;
}

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

.topic-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.topic-card:hover {
    border-color: #083FCF;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.topic-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1F2937;
    font-weight: 700;
}

.topic-text {
    font-size: 0.95rem;
    color: #6B7280;
}

.examples-block {
    margin-top: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #083FCF;
}

.examples-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #1F2937;
    font-weight: 700;
}

.example-questions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.question-example {
    background: #F9FAFB;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.question-text {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1F2937;
    font-size: 1.05rem;
}

.question-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.option-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: not-allowed;
    opacity: 0.8;
    font-size: 0.95rem;
    font-weight: 500;
}

.option-label input[type="radio"] {
    cursor: not-allowed;
    accent-color: #083FCF;
}

/* ===============================
   PRIVACY SECTION
   =============================== */

.pnae-privacy {
    padding: 5rem 0;
    background: white;
}

.pnae-privacy .section-title {
    font-size: 2.75rem;
    text-align: left;
    margin-bottom: 2rem;
    color: #1F2937;
    font-weight: 700;
}

.privacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.privacy-text {
    font-size: 1.25rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.privacy-checklist {
    list-style: none;
}

.privacy-checklist li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
}

.privacy-checklist .check-icon {
    flex-shrink: 0;
}

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

.privacy-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* ===============================
   SUPPORTERS SECTION
   =============================== */

.pnae-supporters {
    padding: 5rem 0;
    background: #F9FAFB;
}

.pnae-supporters .section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1F2937;
    font-weight: 700;
}

.pnae-supporters .section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.supporter-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    min-height: 120px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.supporter-logo:hover {
    border-color: #083FCF;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.logo-placeholder {
    color: #9CA3AF;
    font-weight: 600;
    font-size: 0.875rem;
}

.pnae-supporters .section-cta {
    margin-top: 3rem;
}

.pnae-supporters .btn-secondary {
    background: white;
    color: #083FCF;
    border: 2px solid #083FCF;
    font-weight: 600;
}

.pnae-supporters .btn-secondary:hover {
    background: #083FCF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 63, 207, 0.3);
}

/* ===============================
   TIMELINE SECTION
   =============================== */

.pnae-timeline {
    padding: 5rem 0;
    background: linear-gradient(180deg, #EFE2FF 0%, #ffffff 100%);
}

.pnae-timeline .section-title {
    font-size: 2.75rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1F2937;
    font-weight: 700;
}

.timeline-track {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(180deg, #083FCF 0%, #FC7D55 100%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #083FCF 0%, #0629a3 100%);
    border-radius: 50%;
    flex-shrink: 0;
    border: 5px solid white;
    box-shadow: 0 4px 16px rgba(8, 63, 207, 0.3);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.25rem;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: #083FCF;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.timeline-title {
    font-size: 1.375rem;
    margin-bottom: 0.5rem;
    color: #1F2937;
    font-weight: 700;
}

.timeline-date {
    color: #083FCF;
    font-weight: 700;
    font-size: 1.125rem;
}

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

.faq-section {
    background-color: #ffffff;
    padding: 4rem 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #083FCF;
    margin-bottom: 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.faq-item {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #083FCF;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    border-color: #083FCF;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
}

.faq-question:hover {
    background-color: rgba(8, 63, 207, 0.05);
}

.faq-item.active .faq-question {
    background-color: rgba(8, 63, 207, 0.05);
    border-bottom: 1px solid #e5e7eb;
}

.faq-question h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0;
    flex: 1;
    line-height: 1.4;
    padding-right: 1.5rem;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #083FCF;
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background-color: #FC7D55;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #ffffff;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem 2rem;
}

.faq-answer p {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* ===============================
   FINAL CTA SECTION
   =============================== */

.pnae-final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #083FCF 0%, #0629a3 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pnae-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.final-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
}

.final-cta-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.final-cta-content .btn {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.final-cta-content .btn:hover {
    transform: scale(1.08);
}

.final-cta-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ===============================
   MOBILE STICKY CTA
   =============================== */

.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
    border-top: 3px solid #083FCF;
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

.mobile-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-cta-text {
    font-weight: 700;
    color: #1F2937;
    font-size: 1rem;
}

.mobile-sticky-cta .btn {
    box-shadow: 0 2px 8px rgba(8, 63, 207, 0.3);
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */

/* Hero visual col — hidden on mobile, shown on desktop */
.hero-visual-col {
    display: none;
}

@media (min-width: 1025px) {
    .hero-visual-col {
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-visual-col {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 520px;
        margin: 0 auto;
    }

    .radar-cards-grid {
        min-height: 520px;
    }

    .radar-cards-grid .crm-hero-card-main {
        width: 220px;
    }

    .radar-cards-grid .crm-hero-card-secondary {
        width: 195px;
        top: 145px;
        left: 10px;
    }

    .radar-cards-grid .crm-hero-card-accent {
        width: 155px;
        top: 145px;
        right: 10px;
    }

    .radar-card-extra {
        width: 230px;
        top: 305px;
    }
}

/* ---- Tablet Large (≤1024px) ---- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        padding-right: 0;
        max-width: 680px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .deliverable-card {
        flex: 0 0 calc(50% - 0.75rem);
        max-width: 340px;
    }

    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .privacy-visual {
        order: -1;
        text-align: center;
    }

    .pnae-privacy .section-title {
        text-align: center;
    }

    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- Tablet / Mobile (≤768px) ---- */
@media (max-width: 768px) {
    /* Container padding */
    .pnae-hero .container,
    .pnae-waitlist .container,
    .pnae-proof .container,
    .pnae-deliverables .container,
    .pnae-how-it-works .container,
    .pnae-what-we-ask .container,
    .pnae-privacy .container,
    .pnae-supporters .container,
    .pnae-timeline .container,
    .faq-section .container,
    .pnae-final-cta .container,
    .radar-problem .container,
    .radar-live-content .container,
    .radar-para-quem .container,
    .radar-form-cta .container {
        padding: 0 1.25rem;
    }

    /* Mobile sticky CTA */
    .mobile-sticky-cta {
        display: block;
    }

    /* Subnav */
    .pnae-subnav {
        padding: 0.75rem 0;
    }

    .subnav-links {
        display: none;
    }

    .subnav-content {
        justify-content: center;
    }

    /* Hero */
    .pnae-hero {
        padding: 2.5rem 0 3rem;
    }

    .hero-content {
        text-align: left;
        max-width: 100%;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Section titles */
    .section-title,
    .pnae-deliverables .section-title,
    .pnae-how-it-works .section-title,
    .pnae-what-we-ask .section-title,
    .pnae-privacy .section-title,
    .pnae-supporters .section-title,
    .pnae-timeline .section-title {
        font-size: 1.875rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Section paddings */
    .pnae-waitlist,
    .pnae-deliverables,
    .pnae-how-it-works,
    .pnae-what-we-ask,
    .pnae-privacy,
    .pnae-supporters,
    .pnae-timeline {
        padding: 3rem 0;
    }

    .pnae-final-cta {
        padding: 4rem 0;
    }

    /* Waitlist form */
    .waitlist-form {
        padding: 1.75rem 1.25rem;
    }

    /* Proof */
    .proof-grid {
        grid-template-columns: 1fr;
    }

    /* Deliverables */
    .deliverables-grid {
        gap: 2rem;
        margin-top: 2rem;
    }

    .deliverable-card {
        padding: 1.5rem;
    }

    .deliverable-card:hover {
        transform: none;
    }

    /* How it works */
    .pnae-how-it-works .section-title {
        margin-bottom: 2rem;
    }

    .progress-bar {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin: 2rem auto;
    }

    .progress-step {
        flex-direction: row;
        gap: 1rem;
        width: 100%;
        max-width: 380px;
    }

    .step-label {
        text-align: left;
        text-transform: none;
        font-size: 0.9rem;
        letter-spacing: 0;
    }

    .progress-line {
        width: 3px;
        height: 24px;
        max-width: none;
        margin: 0 0 0 22px;
        align-self: flex-start;
    }

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

    .step-card {
        padding: 1.75rem 1.5rem;
    }

    /* Topics */
    .topics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .topic-card {
        padding: 1.5rem;
    }

    .topic-card:hover {
        transform: none;
    }

    .examples-block {
        padding: 1.75rem 1.25rem;
        margin-top: 2.5rem;
    }

    .examples-title {
        font-size: 1.375rem;
        margin-bottom: 1.75rem;
    }

    /* Privacy */
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .pnae-privacy .section-title {
        text-align: center;
    }

    .privacy-visual {
        order: -1;
        text-align: center;
    }

    .privacy-text {
        font-size: 1.05rem;
    }

    .privacy-checklist li {
        font-size: 1rem;
    }

    /* Supporters */
    .supporters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .supporter-logo {
        padding: 1.25rem;
        min-height: 90px;
    }

    .supporter-logo:hover {
        transform: none;
    }

    /* Timeline */
    .timeline-track {
        margin-top: 2rem;
    }

    .timeline-track::before {
        left: 19px;
        top: 20px;
        bottom: 20px;
    }

    .timeline-dot {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .timeline-item {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .timeline-content {
        padding: 1.25rem;
    }

    .timeline-title {
        font-size: 1.125rem;
    }

    .timeline-date {
        font-size: 1rem;
    }

    /* FAQ */
    .faq-section {
        padding: 3rem 0;
    }

    .faq-header {
        margin-bottom: 2.5rem;
    }

    .faq-title {
        font-size: 1.875rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 1.125rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    /* Final CTA */
    .final-cta-title {
        font-size: 1.875rem;
    }

    .final-cta-subtitle {
        font-size: 1.05rem;
    }

    .final-cta-content .btn {
        transform: none;
        width: 100%;
        max-width: 380px;
    }

    .final-cta-content .btn:hover {
        transform: translateY(-2px);
    }

    /* Mobile sticky CTA */
    .mobile-cta-text {
        font-size: 0.9rem;
    }
}

/* ---- Mobile Small (≤480px) ---- */
@media (max-width: 480px) {
    /* Container */
    .pnae-hero .container,
    .pnae-waitlist .container,
    .pnae-proof .container,
    .pnae-deliverables .container,
    .pnae-how-it-works .container,
    .pnae-what-we-ask .container,
    .pnae-privacy .container,
    .pnae-supporters .container,
    .pnae-timeline .container,
    .faq-section .container,
    .pnae-final-cta .container,
    .radar-problem .container,
    .radar-live-content .container,
    .radar-para-quem .container,
    .radar-form-cta .container {
        padding: 0 1rem;
    }

    /* Hero */
    .hero-title {
        font-size: 1.625rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    /* Section titles */
    .section-title,
    .pnae-deliverables .section-title,
    .pnae-how-it-works .section-title,
    .pnae-what-we-ask .section-title,
    .pnae-privacy .section-title,
    .pnae-supporters .section-title,
    .pnae-timeline .section-title {
        font-size: 1.625rem;
    }

    /* Waitlist form */
    .waitlist-form {
        padding: 1.25rem 1rem;
        border-radius: 12px;
    }

    .form-group input,
    .form-group select {
        font-size: 0.95rem;
        padding: 0.75rem 1rem;
    }

    /* Proof cards */
    .proof-card {
        padding: 1.5rem;
    }

    .proof-card p {
        font-size: 1rem;
    }

    /* Deliverable cards */
    .deliverable-card {
        padding: 1.25rem;
    }

    .deliverable-card .card-title {
        font-size: 1.1rem;
    }

    /* Steps */
    .step-card {
        padding: 1.5rem 1.25rem;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.375rem;
    }

    .step-title {
        font-size: 1.125rem;
    }

    /* Topics */
    .topic-card {
        padding: 1.25rem;
    }

    .topic-title {
        font-size: 1.1rem;
    }

    /* Examples block */
    .examples-block {
        padding: 1.25rem 1rem;
        border-radius: 12px;
    }

    .question-options {
        flex-direction: column;
    }

    .option-label {
        width: 100%;
    }

    /* Supporters */
    .supporters-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .supporter-logo {
        padding: 1rem;
        min-height: 80px;
    }

    .logo-placeholder {
        font-size: 0.8rem;
        text-align: center;
    }

    /* Timeline */
    .timeline-track::before {
        left: 14px;
    }

    .timeline-dot {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .timeline-title {
        font-size: 1rem;
    }

    /* FAQ */
    .faq-title {
        font-size: 1.625rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }

    .faq-answer p {
        font-size: 0.875rem;
    }

    /* Final CTA */
    .final-cta-title {
        font-size: 1.625rem;
    }

    .final-cta-subtitle {
        font-size: 1rem;
    }

    /* Mobile sticky CTA */
    .mobile-cta-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .mobile-sticky-cta .btn {
        width: 100%;
    }
}
