/* ═══════════════════════════════════════════════════════════
   SignDeaf — Pricing Page  (pricing.css)
   Full psychology-driven conversion design
   ═══════════════════════════════════════════════════════════ */

/* ── Keyframes ───────────────────────────────────────────────────────────── */
@keyframes sdp-fade-up   { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes sdp-pulse-dot { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.5);opacity:.5;} }
@keyframes sdp-glow-ring { 0%,100%{box-shadow:0 0 0 0 rgba(25,113,194,.35);} 60%{box-shadow:0 0 0 14px rgba(25,113,194,0);} }
@keyframes sdp-shimmer   { 0%{background-position:-600px 0;} 100%{background-position:600px 0;} }
@keyframes sdp-flip      { 0%{transform:rotateX(0);} 50%{transform:rotateX(-90deg);} 100%{transform:rotateX(0);} }
@keyframes sdp-toast-in  { from{transform:translateX(-120%);opacity:0;} to{transform:translateX(0);opacity:1;} }
@keyframes sdp-toast-out { from{transform:translateX(0);opacity:1;} to{transform:translateX(-120%);opacity:0;} }
@keyframes sdp-modal-in  { from{opacity:0;transform:scale(.92) translateY(20px);} to{opacity:1;transform:scale(1) translateY(0);} }
@keyframes sdp-badge-bob { 0%,100%{transform:translateY(0) rotate(-2deg);} 50%{transform:translateY(-4px) rotate(2deg);} }
@keyframes sdp-number-change { 0%{opacity:0;transform:translateY(-10px);} 100%{opacity:1;transform:translateY(0);} }

/* ── Utilities ───────────────────────────────────────────────────────────── */
.sdp-fade-in { opacity:0; transform:translateY(20px); transition:opacity .6s ease, transform .6s ease; }
.sdp-fade-in.is-visible { opacity:1; transform:translateY(0); }

/* ══ URGENCY BAR ══════════════════════════════════════════════════════════════ */
.sdp-urgency-bar {
    background: linear-gradient(90deg, #92400e, #b45309, #92400e);
    background-size: 200% 100%;
    animation: sdp-shimmer 4s linear infinite;
    padding: 10px 24px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}
.sdp-urgency-bar strong { color: #fde68a; }
.sdp-countdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    font-weight: 900;
}
.sdp-cd-block {
    background: rgba(0,0,0,.3);
    border-radius: 5px;
    padding: 2px 7px;
    min-width: 30px;
    text-align: center;
    letter-spacing: .05em;
}
.sdp-cd-sep { opacity: .7; margin: 0 1px; }

/* ══ HERO ══════════════════════════════════════════════════════════════════════ */
.sdp-hero {
    background: linear-gradient(160deg, #030810 0%, #07122a 50%, #050e1e 100%);
    padding: 80px 0 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sdp-hero::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, rgba(25,113,194,.18) 0%, transparent 65%);
    pointer-events: none;
}
.sdp-hero-container { position:relative;z-index:1;max-width:760px;margin:0 auto;padding:0 24px; }

.sdp-live-bar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.7);
    margin-bottom: 28px;
    letter-spacing: .03em;
}
.sdp-live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: sdp-pulse-dot 1.4s infinite;
    flex-shrink: 0;
}
.sdp-live-bar strong { color: #fff; }

.sdp-hero-h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.04em;
    color: #fff;
    margin: 0 0 18px;
}
.sdp-hero-h1 .sdp-hl {
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sdp-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.55);
    line-height: 1.65;
    margin: 0 0 32px;
    max-width: 520px;
    margin-left: auto; margin-right: auto;
}
.sdp-hero-sub strong { color: rgba(255,255,255,.9); }
.sdp-hero-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,.45);
    font-weight: 600;
}
.sdp-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.sdp-hero-trust-item::before { content:'✓'; color:#22c55e; font-weight:900; }
.sdp-hero-trust-item--heart {
    text-decoration: none;
    color: rgba(255,255,255,.55);
    border-bottom: 1px dashed rgba(255,255,255,.25);
    transition: color .2s, border-color .2s;
    padding-bottom: 1px;
}
.sdp-hero-trust-item--heart::before { content: none; }
.sdp-hero-trust-item--heart:hover {
    color: rgba(255,255,255,.9);
    border-color: rgba(255,255,255,.5);
}

/* ══ BILLING TOGGLE ═══════════════════════════════════════════════════════════ */
.sdp-toggle-wrap {
    background: linear-gradient(180deg, #07122a 0%, #09183a 100%);
    padding: 32px 24px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}
.sdp-toggle-inner {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    padding: 5px;
    position: relative;
}
.sdp-billing-btn {
    background: transparent;
    border: none;
    border-radius: 999px;
    padding: 9px 24px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,.5);
    cursor: pointer;
    transition: all .25s;
    position: relative;
    z-index: 1;
}
.sdp-billing-btn.is-active {
    background: #1971c2;
    color: #fff;
    box-shadow: 0 4px 16px rgba(25,113,194,.45);
}
.sdp-save-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 999px;
    margin-left: 6px;
    vertical-align: middle;
    transition: opacity .3s, transform .3s;
    letter-spacing: .04em;
    position: relative;
    top: -1px;
}

