* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
}

/* Hero Section */
.hero-section {
    background: url('/assets/images/popiforce-header.png') center/cover no-repeat;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}
.hero-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 0;
    align-items: center;
}
.hero-left {
    flex: 1;
    color: white;
}
.logo img {
    max-width: 450px;
    margin-bottom: 30px;
}
.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-left h1 span {
    font-size: 26px;
    font-weight: 500;
}
.hero-left p {
    font-size: 18px;
    line-height: 1.5;
    max-width: 90%;
    margin-bottom: 30px;
}
.btn-try {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid white;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}
.btn-try:hover {
    background: white;
    color: #3f64bb;
}
.hero-right {
    flex: 1;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.glass-form h3 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
}
.glass-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.glass-form label {
    flex: 1;
    font-size: 14px;
}
.glass-form input {
    width: 100%;
    padding: 12px 16px;
    margin-top: 8px;
    border: none;
    border-radius: 40px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    font-family: 'Poppins', sans-serif;
    color: white;
    border: 1px solid rgba(255,255,255,0.5);
}
.glass-form input::placeholder {
    color: rgba(255,255,255,0.7);
}
.glass-form input:focus {
    outline: none;
    background: rgba(255,255,255,0.3);
}
.btn-glass {
    width: 100%;
    background: #3f64bb;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
}
.btn-glass:hover { background: #2d4a9e; }

/* Trust Section */
.trust-section {
    background: white;
    padding: 60px 20px;
    text-align: center;
}
.trust-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 90%;
}
.trust-container h2 {
    font-size: 40px;
    color: #3f64bb;
    max-width: 900px;
    margin: 0 auto 40px;
}
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.badge {
    background: linear-gradient(135deg, #6e93e0, #3f64bb);
    color: white;
    padding: 30px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 20px;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

/* Risk Section (About Us cards) */
.risk-section {
    background: #fff;
    padding: 60px 20px;
}
.risk-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}
.risk-text {
    flex: 1;
}
.risk-text h2 {
    font-size: 34px;
    color: #3f64bb;
    margin-bottom: 30px;
}
.risk-item {
    background: white;
    padding: 20px;
    border-radius: 24px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}
.risk-item i {
    font-size: 28px;
    color: #3f64bb;
    margin-right: 15px;
}
.risk-item strong {
    color: #3f64bb;
}
.risk-item p, .risk-item br {
    color: #1e293b;
}
.risk-image {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.risk-image img {
    max-width: 100%;
    border-radius: 30px;
}

/* Benefits Section */
.benefits-section {
    background: white;
    padding: 80px 20px;
    text-align: center;
}
.benefits-section h2 {
    font-size: 40px;
    color: #3f64bb;
    margin-bottom: 50px;
}
.benefits-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
    width: 90%;
}
.benefit-card {
    background: linear-gradient(180deg, #7196e5 0%, #394b73 100%);
    padding: 30px;
    border-radius: 32px;
    flex: 1;
    min-width: 250px;
    text-align: center;
    transition: 0.3s;
    color: white;
}
.benefit-card img {
    width: 120px;
    margin-bottom: 20px;
}
.benefit-card h3 {
    margin-bottom: 15px;
    color: white;
}
.benefit-card p {
    color: rgba(255,255,255,0.9);
}

/* Testimonial Slider */
.testimonial-section {
    background: #3f64bb;
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
}
.testimonial-section h2 {
    font-size: 40px;
    margin-bottom: 40px;
}
.testimonial-slider-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}
.testimonial-slider-container {
    overflow: hidden;
    position: relative;
}
.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-card {
    flex: 0 0 100%;
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 40px;
    backdrop-filter: blur(8px);
    box-sizing: border-box;
}
.testimonial-icon {
    font-size: 60px;
    color: white;
    margin-bottom: 20px;
}
.testimonial-card p {
    font-size: 18px;
    margin: 20px 0;
    line-height: 1.6;
}
.testimonial-card h4 {
    font-weight: 600;
    margin-top: 20px;
}
.testimonial-card span {
    font-size: 14px;
    opacity: 0.8;
    display: block;
    margin-top: 10px;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: 0.2s;
    z-index: 10;
}
.slider-btn:hover {
    background: rgba(255,255,255,0.6);
}
.prev-btn {
    left: 0;
}
.next-btn {
    right: 0;
}
.dots-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}
.dot.active {
    background: white;
    width: 30px;
    border-radius: 10px;
}

/* PDF Encryption Section */
.encrypt-section {
    background: white;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    scroll-margin-top: 20px;
}
.encrypt-container {
    max-width: 700px;
    width: 100%;
    background: white;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    padding: 48px;
    border: 1px solid #eef2ff;
}
.encrypt-container h2 {
    color: #3f64bb;
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
}
.encrypt-container p {
    text-align: center;
    margin-bottom: 36px;
    color: #475569;
}
.encrypt-form-group {
    margin-bottom: 24px;
}
.encrypt-form-group label {
    display: block;
    color: #3f64bb;
    font-weight: 600;
    margin-bottom: 8px;
}
.encrypt-form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
}
.encrypt-form-group input:focus {
    outline: none;
    border-color: #3f64bb;
    box-shadow: 0 0 0 3px rgba(63,100,187,0.15);
}
.encrypt-form-group input[type="file"] {
    padding: 10px;
    background: #fefefe;
}
.encrypt-form-group input[type="file"]::file-selector-button {
    background: #3f64bb;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}
.btn-encrypt {
    background: #3f64bb;
    color: white;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 10px;
}
.btn-encrypt:hover { background: #2d4a9e; }
#loader, #successMsg {
    text-align: center;
    margin-top: 20px;
    padding: 12px;
    border-radius: 40px;
}
#loader { background: #e2e8f0; color: #3f64bb; }
#successMsg { background: #10b981; color: white; }

/* Footer Section */
.footer-section {
    background: url('/assets/images/footer-background.png') center/cover no-repeat;
    padding: 60px 20px 20px;
    color: white;
}
.footer-cta {
    padding: 60px 20px;
    margin-bottom: 60px;
}
.footer-cta-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}
.footer-cta-left {
    flex: 1;
    color: white;
}
.footer-cta-left h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}
.footer-cta-left p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}
.footer-cta-left .no-sales-pitch {
    font-weight: 600;
    margin-top: 20px;
}
.footer-cta-right {
    flex: 1;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.3);
}
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}
.footer-left img {
    max-width: 180px;
    margin-bottom: 20px;
}
.footer-left p {
    line-height: 1.8;
}
.footer-middle h4 {
    margin-bottom: 20px;
}
.footer-middle a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 12px;
}
.social-icons a {
    color: white;
    font-size: 24px;
    margin-right: 15px;
}
.footer-bottom {
    text-align: center;
    margin-top: 60px;
}
.footer-bottom img {
    width: 100%;
    max-width: 1300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-left h1 { font-size: 32px; }
    .trust-container h2, .benefits-section h2, .testimonial-section h2 { font-size: 28px; }
    .encrypt-container { padding: 28px; }
    .badge { font-size: 16px; padding: 20px; }
    .slider-btn { width: 30px; height: 30px; font-size: 16px; }
    .testimonial-slider-wrapper { padding: 0 30px; }
    .footer-cta-left h3 { font-size: 24px; }
    .footer-cta-container { flex-direction: column; }
}