/* ══════════════════════════════════════════
   PP — Privacy Policy (all classes "pp-" prefixed)
══════════════════════════════════════════ */

/* ── HERO ── */
.pp-hero {
    position: relative;
    padding: 110px 4% 70px;
    overflow: hidden;
    background: linear-gradient(160deg, #f2fae3 0%, #ffffff 45%, #e3f7fb 100%);
}

.pp-hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(107, 163, 42, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(107, 163, 42, 0.07) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, black 20%, transparent 100%);
}

.pp-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: ppOrbDrift 10s ease-in-out infinite;
}

@keyframes ppOrbDrift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -18px);
    }
}

.pp-orb-1 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #9bd86a, transparent 72%);
    top: 5%;
    left: 1%;
    animation-delay: 0s;
}

.pp-orb-2 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #5fd4f0, transparent 72%);
    bottom: 5%;
    right: 3%;
    animation-delay: 2.5s;
}

.pp-hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.pp-hero-left {}

.pp-hero-icon {
    font-size: 40px;
    margin-bottom: 14px;
    display: inline-block;
    animation: ppIconPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes ppIconPop {
    from {
        transform: scale(0.5) rotate(-15deg);
        opacity: 0;
    }

    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.pp-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.06;
    color: #15230a;
    margin-bottom: 14px;
}

.pp-shine {
    background: linear-gradient(100deg, #4e7a1a, #1e6475, #8bc34a, #2a8fa8, #4e7a1a);
    background-size: 280% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ppShineFlow 6s ease-in-out infinite;
}

@keyframes ppShineFlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.pp-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    background: var(--green-light, #e8f5d0);
    border: 1px solid #c8dda8;
    font-size: 12px;
    font-weight: 600;
    color: #4e7a1a;
    margin-bottom: 18px;
}

.pp-meta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6ba32a;
    animation: ppPulse 2s ease infinite;
}

@keyframes ppPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.pp-hero-desc {
    font-size: 16px;
    color: #5a7040;
    line-height: 1.72;
    max-width: 480px;
}

.pp-quick-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pp-qp {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #fff;
    border: 1.5px solid #dde8cc;
    font-size: 13.5px;
    font-weight: 600;
    color: #2d4a18;
    box-shadow: 0 4px 16px rgba(107, 163, 42, 0.08);
    transition: all 0.25s ease;
}

.pp-qp:hover {
    border-color: #8bc34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 163, 42, 0.14);
}

.pp-qp span {
    font-size: 20px;
}

/* ── MAIN ── */
.pp-main {
    padding: 72px 0 100px;
    background: var(--bg, #f5f7f2);
}

/* ── TABS ── */
.pp-tab-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.pp-tabs {
    display: inline-flex;
    gap: 4px;
    padding: 6px;
    background: #fff;
    border: 1.5px solid #dde8cc;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(107, 163, 42, 0.08);
}

.pp-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: #5a7040;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.28s ease;
}

.pp-tab:hover {
    color: #4e7a1a;
    background: var(--green-light, #e8f5d0);
}

.pp-tab-active {
    background: linear-gradient(135deg, #6ba32a, #1e6475) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(107, 163, 42, 0.35);
}

.pp-tab span {
    font-size: 16px;
}

/* ── PANELS ── */
.pp-panel {
    display: none;
    animation: ppPanelIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.pp-panel-active {
    display: block;
}

@keyframes ppPanelIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── SECTIONS ── */
.pp-section {
    margin-bottom: 40px;
}

.pp-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    border-radius: 18px 18px 0 0;
    margin-bottom: 0;
}

.pp-sh-green {
    background: linear-gradient(135deg, rgba(107, 163, 42, 0.12), rgba(139, 195, 74, 0.06));
    border: 1.5px solid #c8dda8;
    border-bottom: none;
}

.pp-sh-teal {
    background: linear-gradient(135deg, rgba(30, 100, 117, 0.1), rgba(59, 184, 216, 0.05));
    border: 1.5px solid rgba(59, 184, 216, 0.3);
    border-bottom: none;
}

.pp-sh-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.09), rgba(251, 191, 36, 0.05));
    border: 1.5px solid rgba(249, 115, 22, 0.25);
    border-bottom: none;
}

.pp-sh-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #6ba32a, #4e7a1a);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-sh-num-teal {
    background: linear-gradient(135deg, #1e6475, #2a8fa8);
}