/* ══ PRICING CARDS ═══════════════════════════════════════════════════════════ */
.sdp-plans {
    background: linear-gradient(180deg, #09183a 0%, #0a1a3e 100%);
    padding: 36px 0 80px;
}
.sdp-plans-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.06fr 1fr;
    gap: 20px;
    align-items: start;
}

/* Base card */
.sdp-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;
    padding: 32px 28px 28px;
    backdrop-filter: blur(16px);
    position: relative;
    transition: transform .25s, box-shadow .25s;
}
.sdp-card:hover { transform: translateY(-4px); }

/* FEATURED card */
.sdp-card--featured {
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(25,113,194,.5);
    box-shadow:
        0 0 0 1px rgba(25,113,194,.2),
        0 24px 64px rgba(25,113,194,.25),
        0 8px 32px rgba(0,0,0,.3);
    animation: sdp-glow-ring 3s infinite;
    padding-top: 52px; /* room for badge */
}
.sdp-card--featured:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(25,113,194,.35),
        0 32px 80px rgba(25,113,194,.35),
        0 12px 40px rgba(0,0,0,.3);
}

/* PREMIUM card */
.sdp-card--premium {
    background: linear-gradient(160deg, rgba(15,25,50,.9), rgba(8,14,32,.95));
    border-color: rgba(139,92,246,.35);
    box-shadow: 0 16px 48px rgba(0,0,0,.35);
}

/* Popular ribbon */
.sdp-popular-ribbon {
    position: absolute;
    top: -1px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, #1971c2, #1357a0);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 7px 22px 7px;
    border-radius: 0 0 16px 16px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(25,113,194,.4);
}

