:root {
    --ps-blue: #31A8FF;
    --ps-blue-dark: #001E36;
    --ps-blue-hover: #1b8adb;
    --bg-white: #ffffff;
    --bg-light: #f5f9fc;
    --text-dark: #1a1a1a;
    --text-gray: #4a5568;
    --border-color: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--ps-blue);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 0.9rem;
}

.main-header {
    background-color: var(--bg-white);
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--ps-blue-dark);
    letter-spacing: -1px;
}

.logo-highlight {
    color: var(--ps-blue);
}

.logo-shape {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--ps-blue) 0%, #106ca6 100%);
    border-radius: 8px;
    transform: rotate(45deg);
    position: relative;
    box-shadow: 0 5px 15px rgba(49, 168, 255, 0.4);
}

.logo-shape::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-eyebrow {
    color: var(--ps-blue);
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--ps-blue-dark);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--ps-blue);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Mockup Placeholder */
.hero-mockup {
    margin: 0 auto 40px auto;
    max-width: 800px;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(49, 168, 255, 0.2);
    display: block;
    margin: 0 auto;
}

/* CTA Buttons */
.cta-container {
    text-align: center;
    margin-top: 20px;
}

.price-strike {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #e53e3e;
    font-weight: 600;
}

.price-today {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ps-blue-dark);
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--ps-blue);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(49, 168, 255, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--ps-blue-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(49, 168, 255, 0.5);
}

.secure-badge {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Common Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ps-blue-dark);
    margin-bottom: 50px;
}

.section-title span {
    color: var(--ps-blue);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: -35px;
    margin-bottom: 50px;
}

/* Features Grid */
.features {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.feature-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--ps-blue);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--ps-blue-dark);
}

/* Preview Section */
.preview-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.preview-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.preview-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.preview-name {
    text-align: center;
    padding: 12px 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ps-blue-dark);
}

@media (max-width: 900px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Creator Section */
.creator-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.creator-container {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.creator-image-col {
    flex: 1;
}

.creator-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.creator-content-col {
    flex: 1;
    text-align: left;
}

.creator-badge {
    display: inline-block;
    background-color: rgba(49, 168, 255, 0.15);
    color: var(--ps-blue-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.creator-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--ps-blue-dark);
    margin-bottom: 10px;
}

.creator-title span {
    color: var(--ps-blue);
}

.creator-divider {
    width: 60px;
    height: 4px;
    background-color: var(--ps-blue);
    margin-bottom: 20px;
    border-radius: 2px;
}

.creator-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.creator-text strong {
    color: var(--ps-blue-dark);
}

.creator-buy-btn {
    margin-top: 15px;
    width: 100%;
    text-align: center;
}

.creator-support-text {
    margin-top: 25px;
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.whatsapp-btn {
    display: block;
    text-align: center;
    background-color: #fff;
    color: #25D366;
    border: 2px solid #25D366;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #25D366;
    color: #fff;
}

/* Bonus Section */
.bonus-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.bonus-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: linear-gradient(135deg, var(--ps-blue-dark) 0%, #004073 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 30, 54, 0.2);
    align-items: center;
}

.bonus-right-panel {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bonus-two-col {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.bonus-box {
    flex: 1;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
}

.right-box {
    border: 2px solid var(--ps-blue);
    text-align: center;
    position: relative;
}

.bonus-badge {
    display: inline-block;
    background-color: #FFD700;
    color: #000;
    font-weight: 800;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.bonus-box-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ps-blue-dark);
    margin-bottom: 25px;
}

.bonus-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.bonus-check-list li {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    background-color: var(--ps-blue);
    color: #fff;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.bonus-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 20px 0;
}

.bonus-footer-text {
    font-size: 0.9rem;
    color: #666;
}

.intro-price-text {
    color: #d35400;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.price-container {
    margin-bottom: 15px;
}

.strike-price-box {
    text-decoration: line-through;
    color: #999;
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.main-price-box {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--ps-blue-dark);
    line-height: 1;
}

.payment-terms {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.bonus-star-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 35px auto;
    max-width: 300px;
    text-align: left;
}

.bonus-star-list li {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.star-icon {
    color: var(--ps-blue);
    font-size: 1.2rem;
}

.checkout-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
    width: 100%;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    color: #000;
    transform: translateY(-2px);
}

.secure-checkout-text {
    font-size: 0.85rem;
    color: #888;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--ps-blue-dark);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-gray);
}

.main-footer {
    background-color: #041424;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 25px;
    font-size: 1rem;
    color: var(--ps-blue);
}

.footer-links a {
    color: var(--ps-blue);
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.meta-disclaimer {
    font-size: 0.8rem;
    color: #5d758a;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .price-today {
        font-size: 2rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 15px 25px;
        width: 100%;
        max-width: 350px;
        display: block;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .bonus-two-col {
        flex-direction: column;
    }
    
    .bonus-box {
        padding: 25px;
    }
    
    .main-price-box {
        font-size: 3.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .creator-container {
        flex-direction: column;
        padding: 25px 15px;
        gap: 30px;
    }
    
    .creator-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 500px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }
}

/* Sticky Footer */
body {
    padding-bottom: 80px; /* Space for sticky footer */
}

.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--ps-blue-dark);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    border-top: 3px solid var(--ps-blue);
}

.sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    gap: 20px;
}

.sticky-timer-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

#sticky-timer {
    background-color: #e53e3e;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 900;
    letter-spacing: 2px;
}

.sticky-btn {
    background-color: #FFD700;
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.sticky-btn:hover {
    background-color: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 165, 0, 0.5);
}

@media (max-width: 600px) {
    .sticky-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .sticky-timer-text {
        font-size: 1rem;
    }
    .sticky-btn {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
    }
    body {
        padding-bottom: 120px;
    }
}
