/* ===========================================
   PUBLIC PAGES STYLES (Privacy, Terms, Pricing)
   Theme-compatible styles for legal and pricing pages
   =========================================== */

/* ===== CSS Variables - Inherit from theme or use defaults ===== */
:root {
    --pp-bg: var(--theme-bg, #f5f7fa);
    --pp-bg2: var(--theme-bg-alt, #eef3fb);
    --pp-text: var(--theme-text, #2d3748);
    --pp-muted: var(--theme-text-muted, #718096);
    --pp-surface: var(--theme-surface, #ffffff);
    --pp-surface-2: var(--theme-surface-hover, #f8fafc);
    --pp-border: var(--theme-border, #e2e8f0);
    --pp-primary: var(--theme-primary, #6eb4ff);
    --pp-secondary: var(--theme-secondary, #c7b3e5);
    --pp-accent: var(--theme-accent, #f5b5d6);
    --pp-gradient: var(--theme-gradient-accent, linear-gradient(90deg, #c7b3e5 0%, #f5b5d6 25%, #ffd6a0 50%, #a8dda8 75%, #7fdbda 100%));
    --pp-radius-xl: var(--theme-radius-xl, 24px);
    --pp-radius-lg: var(--theme-radius-lg, 16px);
    --pp-radius-md: var(--theme-radius-md, 12px);
    --pp-shadow-lg: var(--theme-shadow-xl, 0 20px 40px rgba(0, 0, 0, 0.15));
    --pp-shadow-md: var(--theme-shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.12));
}

/* ===== Page Hero Section ===== */
.public-page-hero {
    padding: 6rem 0 4rem;
    background: var(--pp-gradient);
    position: relative;
    overflow: hidden;
}

.public-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.page-hero-icon i {
    font-size: 2.5rem;
    color: white;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.page-hero-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ===== Page Content Section ===== */
.public-page-content {
    padding: 4rem 0;
    background: var(--pp-bg);
    min-height: 60vh;
}

.content-card {
    background: var(--pp-surface);
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius-xl);
    padding: 3rem;
    box-shadow: var(--pp-shadow-lg);
    backdrop-filter: blur(20px);
}

@media (max-width: 768px) {
    .content-card {
        padding: 1.5rem;
        border-radius: var(--pp-radius-lg);
    }
}

.content-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--pp-border);
}

.content-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pp-text);
    margin-bottom: 1.25rem;
}

.section-heading i {
    color: var(--pp-primary);
    font-size: 1.25rem;
}

.subsection-heading {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--pp-text);
    margin: 1.5rem 0 0.75rem;
}

.content-section p {
    color: var(--pp-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ===== Styled Lists ===== */
.styled-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--pp-muted);
    line-height: 1.6;
}

.styled-list li i {
    color: var(--pp-secondary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.styled-list li strong {
    color: var(--pp-text);
}

/* ===== Info Grid ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--pp-surface-2);
    border-radius: var(--pp-radius-md);
    border: 1px solid var(--pp-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--pp-shadow-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--pp-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: white;
    font-size: 1.25rem;
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pp-text);
    margin-bottom: 0.35rem;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--pp-muted);
    margin: 0;
    line-height: 1.5;
}

/* ===== Security Features ===== */
.security-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--pp-surface-2);
    border-radius: 50px;
    border: 1px solid var(--pp-border);
    color: var(--pp-text);
    font-size: 0.9rem;
    font-weight: 500;
}

.security-item i {
    color: var(--pp-secondary);
}

/* ===== Rights Grid ===== */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.right-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--pp-surface-2);
    border-radius: var(--pp-radius-md);
    border: 1px solid var(--pp-border);
    transition: transform 0.3s ease;
}

.right-item:hover {
    transform: translateY(-5px);
}

.right-item i {
    font-size: 2rem;
    color: var(--pp-primary);
    margin-bottom: 0.75rem;
}

.right-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pp-text);
    margin-bottom: 0.35rem;
}

.right-item p {
    font-size: 0.85rem;
    color: var(--pp-muted);
    margin: 0;
}

/* ===== Contact Section ===== */
.contact-section .contact-card {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--pp-gradient);
    border-radius: var(--pp-radius-md);
    color: white;
    font-weight: 500;
}

.contact-item i {
    font-size: 1.25rem;
}

/* ===== Page Navigation Links ===== */
.page-nav-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.nav-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--pp-surface);
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius-md);
    color: var(--pp-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link-btn:hover {
    background: var(--pp-primary);
    border-color: var(--pp-primary);
    color: white;
    transform: translateY(-2px);
}

/* ===== Terms Page Specific ===== */
.terms-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.term-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--pp-surface-2);
    border-radius: var(--pp-radius-md);
    border: 1px solid var(--pp-border);
}

