/* ============================================
   POLÍTICA DE PRIVACIDADE - AQUAFLEX
   Prefixo: pp-
   ============================================ */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pp-white: #fff;
    --pp-black: #010f34;
    --pp-heading-color: #010f34;
    --pp-body-color: #788094;
    --pp-accent: #ff5500;
    --pp-blue: #2693FF;
    --pp-green: #28a745;
    --pp-gray: #f5f7fa;
    --pp-border: #ecf1f5;
    --pp-heading-font: "Outfit", sans-serif;
    --pp-body-font: "DM Sans", sans-serif;
}

body {
    font-family: var(--pp-body-font);
    color: var(--pp-body-color);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Container */
.pp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.pp-hero {
    position: relative;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #010f34 0%, #0a1852 50%, #010f34 100%);
}

.pp-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pp-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 85, 0, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(38, 147, 255, 0.15) 0%, transparent 60%);
    animation: pp-gradient-shift 15s ease-in-out infinite;
}

@keyframes pp-gradient-shift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.pp-hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pp-particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pp-float 20s infinite ease-in-out;
}

.pp-particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.pp-particle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 80%;
    animation-delay: 4s;
}

.pp-particle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 60%;
    animation-delay: 2s;
}

.pp-particle:nth-child(4) {
    width: 50px;
    height: 50px;
    top: 80%;
    left: 20%;
    animation-delay: 6s;
}

.pp-particle:nth-child(5) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 70%;
    animation-delay: 3s;
}

@keyframes pp-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-50px) rotate(180deg);
        opacity: 0.6;
    }
}

.pp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
}

.pp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    color: var(--pp-white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    animation: pp-badge-pulse 3s ease-in-out infinite;
}

@keyframes pp-badge-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 85, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 85, 0, 0.6);
    }
}

.pp-badge i {
    color: var(--pp-accent);
    font-size: 18px;
}

.pp-hero-title {
    font-family: var(--pp-heading-font);
    font-size: 64px;
    font-weight: 800;
    color: var(--pp-white);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.pp-highlight {
    background: linear-gradient(135deg, var(--pp-accent) 0%, var(--pp-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.pp-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-weight: 400;
}

.pp-hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.pp-stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pp-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.pp-stat-card:hover::before {
    left: 100%;
}

.pp-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--pp-accent);
    box-shadow: 0 10px 40px rgba(255, 85, 0, 0.3);
}

.pp-stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pp-accent), var(--pp-blue));
    border-radius: 15px;
    font-size: 24px;
    color: var(--pp-white);
}

.pp-stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pp-stat-number {
    font-family: var(--pp-heading-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--pp-white);
    line-height: 1;
}

.pp-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.pp-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    animation: pp-bounce 2s ease-in-out infinite;
}

.pp-scroll-indicator i {
    font-size: 20px;
}

@keyframes pp-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ============================================
   TRUST SECTION
   ============================================ */

.pp-trust-section {
    padding: 80px 0;
    background: var(--pp-white);
    position: relative;
}

.pp-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pp-trust-card {
    background: var(--pp-white);
    border: 2px solid var(--pp-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pp-trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.05), rgba(38, 147, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pp-trust-card:hover {
    transform: translateY(-10px);
    border-color: var(--pp-accent);
    box-shadow: 0 20px 60px rgba(255, 85, 0, 0.15);
}

.pp-trust-card:hover::before {
    opacity: 1;
}

.pp-trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--pp-accent), var(--pp-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--pp-white);
    position: relative;
    z-index: 1;
}

.pp-trust-card h3 {
    font-family: var(--pp-heading-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--pp-heading-color);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.pp-trust-card p {
    color: var(--pp-body-color);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   NAVIGATION SECTION
   ============================================ */

.pp-nav-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--pp-white) 0%, var(--pp-gray) 100%);
}

.pp-section-title {
    font-family: var(--pp-heading-font);
    font-size: 42px;
    font-weight: 700;
    color: var(--pp-heading-color);
    text-align: center;
    margin-bottom: 60px;
}