/* Card plan name */
.sdp-card-name {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.5);
    margin: 0 0 6px;
}
.sdp-card--featured .sdp-card-name { color: #93c5fd; }
.sdp-card--premium  .sdp-card-name { color: #c4b5fd; }

.sdp-card-tagline {
    font-size: .9rem;
    color: rgba(255,255,255,.38);
    line-height: 1.5;
    margin: 0 0 20px;
}

/* Price */
.sdp-price-row {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 4px;
}
.sdp-currency {
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(255,255,255,.7);
    line-height: 1;
    padding-bottom: 6px;
}
.sdp-price-num {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -.04em;
    transition: color .25s;
    animation: sdp-number-change .3s ease;
}
.sdp-card--featured .sdp-price-num { color: #93c5fd; }
.sdp-price-free {
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.sdp-period {
    font-size: .875rem;
    color: rgba(255,255,255,.4);
    padding-bottom: 7px;
    font-weight: 600;
}
.sdp-price-original {
    font-size: 13px;
    color: rgba(255,255,255,.3);
    text-decoration: line-through;
    margin-bottom: 2px;
    height: 18px;
}
.sdp-annual-note {
    display: none;
    font-size: 12px;
    color: #86efac;
    font-weight: 700;
    margin-bottom: 6px;
}
.sdp-price-coffee {
    font-size: 12px;
    color: rgba(255,255,255,.35);
    margin-bottom: 22px;
    font-style: italic;
}
.sdp-card--featured .sdp-price-coffee { color: rgba(147,197,253,.5); }

/* CTA button */
.sdp-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 20px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.01em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
    margin-bottom: 10px;
}
.sdp-cta-btn--free {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.7);
    border: 1.5px solid rgba(255,255,255,.15);
}
.sdp-cta-btn--free:hover {
    background: rgba(255,255,255,.15);
    color: #fff;
}
.sdp-cta-btn--featured {
    background: linear-gradient(135deg, #1971c2, #1357a0);
    color: #fff;
    box-shadow: 0 8px 32px rgba(25,113,194,.45), inset 0 1px 0 rgba(255,255,255,.2);
}
.sdp-cta-btn--featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px rgba(25,113,194,.6), inset 0 1px 0 rgba(255,255,255,.2);
}
.sdp-cta-btn--premium {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    color: #fff;
    box-shadow: 0 8px 28px rgba(124,58,237,.4), inset 0 1px 0 rgba(255,255,255,.15);
}
.sdp-cta-btn--premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(124,58,237,.55), inset 0 1px 0 rgba(255,255,255,.15);
}
.sdp-cta-note {
    font-size: 11.5px;
    color: rgba(255,255,255,.3);
    text-align: center;
    display: block;
    margin-bottom: 22px;
}
.sdp-card--featured .sdp-cta-note { color: rgba(147,197,253,.4); }

/* Social proof under CTA */
.sdp-card-social {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255,255,255,.04);
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 12px;
    color: rgba(255,255,255,.45);
    font-weight: 600;
}
.sdp-card-avatars {
    display: flex;
    gap: -4px;
}
.sdp-avatar {
    width: 24px; height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.15);
    background: linear-gradient(135deg, #1971c2, #7c3aed);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    margin-right: -6px;
    flex-shrink: 0;
}
.sdp-avatar:last-child { margin-right: 0; }

/* Feature list */
.sdp-card-divider {
    height: 1px;
    background: rgba(255,255,255,.07);
    margin: 18px 0;
}
.sdp-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sdp-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,.65);
    line-height: 1.45;
}
.sdp-feature-item.is-key { color: rgba(255,255,255,.88); font-weight: 700; }
.sdp-feature-icon {
    flex-shrink: 0;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
    font-weight: 800;
    margin-top: 1px;
}
.sdp-feature-icon--yes  { background: rgba(34,197,94,.18); color: #22c55e; }
.sdp-feature-icon--no   { background: rgba(255,255,255,.05); color: rgba(255,255,255,.2); }
.sdp-feature-icon--star { background: rgba(25,113,194,.2); color: #60a5fa; }
.sdp-feature-item.is-no { color: rgba(255,255,255,.25); }

/* Comparison badge  */
.sdp-feature-badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}
.sdp-feature-badge--new { background:rgba(239,68,68,.18); color:#f87171; }
.sdp-feature-badge--hot { background:rgba(245,158,11,.18); color:#fbbf24; }

/* ══ TRUST BAR ════════════════════════════════════════════════════════════════ */
.sdp-trust {
    background: #fff;
    padding: 36px 24px;
    border-bottom: 1px solid #e2e8f0;
}
.sdp-trust-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    align-items: center;
}
.sdp-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #374151;
}
.sdp-trust-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}
.sdp-trust-item small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
    margin-top: 1px;
}