.term-number {
    width: 36px;
    height: 36px;
    background: var(--pp-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.term-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pp-text);
    margin-bottom: 0.35rem;
}

.term-content p {
    font-size: 0.9rem;
    color: var(--pp-muted);
    margin: 0;
}

/* ===== Prohibited Grid ===== */
.prohibited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.prohibited-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 79, 79, 0.08);
    border: 1px solid rgba(255, 79, 79, 0.2);
    border-radius: var(--pp-radius-md);
    color: var(--pp-muted);
}

.prohibited-item i {
    color: #ff4f4f;
    flex-shrink: 0;
}

/* ===== Disclaimer Box ===== */
.disclaimer-box {
    padding: 1.5rem;
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.25);
    border-radius: var(--pp-radius-md);
    margin-top: 1rem;
}

.disclaimer-box p {
    color: var(--pp-text);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

/* ===========================================
   PRICING PAGE STYLES
   =========================================== */

.pricing-hero {
    padding-bottom: 2rem;
}

/* ===== Billing Toggle ===== */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.billing-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--pp-muted);
    transition: color 0.3s ease;
}

.billing-label.active {
    color: var(--pp-text);
}

.save-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--pp-gradient);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    margin-left: 0.5rem;
    text-transform: uppercase;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pp-surface-2);
    border: 1px solid var(--pp-border);
    border-radius: 50px;
    transition: 0.3s;
}

.toggle-slider::before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 3px;
    background: var(--pp-gradient);
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .toggle-slider::before {
    transform: translateX(28px);
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 4rem 0;
    background: var(--pp-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Tablet - 2 columns */
@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Medium screens - 3 columns */
@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

/* Large desktop - all 5 cards in a row */
@media (min-width: 1400px) {
    .pricing-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
        padding: 0;
    }
}

/* ===== Pricing Card ===== */
.pricing-card {
    background: var(--pp-surface);
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius-xl);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--pp-shadow-lg);
}

.pricing-card.featured {
    border-color: var(--pp-primary);
    box-shadow: 0 0 40px rgba(124, 92, 255, 0.2);
}

/* Scale down featured card hover on large screens */
@media (min-width: 1400px) {
    .pricing-card:hover {
        transform: translateY(-5px);
    }
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--pp-gradient);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0 0 12px 12px;
}

@media (min-width: 1400px) {
    .featured-badge {
        padding: 0.35rem 1rem;
        font-size: 0.7rem;
    }
}

/* Discount badge for annual billing */
.plan-discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    z-index: 10;
}

.plan-discount-badge span {
    white-space: nowrap;
}

.pricing-card.featured .plan-discount-badge {
    top: 40px; /* Offset below the "Most Popular" badge */
}

@media (max-width: 991px) {
    .plan-discount-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }
}

.pricing-header {
    text-align: center;
    padding: 2.5rem 2rem 1.5rem;
    border-bottom: 1px solid var(--pp-border);
}

@media (min-width: 1400px) {
    .pricing-header {
        padding: 2rem 1rem 1rem;
    }
}

.plan-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1400px) {
    .plan-icon {
        width: 55px;
        height: 55px;
        border-radius: 14px;
    }
}

.plan-icon i {
    font-size: 1.75rem;
    color: white;
}

@media (min-width: 1400px) {
    .plan-icon i {
        font-size: 1.4rem;
    }
}