.pp-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.pp-nav-card {
    background: var(--pp-white);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-decoration: none;
    border: 2px solid var(--pp-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pp-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.pp-nav-card:hover::before {
    left: 100%;
}

.pp-nav-card:hover {
    transform: translateY(-8px);
    border-color: var(--pp-accent);
    box-shadow: 0 15px 50px rgba(255, 85, 0, 0.2);
}

.pp-nav-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pp-accent), var(--pp-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--pp-white);
    transition: transform 0.4s ease;
}

.pp-nav-card:hover .pp-nav-icon {
    transform: scale(1.1) rotate(5deg);
}

.pp-nav-card h4 {
    font-family: var(--pp-heading-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--pp-heading-color);
    margin: 0;
}

.pp-nav-card p {
    color: var(--pp-body-color);
    font-size: 14px;
    margin: 0;
    flex-grow: 1;
}

.pp-nav-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--pp-accent);
    font-size: 18px;
    transition: transform 0.4s ease;
}

.pp-nav-card:hover .pp-nav-arrow {
    transform: translateX(5px);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.pp-content-section {
    padding: 80px 0;
    background: var(--pp-white);
    scroll-margin-top: 80px;
}

.pp-content-section:nth-child(even) {
    background: var(--pp-gray);
}

.pp-content-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
}

.pp-content-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--pp-accent), var(--pp-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--pp-white);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.3);
}

.pp-content-header h2 {
    font-family: var(--pp-heading-font);
    font-size: 38px;
    font-weight: 700;
    color: var(--pp-heading-color);
    margin: 0 0 10px 0;
}

.pp-content-header p {
    color: var(--pp-body-color);
    margin: 0;
    font-size: 16px;
}

/* ============================================
   ACCORDION
   ============================================ */

.pp-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pp-accordion-item {
    background: var(--pp-white);
    border: 2px solid var(--pp-border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pp-accordion-item.active {
    border-color: var(--pp-accent);
    box-shadow: 0 5px 20px rgba(255, 85, 0, 0.15);
}

.pp-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--pp-heading-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--pp-heading-color);
    text-align: left;
    transition: all 0.3s ease;
}

.pp-accordion-header:hover {
    background: rgba(255, 85, 0, 0.05);
}

.pp-accordion-header i {
    font-size: 16px;
    color: var(--pp-accent);
    transition: transform 0.3s ease;
}

.pp-accordion-item.active .pp-accordion-header i {
    transform: rotate(180deg);
}

.pp-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.pp-accordion-item.active .pp-accordion-content {
    max-height: 2000px;
}

.pp-accordion-content > div {
    padding: 0 30px 30px 30px;
}

.pp-accordion-content p {
    color: var(--pp-body-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.pp-accordion-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.pp-accordion-content li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--pp-body-color);
    line-height: 1.8;
}

.pp-accordion-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--pp-accent);
}

.pp-accordion-content strong {
    color: var(--pp-heading-color);
    font-weight: 600;
}

/* ============================================
   RIGHTS TIMELINE
   ============================================ */

.pp-rights-timeline {
    position: relative;
    padding-left: 50px;
    margin: 40px 0;
}

.pp-rights-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--pp-accent), var(--pp-blue));
}

.pp-rights-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    gap: 25px;
}

.pp-rights-marker {
    position: absolute;
    left: -35px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--pp-accent), var(--pp-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pp-white);
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(255, 85, 0, 0.3);
    z-index: 1;
}

.pp-rights-content {
    flex: 1;
    background: var(--pp-white);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--pp-border);
    transition: all 0.3s ease;
}

.pp-rights-content:hover {
    border-color: var(--pp-accent);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.1);
    transform: translateX(5px);
}

.pp-rights-content h4 {
    font-family: var(--pp-heading-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--pp-heading-color);
    margin: 0 0 12px 0;
}

