/* ==========================================
   SHARED SECTION HEADER
========================================== */

.ptn-section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--purple);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ptn-section-title {
    margin: 0 0 16px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}


/* ==========================================
   SECTION 2 — PROOF STRIP
========================================== */

.ptn-proof-section {
    padding: 0 var(--page-padding) 80px;
}

.ptn-proof-card {
    background: #F5F0FF;
    border-radius: 28px;
    padding: 56px 56px;

    box-shadow:
        0 1px 3px rgba(28, 27, 41, 0.06),
        0 24px 64px -12px rgba(28, 27, 41, 0.22);
}

.ptn-proof-header {
    margin-bottom: 40px;
    max-width: 640px;
}

.ptn-proof-header p {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.ptn-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ptn-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 24px;
    border-left: 1px solid rgba(107, 57, 189, 0.15);
}

.ptn-stat:first-child {
    padding-left: 0;
    border-left: none;
}

.ptn-stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--purple);
    letter-spacing: -0.02em;
    line-height: 1;
}

.ptn-stat-label {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.4;
}


/* ==========================================
   SECTION 3 — HOW IT WORKS
========================================== */

.ptn-how-section {
    padding: 0 var(--page-padding) 80px;
}

.ptn-how-card {
    background: linear-gradient(
        160deg,
        #3D1E78 0%,
        #6B39BD 45%,
        #8A5BDB 75%,
        #A872FF 100%
    );

    border-radius: 28px;
    padding: 64px 56px;

    box-shadow:
        0 30px 70px -24px rgba(107, 57, 189, 0.45);
}

.ptn-how-card .ptn-section-eyebrow {
    color: rgba(255, 255, 255, 0.65);
}

.ptn-how-card .ptn-section-title {
    color: var(--white);
}

.ptn-how-header {
    max-width: 640px;
    margin-bottom: 44px;
}

.ptn-how-subtitle {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.ptn-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.ptn-how-item {
    padding: 26px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.ptn-how-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;
}

.ptn-how-icon svg {
    color: var(--white);
}

.ptn-how-item-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--white);
    margin: 0 0 8px;
}

.ptn-how-item-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}


/* CTA divider fix — cancel card's own padding so border-top runs edge-to-edge */

.ptn-how-card .ptn-hero-cta {
    margin-left: -56px;
    margin-right: -56px;
    padding: 32px 56px 0;
}


/* ==========================================
   SECTION 4 — FAQ
========================================== */

.ptn-faq-section {
    padding: 0 var(--page-padding) 80px;
}

.ptn-faq-card {
    background: var(--white);

    border-radius: 28px;
    padding: 64px 56px;
    max-width: 860px;
    margin: 0 auto;

    box-shadow:
        0 1px 3px rgba(28, 27, 41, 0.06),
        0 24px 64px -12px rgba(28, 27, 41, 0.22);
}

.ptn-faq-card .ptn-section-title {
    margin-bottom: 0;
}

.ptn-faq-header {
    margin-bottom: 40px;
}

.ptn-faq-list {
    display: flex;
    flex-direction: column;
}

.ptn-faq-item {
    border-top: 1px solid rgba(28, 27, 41, 0.07);
}

.ptn-faq-item:last-child {
    border-bottom: 1px solid rgba(28, 27, 41, 0.07);
}

.ptn-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    padding: 20px 0;

    background: none;
    border: none;
    cursor: pointer;

    text-align: left;

    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);

    transition: color 0.15s ease;
}

.ptn-faq-question:hover {
    color: var(--purple);
}

.ptn-faq-chevron {
    color: var(--ink-soft);
    opacity: 0.5;
}

.ptn-faq-item.open .ptn-faq-chevron {
    color: var(--purple);
    opacity: 1;
}

.ptn-faq-answer {
    display: none;
    padding-bottom: 20px;
}

.ptn-faq-item.open .ptn-faq-answer {
    display: block;
}

.ptn-faq-answer p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}