.plan-icon.free {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.plan-icon.starter {
    background: linear-gradient(135deg, #00d4ff, #00a3cc);
}

.plan-icon.pro {
    background: var(--pp-gradient);
}

.plan-icon.enterprise {
    background: linear-gradient(135deg, #ffc107, #ff9800);
}

.plan-icon.custom {
    background: linear-gradient(135deg, #ff4fd8, #9c27b0);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pp-text);
    margin-bottom: 0.35rem;
}

@media (min-width: 1400px) {
    .plan-name {
        font-size: 1.2rem;
    }
}

.plan-tagline {
    font-size: 0.9rem;
    color: var(--pp-muted);
    margin: 0;
}

@media (min-width: 1400px) {
    .plan-tagline {
        font-size: 0.8rem;
    }
}

.pricing-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1400px) {
    .pricing-body {
        padding: 1.25rem;
    }
}

.price-container {
    text-align: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pp-muted);
    vertical-align: super;
}

@media (min-width: 1400px) {
    .currency {
        font-size: 1.1rem;
    }
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--pp-text);
    line-height: 1;
}

@media (min-width: 1400px) {
    .price {
        font-size: 2.25rem;
    }
}

.price.custom-price {
    font-size: 2rem;
    background: var(--pp-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 1400px) {
    .price.custom-price {
        font-size: 1.5rem;
    }
}

.period {
    font-size: 1rem;
    color: var(--pp-muted);
}

@media (min-width: 1400px) {
    .period {
        font-size: 0.85rem;
    }
}

.price-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--pp-muted);
    margin-bottom: 1.5rem;
}

@media (min-width: 1400px) {
    .price-note {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
}

/* ===== Feature List ===== */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

@media (min-width: 1400px) {
    .feature-list {
        margin: 0 0 1rem;
    }
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--pp-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 1400px) {
    .feature-list li {
        gap: 0.5rem;
        padding: 0.4rem 0;
        font-size: 0.8rem;
    }
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li.included i {
    color: #00d4ff;
}

.feature-list li.excluded {
    opacity: 0.5;
}

.feature-list li.excluded i {
    color: #666;
}

.feature-list li strong {
    color: var(--pp-text);
}

/* ===== Pricing Buttons ===== */
.btn-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: var(--pp-radius-md);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

@media (min-width: 1400px) {
    .btn-pricing {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

.btn-pricing-primary {
    background: var(--pp-gradient);
    color: white;
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 92, 255, 0.4);
}

.btn-pricing-secondary {
    background: var(--pp-surface-2);
    border: 1px solid var(--pp-border);
    color: var(--pp-text);
}

.btn-pricing-secondary:hover {
    background: var(--pp-primary);
    border-color: var(--pp-primary);
    color: white;
}

.trial-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--pp-muted);
    margin-top: 0.75rem;
}

@media (min-width: 1400px) {
    .trial-note {
        font-size: 0.7rem;
        margin-top: 0.5rem;
    }
}

/* ===== Comparison Section ===== */
.comparison-section {
    padding: 4rem 0;
    background: var(--pp-bg2);
}

.comparison-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pp-text);
    text-align: center;
    margin-bottom: 0.5rem;
}

.comparison-subtitle {
    font-size: 1rem;
    color: var(--pp-muted);
    text-align: center;
    margin-bottom: 2.5rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--pp-radius-lg);
    border: 1px solid var(--pp-border);
}

.comparison-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    background: var(--pp-surface);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--pp-border);
}

.comparison-table th {
    background: var(--pp-surface-2);
    font-weight: 600;
    color: var(--pp-text);
}

.comparison-table th.featured {
    background: rgba(124, 92, 255, 0.15);
    color: var(--pp-primary);
}

.comparison-table td.featured {
    background: rgba(124, 92, 255, 0.05);
}

.comparison-table .feature-col {
    text-align: left;
    font-weight: 500;
    color: var(--pp-text);
}

.comparison-table td {
    color: var(--pp-muted);
}