.pp-rights-content p {
    color: var(--pp-body-color);
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   RIGHTS CTA
   ============================================ */

.pp-rights-cta {
    background: linear-gradient(135deg, var(--pp-heading-color), #0a1852);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.pp-rights-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.1) 0%, transparent 70%);
    animation: pp-rotate 20s linear infinite;
}

@keyframes pp-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pp-rights-cta h3 {
    font-family: var(--pp-heading-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--pp-white);
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
}

.pp-rights-cta > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.pp-rights-contacts {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.pp-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: var(--pp-heading-font);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pp-contact-btn.pp-whatsapp {
    background: var(--pp-green);
    color: var(--pp-white);
}

.pp-contact-btn.pp-whatsapp:hover {
    background: #22903d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

.pp-contact-btn.pp-phone {
    background: var(--pp-blue);
    color: var(--pp-white);
}

.pp-contact-btn.pp-phone:hover {
    background: #1a7de0;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(38, 147, 255, 0.4);
}

.pp-response-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   SECURITY GRID
   ============================================ */

.pp-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.pp-security-card {
    background: var(--pp-white);
    border: 2px solid var(--pp-border);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pp-security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.05), rgba(38, 147, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pp-security-card:hover {
    transform: translateY(-8px);
    border-color: var(--pp-blue);
    box-shadow: 0 15px 40px rgba(38, 147, 255, 0.2);
}

.pp-security-card:hover::before {
    opacity: 1;
}

.pp-security-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--pp-blue), var(--pp-accent));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--pp-white);
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.pp-security-card:hover .pp-security-icon {
    transform: scale(1.1) rotate(-5deg);
}

.pp-security-card h4 {
    font-family: var(--pp-heading-font);
    font-size: 19px;
    font-weight: 700;
    color: var(--pp-heading-color);
    margin: 0 0 12px 0;
    position: relative;
    z-index: 1;
}

.pp-security-card p {
    color: var(--pp-body-color);
    margin: 0;
    line-height: 1.7;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.pp-incident-info {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: rgba(255, 85, 0, 0.05);
    border-left: 4px solid var(--pp-accent);
    padding: 30px;
    border-radius: 15px;
}

.pp-incident-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--pp-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--pp-white);
}

.pp-incident-content h4 {
    font-family: var(--pp-heading-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--pp-heading-color);
    margin: 0 0 12px 0;
}

.pp-incident-content p {
    color: var(--pp-body-color);
    margin: 0;
    line-height: 1.8;
}

/* ============================================
   COMPANY SECTION
   ============================================ */

.pp-company-section {
    padding: 80px 0;
    background: var(--pp-gray);
}

.pp-company-card {
    background: var(--pp-white);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.pp-company-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--pp-border);
}

.pp-company-header i {
    font-size: 40px;
    color: var(--pp-accent);
}

.pp-company-header h3 {
    font-family: var(--pp-heading-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--pp-heading-color);
    margin: 0;
}

.pp-company-grid {
    display: grid;
    gap: 30px;
}

.pp-company-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pp-company-label {
    font-family: var(--pp-heading-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--pp-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pp-company-value {
    font-size: 16px;
    color: var(--pp-heading-color);
    font-weight: 500;
    line-height: 1.6;
}

/* ============================================
   UPDATES SECTION
   ============================================ */

.pp-updates-section {
    padding: 80px 0;
    background: var(--pp-white);
}

.pp-updates-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.05), rgba(38, 147, 255, 0.05));
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--pp-border);
}

.pp-updates-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--pp-accent), var(--pp-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--pp-white);
}

.pp-updates-text h3 {
    font-family: var(--pp-heading-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--pp-heading-color);
    margin: 0 0 15px 0;
}

.pp-updates-text p {
    color: var(--pp-body-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.pp-last-update {
    margin: 0;
}

.pp-last-update strong {
    color: var(--pp-heading-color);
}

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

.pp-cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.pp-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--pp-heading-color) 0%, #0a1852 100%);
}

.pp-cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 85, 0, 0.2) 0%, transparent 70%);
    animation: pp-pulse 8s ease-in-out infinite;
}