/* ══ TESTIMONIALS ═════════════════════════════════════════════════════════════ */
.sdp-testimonials {
    background: #f0f5ff;
    padding: 72px 0;
    border-top: 1px solid #cdd9f5;
}
.sdp-testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.sdp-testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}
.sdp-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #1971c2;
    margin-bottom: 10px;
}
.sdp-section-kicker::before, .sdp-section-kicker::after {
    content: '';
    width: 24px; height: 2px;
    background: #1971c2;
    opacity: .3;
    border-radius: 999px;
}
.sdp-section-h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #0f1b35;
    letter-spacing: -.025em;
    margin: 0 0 10px;
    line-height: 1.15;
}
.sdp-section-sub {
    font-size: 1rem;
    color: #4a6a9b;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}
.sdp-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sdp-testi-card {
    background: #fff;
    border: 1.5px solid #cdd9f5;
    border-radius: 22px;
    padding: 28px 24px;
    position: relative;
    box-shadow: 0 4px 18px rgba(25,113,194,.07);
    transition: transform .22s, box-shadow .22s;
}
.sdp-testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 36px rgba(25,113,194,.13);
}
.sdp-testi-stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; margin-bottom: 14px; }
.sdp-testi-quote {
    font-size: .9375rem;
    color: #374151;
    line-height: 1.72;
    margin: 0 0 20px;
    font-style: italic;
}
.sdp-testi-quote::before { content:'"'; }
.sdp-testi-quote::after  { content:'"'; }
.sdp-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}
.sdp-testi-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.sdp-testi-name { font-size: 14px; font-weight: 700; color: #111827; }
.sdp-testi-meta { font-size: 12px; color: #6b7280; }
.sdp-testi-plan {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    color: #1971c2;
    background: rgba(25,113,194,.1);
    padding: 3px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

/* ══ COMPARISON TABLE ═════════════════════════════════════════════════════════ */
.sdp-compare {
    background: #fff;
    padding: 80px 0;
}
.sdp-compare-container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 24px;
}
.sdp-compare-header { text-align:center; margin-bottom:52px; }
.sdp-table-wrap { overflow-x: auto; }
.sdp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.sdp-table thead th {
    padding: 16px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    color: #0f1b35;
    background: #f0f5ff;
    border-bottom: 2px solid #cdd9f5;
}
.sdp-table thead th:first-child { text-align:left; background:transparent; border-bottom:none; }
.sdp-table thead th.is-featured {
    background: #1971c2;
    color: #fff;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -6px 20px rgba(25,113,194,.25);
}
.sdp-table-section td {
    padding: 12px 20px 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: #1971c2;
    background: #f8fbff;
    border-top: 2px solid #dde8f8;
    border-bottom: 1px solid #e8f0fc;
    colspan: 4;
}
.sdp-table tbody tr:not(.sdp-table-section) td {
    padding: 14px 20px;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: middle;
}
.sdp-table tbody tr:not(.sdp-table-section) td:first-child { font-weight:600; color:#111827; }
.sdp-table tbody tr:not(.sdp-table-section) td:not(:first-child) { text-align:center; }
.sdp-table tbody tr:hover td { background: #fafbff; }
.sdp-table .sdp-check  { color:#22c55e; font-size:18px; font-weight:900; }
.sdp-table .sdp-cross  { color:#d1d5db; font-size:18px; }
.sdp-table .sdp-limit  { font-size:12px; color:#6b7280; font-weight:600; }
.sdp-table td.is-featured { background:rgba(25,113,194,.04); font-weight:700; }

/* ══ MISSION ══════════════════════════════════════════════════════════════════ */
.sdp-mission {
    background: linear-gradient(150deg, #0a1530, #0d1e3d);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.sdp-mission::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(25,113,194,.14) 0%, transparent 65%);
    pointer-events: none;
}
.sdp-mission-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.sdp-mission-icon { font-size: 3.4rem; display:block; margin-bottom: 16px; }
.sdp-mission-kicker {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.35);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0 0 14px;
}
.sdp-mission h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.03em;
    margin: 0 0 32px;
    line-height: 1.12;
}
.sdp-mission-body {
    max-width: 660px;
    margin: 0 auto 36px;
    text-align: left;
}
.sdp-mission-body p {
    font-size: 1rem;
    color: rgba(255,255,255,.6);
    line-height: 1.8;
    margin: 0 0 18px;
    max-width: none;
}
.sdp-mission-body p:last-child { margin-bottom: 0; }
.sdp-mission-closing {
    font-style: italic;
    color: rgba(255,255,255,.45) !important;
    border-left: 2px solid rgba(255,255,255,.15);
    padding-left: 16px;
    margin-top: 24px !important;
}
.sdp-mission-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    overflow: hidden;
    max-width: 680px;
    margin: 0 auto 36px;
}
.sdp-mission-stat {
    flex: 1;
    min-width: 140px;
    padding: 20px 16px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.08);
}
.sdp-mission-stat:last-child { border-right: none; }
.sdp-mission-stat-num { font-size: 1.8rem; font-weight: 900; color: #93c5fd; display: block; line-height: 1; }
.sdp-mission-stat-label { font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .07em; font-weight: 600; margin-top: 4px; display: block; }

/* ══ FAQ ════════════════════════════════════════════════════════════════════════ */
.sdp-faq {
    background: #fff;
    padding: 80px 0;
}
.sdp-faq-container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.sdp-faq-header { text-align:center; margin-bottom:48px; }
.sdp-faq-item { border-bottom: 1px solid #e5e7eb; }
.sdp-faq-item:first-child { border-top: 1px solid #e5e7eb; }
.sdp-faq-q {
    width: 100%; background: transparent; border: none; text-align: left;
    padding: 20px 0; font-size: 1rem; font-weight: 700; color: #111827;
    cursor: pointer; display: flex; align-items: center; justify-content: space-between;
    gap: 16px; transition: color .18s;
}
.sdp-faq-q:hover, .sdp-faq-q[aria-expanded="true"] { color: #1971c2; }
.sdp-faq-icon {
    flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
    border: 2px solid currentColor;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; transition: transform .25s;
}
.sdp-faq-q[aria-expanded="true"] .sdp-faq-icon { transform: rotate(45deg); }
.sdp-faq-a { font-size: .9375rem; color: #6b7280; line-height: 1.8; padding: 0 40px 20px 0; display: none; }
.sdp-faq-a p { margin: 0 0 12px; }
.sdp-faq-a p:last-child { margin: 0; }
.sdp-faq-a a { color: #1971c2; text-decoration: underline; text-underline-offset: 3px; }
.sdp-faq-item.is-open .sdp-faq-a { display: block; }

/* ══ FINAL CTA ════════════════════════════════════════════════════════════════ */
.sdp-final-cta {
    background: linear-gradient(135deg, #1971c2 0%, #0d469b 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sdp-final-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255,255,255,.07) 0%, transparent 60%);
    pointer-events: none;
}
.sdp-final-cta-inner { position:relative;z-index:1;max-width:600px;margin:0 auto; }
.sdp-final-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin: 0 0 14px;
}
.sdp-final-cta p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.7);
    line-height: 1.62;
    margin: 0 0 36px;
}
.sdp-final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #1971c2;
    font-size: 16px;
    font-weight: 800;
    padding: 16px 42px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    transition: transform .2s, box-shadow .2s;
    letter-spacing: -.01em;
}
.sdp-final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px rgba(0,0,0,.26);
}
.sdp-final-urgency {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    margin-top: 16px;
}
.sdp-final-urgency strong { color: #fde68a; }

/* ══ TOAST NOTIFICATIONS ══════════════════════════════════════════════════════ */
#sdp-toasts {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 99990;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.sdp-toast {
    pointer-events: all;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.1);
    max-width: 300px;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform .4s cubic-bezier(.175,.885,.32,1.1), opacity .4s ease;
}
.sdp-toast.is-visible { transform: translateX(0); opacity: 1; }
.sdp-toast.is-leaving { animation: sdp-toast-out .4s ease forwards; }
.sdp-toast-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: #f0f5ff;
    display: flex; align-items: center; justify-content: center;
}
.sdp-toast-body { flex: 1; min-width: 0; }
.sdp-toast-name { font-size: 13px; font-weight: 700; color: #111827; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sdp-toast-plan { font-size: 12px; color: #6b7280; }
.sdp-toast-plan strong { color: #1971c2; }
.sdp-toast-time { font-size: 11px; color: #9ca3af; margin-top: 1px; }
.sdp-toast-close {
    flex-shrink: 0;
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 18px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color .15s;
}
.sdp-toast-close:hover { color: #374151; }

/* ══ MODALS ════════════════════════════════════════════════════════════════════ */
.sdp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4,10,24,.85);
    backdrop-filter: blur(12px);
    z-index: 99995;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.sdp-modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}
.sdp-modal {
    background: #fff;
    border-radius: 28px;
    padding: 40px 36px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 32px 80px rgba(0,0,0,.4);
    transform: scale(.92) translateY(20px);
    transition: transform .35s cubic-bezier(.175,.885,.32,1.1);
}
.sdp-modal-overlay.is-open .sdp-modal {
    transform: scale(1) translateY(0);
}
.sdp-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 32px; height: 32px;
    font-size: 18px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #6b7280;
    transition: background .15s, color .15s;
}
.sdp-modal-close:hover { background: #e5e7eb; color: #111827; }
.sdp-modal-emoji { font-size: 3.2rem; display: block; margin-bottom: 16px; }
.sdp-modal h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #111827;
    margin: 0 0 12px;
    letter-spacing: -.025em;
    line-height: 1.2;
}
.sdp-modal p {
    font-size: .9375rem;
    color: #6b7280;
    line-height: 1.72;
    margin: 0 0 24px;
}
.sdp-modal p strong { color: #111827; }
.sdp-modal-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, #1971c2, #1357a0);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(25,113,194,.35);
    transition: transform .2s, box-shadow .2s;
    margin-bottom: 10px;
}
.sdp-modal-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(25,113,194,.45);
}
.sdp-modal-skip {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    cursor: pointer;
    background: none;
    border: none;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 4px 0;
    transition: color .15s;
}
.sdp-modal-skip:hover { color: #6b7280; }
.sdp-modal-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
    margin-top: 16px;
    padding: 8px 16px;
    background: #f9fafb;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
}

/* Encouragement modal — warmer colors */
.sdp-modal--encourage .sdp-modal {
    border-top: 4px solid #1971c2;
}

/* ══ ACCESS FOR EVERYONE ══════════════════════════════════════════════════════ */
.sdp-access {
    background: #fafaf9;
    border-top: 1px solid #f0ede8;
    border-bottom: 1px solid #f0ede8;
    padding: 80px 24px;
}
.sdp-access-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.sdp-access-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 14px;
}
.sdp-access-kicker {
    font-size: 11px;
    font-weight: 700;
    color: #a8a29e;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0 0 14px;
}
.sdp-access-h2 {
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    font-weight: 900;
    color: #1c1917;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0 0 36px;
}
.sdp-access-body {
    text-align: left;
    border-left: 3px solid #e7e5e4;
    padding-left: 22px;
    margin: 0 0 36px;
}
.sdp-access-body p {
    font-size: 1rem;
    color: #57534e;
    line-height: 1.85;
    margin: 0 0 20px;
}
.sdp-access-body p:last-child { margin-bottom: 0; }
.sdp-access-vow {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1c1917;
    font-style: italic;
    margin: 0 0 28px;
    letter-spacing: -.01em;
}
.sdp-access-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1c1917;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 999px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    letter-spacing: -.01em;
}
.sdp-access-btn:hover {
    background: #292524;
    transform: translateY(-1px);
}
.sdp-access-sub {
    font-size: 12px;
    color: #a8a29e;
    margin: 14px 0 0;
    font-style: italic;
}

/* Hide discord FAB on pricing page */
.page-template-template-pricing-php .sd-discord-fab { display: none !important; }

/* ══ RESPONSIVE ═══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .sdp-plans-container { grid-template-columns: 1fr; max-width: 440px; gap: 16px; }
    .sdp-card--featured { padding-top: 32px; }
    .sdp-testi-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}
@media (max-width: 660px) {
    .sdp-trust-inner { gap: 20px; }
    .sdp-hero-h1 { font-size: 2rem; }
    .sdp-mission-stats { flex-direction: column; }
    .sdp-mission-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
    .sdp-mission-stat:last-child { border-bottom: none; }
}
@media (max-width: 420px) {
    #sdp-toasts { left: 12px; right: 12px; bottom: 12px; }
    .sdp-toast { max-width: none; }
    .sdp-modal { padding: 28px 20px; border-radius: 20px; }
}