.pp-sh-num-orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.pp-section-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #15230a;
    letter-spacing: -0.02em;
}

/* ── CONTENT CARDS ── */
.pp-content-card {
    background: #fff;
    border: 1.5px solid #dde8cc;
    border-top: none;
    border-radius: 0 0 18px 18px;
    padding: 28px 32px;
    box-shadow: 0 8px 28px rgba(20, 40, 10, 0.05);
}

.pp-card-teal {
    background: linear-gradient(160deg, #f4fbfd, #fff);
    border-color: rgba(59, 184, 216, 0.25);
}

.pp-sub-heading {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #15230a;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.pp-para {
    font-size: 14.5px;
    color: #5a7040;
    line-height: 1.72;
    margin-bottom: 16px;
}

.pp-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 32px;
}

.pp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pp-list li {
    font-size: 14px;
    color: #5a7040;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.pp-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8bc34a;
    font-size: 11px;
    top: 3px;
}

.pp-list-spaced {
    gap: 10px;
}

/* Use grid */
.pp-use-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.pp-use-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 12px;
    background: #fafbf7;
    border: 1px solid #e8ecdf;
    font-size: 13.5px;
    color: #2d4a18;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pp-use-item:hover {
    background: var(--green-light, #e8f5d0);
    border-color: #c8dda8;
}

.pp-use-icon {
    width: 52px;
    height: 52px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.pp-ui-green {
    background: var(--green-light, #e8f5d0);
    border: 1px solid #c8dda8;
}

.pp-ui-teal {
    background: #e0f4f9;
    border: 1px solid rgba(59, 184, 216, 0.3);
}

.pp-ui-gold {
    background: #fef3c7;
    border: 1px solid #fcd34d;
}

.pp-no-sell-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    margin-top: 6px;
    background: linear-gradient(135deg, #fef2f2, #fff);
    border: 1.5px solid #fecaca;
    font-size: 14px;
    color: #b91c1c;
}

.pp-no-sell-badge strong {
    font-weight: 700;
}

.pp-security-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.pp-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.pp-chip-green {
    background: var(--green-light, #e8f5d0);
    border: 1px solid #c8dda8;
    color: #4e7a1a;
}

.pp-chip-teal {
    background: #e0f4f9;
    border: 1px solid rgba(59, 184, 216, 0.35);
    color: #1e6475;
}

.pp-chip-gold {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    color: #92400e;
}

/* Rights grid */
.pp-rights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pp-right-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
    background: #fafbf7;
    border: 1px solid #e8ecdf;
    transition: all 0.25s ease;
}

.pp-right-item:hover {
    background: var(--green-light, #e8f5d0);
    border-color: #c8dda8;
    transform: translateY(-2px);
}

.pp-ri-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6ba32a, #1e6475);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.pp-right-item strong {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #15230a;
    display: block;
    margin-bottom: 4px;
}

.pp-right-item p {
    font-size: 12.5px;
    color: #5a7040;
    line-height: 1.55;
}

/* ── CONTACT CARD ── */
.pp-contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(160deg, #0f1e0a, #0a1608);
    border-radius: 26px;
    padding: 40px;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}

.pp-contact-bg {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.22), rgba(59, 184, 216, 0.1) 55%, transparent 75%);
    filter: blur(30px);
    pointer-events: none;
}

.pp-contact-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.pp-contact-left h3 {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.pp-contact-brand {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.pp-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #a3cf6a;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.pp-contact-link:hover {
    color: #fff;
}

.pp-contact-addr {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.pp-addr-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(139, 195, 74, 0.15);
    border: 1px solid rgba(139, 195, 74, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.pp-contact-addr strong {
    font-size: 13px;
    font-weight: 700;
    color: #a3cf6a;
    display: block;
    margin-bottom: 6px;
}

.pp-contact-addr p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    .pp-hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .pp-rights-grid {
        grid-template-columns: 1fr;
    }

    .pp-contact-card {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media(max-width:640px) {
    .pp-two-col {
        grid-template-columns: 1fr;
    }

    .pp-use-grid {
        grid-template-columns: 1fr;
    }

    .pp-quick-pills {
        grid-template-columns: 1fr;
    }

    .pp-tabs {
        flex-direction: column;
        border-radius: 16px;
    }

    .pp-tab {
        border-radius: 12px;
        justify-content: center;
    }

    .pp-content-card {
        padding: 20px 18px;
    }
}