@keyframes pp-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.pp-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pp-cta-content h2 {
    font-family: var(--pp-heading-font);
    font-size: 48px;
    font-weight: 800;
    color: var(--pp-white);
    margin: 0 0 20px 0;
}

.pp-cta-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pp-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.pp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: var(--pp-heading-font);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pp-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.pp-cta-btn:hover::before {
    left: 100%;
}

.pp-cta-btn.pp-cta-primary {
    background: var(--pp-green);
    color: var(--pp-white);
}

.pp-cta-btn.pp-cta-primary:hover {
    background: #22903d;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.5);
}

.pp-cta-btn.pp-cta-secondary {
    background: var(--pp-white);
    color: var(--pp-heading-color);
}

.pp-cta-btn.pp-cta-secondary:hover {
    background: var(--pp-accent);
    color: var(--pp-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.5);
}

.pp-cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

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

@media (max-width: 992px) {
    .pp-hero-title {
        font-size: 48px;
    }
    
    .pp-hero-subtitle {
        font-size: 18px;
    }
    
    .pp-hero-stats {
        gap: 15px;
    }
    
    .pp-stat-card {
        padding: 15px 20px;
    }
    
    .pp-section-title {
        font-size: 36px;
    }
    
    .pp-content-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pp-content-header h2 {
        font-size: 32px;
    }
    
    .pp-rights-timeline {
        padding-left: 40px;
    }
    
    .pp-rights-cta {
        padding: 40px 30px;
    }
    
    .pp-rights-cta h3 {
        font-size: 28px;
    }
    
    .pp-company-card {
        padding: 35px;
    }
    
    .pp-cta-content h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .pp-hero {
        min-height: auto;
        padding: 10px 0;
    }
    
    .pp-hero-title {
        font-size: 38px;
    }
    
    .pp-hero-subtitle {
        font-size: 16px;
    }
    
    .pp-hero-stats {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto 50px;
    }
    
    .pp-trust-grid,
    .pp-nav-grid,
    .pp-security-grid {
        grid-template-columns: 1fr;
    }
    
    .pp-section-title {
        font-size: 30px;
    }
    
    .pp-content-section {
        padding: 60px 0;
    }
    
    .pp-content-header h2 {
        font-size: 28px;
    }
    
    .pp-content-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 28px;
    }
    
    .pp-accordion-header {
        padding: 20px;
        font-size: 16px;
    }
    
    .pp-accordion-content > div {
        padding: 0 20px 20px 20px;
    }
    
    .pp-rights-timeline {
        padding-left: 30px;
    }
    
    .pp-rights-timeline::before {
        left: 15px;
    }
    
    .pp-rights-marker {
        left: -25px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .pp-rights-contacts {
        flex-direction: column;
    }
    
    .pp-contact-btn {
        width: 100%;
        justify-content: center;
    }
    
    .pp-updates-content {
        flex-direction: column;
        padding: 30px;
    }
    
    .pp-incident-info {
        flex-direction: column;
        padding: 25px;
    }
    
    .pp-company-card {
        padding: 25px;
    }
    
    .pp-company-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pp-cta-section {
        padding: 80px 0;
    }
    
    .pp-cta-content h2 {
        font-size: 32px;
    }
    
    .pp-cta-content > p {
        font-size: 16px;
    }
    
    .pp-cta-buttons {
        flex-direction: column;
    }
    
    .pp-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pp-hero-title {
        font-size: 32px;
    }
    
    .pp-section-title {
        font-size: 26px;
    }
    
    .pp-content-header h2 {
        font-size: 24px;
    }
    
    .pp-rights-cta h3 {
        font-size: 24px;
    }
    
    .pp-company-header h3 {
        font-size: 24px;
    }
    
    .pp-cta-content h2 {
        font-size: 28px;
    }
}

/* ============================================
   SMOOTH SCROLL
   ============================================ */

html {
    scroll-behavior: smooth;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--pp-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--pp-accent), var(--pp-blue));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--pp-blue), var(--pp-accent));
}