/* ============================================================================
 * TraPay — /creating-verified-paypal-account custom layout
 * Trustworthy/banking aesthetic. Light cream/blue palette. Card-mockup hero.
 * ============================================================================ */

:root {
    --pp-blue: #003087;
    --pp-blue-light: #009cde;
    --pp-blue-50: #eef4fc;
    --pp-blue-100: #dbeafe;
    --pp-cool: #f8fafc;
    --pp-cool-dark: #e2e8f0;
}

/* HERO */
.pp-hero {
    background: linear-gradient(135deg, #fff 0%, var(--pp-blue-50) 100%);
    padding: 5rem 1.5rem 6rem;
    overflow: hidden;
    position: relative;
}
.pp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(0, 48, 135, 0.07) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at top, black, transparent 70%);
}
.pp-hero__inner {
    position: relative;
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 900px) {
    .pp-hero__inner { grid-template-columns: 1.2fr 0.8fr; }
}

.pp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #d1e2f7;
    box-shadow: 0 4px 14px -4px rgba(0, 48, 135, 0.12);
    color: var(--pp-blue);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
}
.pp-badge svg { width: 14px; height: 14px; color: #10b981; }

.pp-title {
    margin: 1.5rem 0 0;
    font-family: 'Estedad','Vazirmatn',sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 1.4rem + 2.2vw, 3.4rem);
    line-height: 1.25;
    color: #0a1f3f;
    letter-spacing: -0.01em;
}
.pp-title__pp {
    background: linear-gradient(120deg, var(--pp-blue) 0%, var(--pp-blue-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Estedad','Vazirmatn',sans-serif;
}

.pp-lead {
    margin-top: 1.25rem;
    font-size: 1.0625rem;
    line-height: 1.95;
    color: #4a5a72;
    max-width: 34rem;
}

.pp-features {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}
.pp-features li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1f2937;
}
.pp-features__icon {
    width: 24px; height: 24px;
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.85rem;
    flex-shrink: 0;
}

.pp-hero__ctas {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.pp-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    border-radius: 0.875rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.pp-cta svg { width: 16px; height: 16px; }
.pp-cta--primary {
    background: linear-gradient(120deg, var(--pp-blue) 0%, var(--pp-blue-light) 100%);
    color: white;
    box-shadow: 0 12px 28px -8px rgba(0, 48, 135, 0.45);
}
.pp-cta--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -10px rgba(0, 48, 135, 0.55);
}
.pp-cta--ghost {
    background: white;
    color: var(--pp-blue);
    border: 1.5px solid #d1e2f7;
}
.pp-cta--ghost:hover { background: #eff6ff; border-color: var(--pp-blue); }
.pp-cta--big { padding: 1.15rem 2.5rem; font-size: 1.0625rem; }

/* Card Mockup — PayPal dashboard look */
.pp-hero__visual {
    display: flex;
    justify-content: center;
}
.pp-card-mockup {
    width: 100%;
    max-width: 23rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 40px 80px -20px rgba(0, 48, 135, 0.32), 0 8px 24px -8px rgba(0, 48, 135, 0.18);
    overflow: hidden;
    transform: rotate(-2deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 48, 135, 0.06);
}
.pp-card-mockup:hover {
    transform: rotate(0);
    box-shadow: 0 50px 100px -20px rgba(0, 48, 135, 0.38), 0 12px 28px -8px rgba(0, 48, 135, 0.22);
}

/* HEAD — brand + verified chip */
.pp-card-mockup__head {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--pp-blue) 0%, var(--pp-blue-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.pp-card-mockup__head::after {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.pp-card-mockup__logo {
    width: 42px; height: 42px;
    background: white;
    padding: 7px;
    border-radius: 10px;
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.15);
}
.pp-card-mockup__chip {
    background: rgba(16, 185, 129, 0.95);
    padding: 0.4rem 0.85rem 0.4rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 10px -2px rgba(16, 185, 129, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    position: relative;
    letter-spacing: 0.01em;
}
.pp-card-mockup__chip svg {
    width: 13px; height: 13px;
}

/* BODY — status rows */
.pp-card-mockup__body { padding: 1.25rem 1.5rem; }
.pp-card-mockup__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px dashed #eef2f7;
    font-size: 0.875rem;
}
.pp-card-mockup__row:last-child { border-bottom: none; }
.pp-card-mockup__row span { color: #6b7280; font-weight: 500; }
.pp-card-mockup__row strong { color: #0a1f3f; font-weight: 700; font-variant-numeric: tabular-nums; }
.pp-card-mockup__ok { color: #10b981 !important; }

/* FOOT — shield + last activity */
.pp-card-mockup__foot {
    padding: 0.75rem 1.5rem;
    background: var(--pp-blue-50);
    border-top: 1px solid #dbe7f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}
.pp-card-mockup__shield {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--pp-blue);
}
.pp-card-mockup__shield svg {
    width: 14px; height: 14px;
}
.pp-card-mockup__date {
    font-size: 0.68rem;
    color: #6b7280;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

/* SHARED H2 */
.pp-h2 {
    font-family: 'Estedad','Vazirmatn',sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
    line-height: 1.4;
    color: #0a1f3f;
    margin: 0 0 1.5rem;
}
.pp-h2--center { text-align: center; margin-bottom: 0; }

/* PRICE SECTION */
.pp-price {
    background: var(--pp-cool);
    padding: 5rem 1.5rem;
}
.pp-price__inner {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 900px) {
    .pp-price__inner { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; }
}

.pp-price__sale {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 30px 60px -20px rgba(0, 48, 135, 0.18);
    text-align: center;
    position: sticky;
    top: 6rem;
}
.pp-price__tag {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.pp-price__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 0.5rem;
}
.pp-price__old {
    font-size: 0.9375rem;
    color: #9ca3af;
    text-decoration: line-through;
}
.pp-price__discount {
    background: #fee2e2;
    color: #991b1b;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}
.pp-price__main {
    margin: 1rem 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}
.pp-price__amount {
    font-family: 'Estedad','Vazirmatn',sans-serif;
    font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
    font-weight: 800;
    color: var(--pp-blue);
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.pp-price__unit {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 600;
}
.pp-price__note {
    margin: 1rem 0 2rem;
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.75;
}
.pp-price__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1.15rem 1.5rem;
    background: linear-gradient(120deg, var(--pp-blue) 0%, var(--pp-blue-light) 100%);
    color: white;
    border-radius: 0.875rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 12px 28px -8px rgba(0, 48, 135, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}
.pp-price__cta:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(0, 48, 135, 0.55); }
.pp-price__cta svg { width: 18px; height: 18px; }

.pp-price__guarantees {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
}
.pp-price__guarantees span {
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
}

/* WHAT YOU GET LIST */
.pp-price__what h2 { margin-bottom: 1.5rem; }
.pp-price__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 600px) {
    .pp-price__list { grid-template-columns: 1fr 1fr; }
}
.pp-price__item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.pp-price__item:hover {
    transform: translateY(-2px);
    border-color: var(--pp-blue);
    box-shadow: 0 12px 24px -8px rgba(0, 48, 135, 0.15);
}
.pp-price__icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.pp-price__item h3 {
    margin: 0 0 0.35rem;
    font-weight: 700;
    font-size: 0.9375rem;
    color: #0a1f3f;
}
.pp-price__item p {
    margin: 0;
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.7;
}

/* STEPS TIMELINE */
.pp-steps {
    background: white;
    padding: 5rem 1.5rem;
}
.pp-steps__timeline {
    max-width: 72rem;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
}
@media (min-width: 700px) {
    .pp-steps__timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
    .pp-steps__timeline { grid-template-columns: repeat(4, 1fr); }
}
.pp-step {
    background: var(--pp-cool);
    border: 1px solid var(--pp-cool-dark);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.pp-step:hover {
    transform: translateY(-4px);
    border-color: var(--pp-blue);
    background: white;
    box-shadow: 0 20px 40px -16px rgba(0, 48, 135, 0.2);
}
.pp-step__num {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--pp-blue) 0%, var(--pp-blue-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Estedad','Vazirmatn',sans-serif;
    font-weight: 800; font-size: 1.5rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 20px -4px rgba(0, 48, 135, 0.4);
}
.pp-step h3 {
    margin: 0 0 0.65rem;
    font-weight: 700; font-size: 1.0625rem;
    color: #0a1f3f;
}
.pp-step p {
    margin: 0 0 0.85rem;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.75;
}
.pp-step__time {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* TRUST GRID */
.pp-trust {
    background: var(--pp-blue-50);
    padding: 5rem 1.5rem;
}
.pp-trust__grid {
    max-width: 72rem;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (min-width: 700px) { .pp-trust__grid { grid-template-columns: repeat(4, 1fr); } }
.pp-trust__card {
    background: white;
    border-radius: 1.25rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 12px 30px -12px rgba(0, 48, 135, 0.12);
}
.pp-trust__big {
    font-family: 'Estedad','Vazirmatn',sans-serif;
    font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
    font-weight: 800;
    background: linear-gradient(120deg, var(--pp-blue) 0%, var(--pp-blue-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.pp-trust__card p {
    margin: 0;
    font-size: 0.9375rem;
    color: #4a5a72;
    line-height: 1.6;
}

/* FAQ */
.pp-faq {
    max-width: 60rem;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}
.pp-faq__list {
    margin-top: 3rem;
    display: grid;
    gap: 0.75rem;
}
.pp-faq details {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.pp-faq details[open] {
    border-color: var(--pp-blue);
    box-shadow: 0 12px 30px -12px rgba(0, 48, 135, 0.15);
}
.pp-faq summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
    color: #0a1f3f;
}
.pp-faq summary::-webkit-details-marker { display: none; }
.pp-faq__chev {
    width: 28px; height: 28px;
    background: #eff6ff;
    color: var(--pp-blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 300;
    transition: transform 0.25s, background 0.25s, color 0.25s;
}
.pp-faq details[open] .pp-faq__chev {
    transform: rotate(45deg);
    background: var(--pp-blue);
    color: white;
}
.pp-faq p {
    margin: 1rem 0 0;
    color: #4a5a72;
    line-height: 1.9;
    font-size: 0.9375rem;
}

/* ARTICLE */
.pp-article {
    background: white;
    padding: 4rem 1.5rem;
}
.pp-article__inner { max-width: 60rem; margin: 0 auto; }
.pp-article__inner h3 {
    font-family: 'Estedad','Vazirmatn',sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #0a1f3f;
    margin: 2.5rem 0 1rem;
}
.pp-article__inner p { margin: 0 0 1rem; font-size: 1rem; line-height: 2; color: #1f2937; }
.pp-article__inner ul { margin: 0 0 1.5rem; padding-inline-start: 1.5rem; list-style: disc; }
.pp-article__inner li { margin: 0.5rem 0; font-size: 1rem; line-height: 1.95; color: #1f2937; }
.pp-article__inner li strong { color: var(--pp-blue); }
.pp-article__inner a { color: var(--pp-blue); font-weight: 600; text-decoration: none; }
.pp-article__inner a:hover { text-decoration: underline; }

/* FINAL CTA */
.pp-cta-end {
    background: linear-gradient(135deg, var(--pp-blue) 0%, var(--pp-blue-light) 100%);
    padding: 4rem 1.5rem;
}
.pp-cta-end__inner {
    max-width: 60rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    color: white;
}
@media (min-width: 700px) {
    .pp-cta-end__inner { grid-template-columns: 1fr auto; gap: 3rem; }
}
.pp-cta-end__copy h2 {
    margin: 0;
    font-family: 'Estedad','Vazirmatn',sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
    color: white;
}
.pp-cta-end__copy p {
    margin: 0.5rem 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
}
.pp-cta-end .pp-cta--primary {
    background: white;
    color: var(--pp-blue);
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.25);
}
.pp-cta-end .pp-cta--primary:hover {
    box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.3);
}

[dir="rtl"] .rtl-flip { transform: scaleX(-1); }