.comparison-table .category-row td {
    background: var(--pp-bg);
    font-weight: 600;
    color: var(--pp-text);
    text-align: left;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table .category-row td i {
    margin-right: 0.5rem;
    color: var(--pp-primary);
}

.comparison-table .text-success {
    color: #00d4ff !important;
}

.comparison-table .text-muted {
    color: #666 !important;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 4rem 0;
    background: var(--pp-bg);
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pp-text);
    text-align: center;
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    font-size: 1rem;
    color: var(--pp-muted);
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--pp-surface);
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius-lg);
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.faq-question i {
    color: var(--pp-primary);
    margin-top: 0.2rem;
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pp-text);
    margin: 0;
}

.faq-answer {
    font-size: 0.9rem;
    color: var(--pp-muted);
    line-height: 1.6;
    margin: 0;
    padding-left: 1.75rem;
}

/* ===== Pricing CTA Section ===== */
.pricing-cta-section {
    padding: 4rem 0;
    background: var(--pp-bg2);
}

.pricing-cta-card {
    text-align: center;
    padding: 3rem;
    background: var(--pp-gradient);
    border-radius: var(--pp-radius-xl);
    position: relative;
    overflow: hidden;
}

.pricing-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

.pricing-cta-card .cta-title,
.pricing-cta-card .cta-description {
    position: relative;
    z-index: 1;
}

.pricing-cta-card .cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.pricing-cta-card .cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.pricing-cta-card .cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ===== CTA Buttons ===== */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--pp-radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: white;
    color: #7c5cff;
}

.btn-cta-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
}

/* ===========================================
   INDEX PAGE ADDITIONAL SECTIONS
   =========================================== */

/* ===== Why Choose Section ===== */
.why-choose-section {
    padding: 5rem 0;
    background: var(--pp-bg2);
}

.benefit-card {
    background: var(--pp-surface);
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius-lg);
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--pp-shadow-lg);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--pp-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pp-text);
    margin-bottom: 0.75rem;
}

.benefit-description {
    font-size: 0.95rem;
    color: var(--pp-muted);
    line-height: 1.7;
    margin: 0;
}

/* ===== How It Works Section ===== */
.how-it-works-section {
    padding: 5rem 0;
    background: var(--pp-bg);
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    flex: 1 1 220px;
    max-width: 280px;
    position: relative;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--pp-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
}

.step-content {
    background: var(--pp-surface);
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius-lg);
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--pp-surface-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 1.25rem;
    color: var(--pp-primary);
}

.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pp-text);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.9rem;
    color: var(--pp-muted);
    margin: 0;
    line-height: 1.6;
}

.step-connector {
    display: none;
}

@media (min-width: 992px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 25px;
        left: calc(100% + 1rem);
        width: calc(2rem - 4px);
        height: 2px;
        background: var(--pp-border);
    }

    .step-connector::after {
        content: '';
        position: absolute;
        right: 0;
        top: -4px;
        width: 0;
        height: 0;
        border-left: 8px solid var(--pp-border);
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }

    .step-item:last-child .step-connector {
        display: none;
    }
}

/* ===== Use Cases Section ===== */
.use-cases-section {
    padding: 5rem 0;
    background: var(--pp-bg2);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.use-case-card {
    background: var(--pp-surface);
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pp-shadow-md);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: var(--pp-surface-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.use-case-icon i {
    font-size: 1.5rem;
    color: var(--pp-primary);
}

.use-case-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pp-text);
    margin-bottom: 0.5rem;
}

.use-case-description {
    font-size: 0.85rem;
    color: var(--pp-muted);
    margin: 0;
    line-height: 1.5;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 5rem 0;
    background: var(--pp-bg);
}

.cta-card {
    background: var(--pp-gradient);
    border-radius: var(--pp-radius-xl);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 576px) {
    .public-page-hero {
        padding: 4rem 0 3rem;
    }

    .page-hero-icon {
        width: 70px;
        height: 70px;
    }

    .page-hero-icon i {
        font-size: 2rem;
    }

    .comparison-table-wrapper {
        margin: 0 -1rem;
        border-radius: 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-item {
        max-width: 100%;
    }

    .btn-cta {
        width: 100%;
    }
}
