/* Color Palette and Variables */
:root {
    --blue: #0A3A5A;         /* Deep Ocean Blue */
    --yellow: #F4BA1A;       /* Warm Golden Yellow */
    --orange: #E07A5F;       /* Soft Terracotta Orange */
    --white: #FFFFFF;        /* Pure White */
    --bg-light: #F4F7FA;     /* Soft Light Blue/Grey */
    --text-primary: #1A202C;
    --text-secondary: #4A5568;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; scroll-behavior: smooth; }

body { background-color: var(--white); color: var(--text-primary); line-height: 1.6; font-size: 18px; overflow-x: hidden; }

/* Global */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-white { color: var(--white) !important; }
.text-yellow { color: var(--yellow) !important; }
.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--bg-light); }

.section { padding: 100px 0; overflow-x: hidden; }
.section-title { font-size: 42px; color: var(--blue); font-weight: 700; margin-bottom: 20px; line-height: 1.2; text-transform: uppercase; letter-spacing: -0.5px;}
.subtitle { font-size: 22px; color: var(--text-secondary); margin-bottom: 40px; }

/* Buttons */
.btn { display: inline-block; padding: 18px 40px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 18px; cursor: pointer; border: none; transition: var(--transition); letter-spacing: 0.5px;text-transform: uppercase;}
.btn-blue { background-color: var(--blue); color: var(--white); }
.btn-blue:hover { background-color: #0d4e7a; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(10,58,90,0.2); }
.btn-yellow { background-color: var(--yellow); color: var(--blue); }
.btn-yellow:hover { background-color: #f6c846; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(244,186,26,0.3); }
.btn-orange { background-color: var(--orange); color: var(--white); }
.btn-orange:hover { background-color: #d66046; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(224,122,95,0.3); }

/* Scroll Down Arrow */
.scroll-down-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--yellow);
    color: var(--blue);
    border-radius: 50%;
    font-size: 24px;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
    animation: bounceArrow 2s infinite;
    text-decoration: none;
}

.scroll-down-arrow:hover {
    transform: scale(1.1);
    background-color: #f6c846;
    color: var(--blue);
    box-shadow: 0 15px 25px rgba(244,186,26,0.3);
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

/* Header */
#main-header { position: fixed; width: 100%; top: 0; background: rgba(255,255,255,0.98); z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.06); padding: 15px 0; transition: var(--transition); backdrop-filter: blur(10px);}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 30px; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 12px; letter-spacing: -1px;}
.header-logo-img { height: 65px; width: auto; object-fit: contain; transform: scale(2.8); transform-origin: left center; margin-right: 120px; transition: var(--transition); }

.header-partners { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-right: 20px;}
.partners-text { width: 100%; text-align: center; font-size: 11px; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; margin-bottom: 4px; letter-spacing: 0.5px; opacity: 0.7; }
.partners-carousel { overflow: hidden; width: 240px; white-space: nowrap; position: relative; }
.partners-carousel::before, .partners-carousel::after { content: ''; position: absolute; top: 0; width: 30px; height: 100%; z-index: 2; pointer-events: none; }
.partners-carousel::before { left: 0; background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0)); }
.partners-carousel::after { right: 0; background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0)); }
.partners-track { display: inline-flex; align-items: center; gap: 40px; animation: scrollPartners 15s linear infinite; }
.partners-track img { height: 32px; width: auto; object-fit: contain; filter: grayscale(100%) opacity(0.7); transition: var(--transition); }
.partners-track img:hover { filter: grayscale(0%) opacity(1); }
@keyframes scrollPartners { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 20px)); } }

/* Hero */
.hero-section { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 80px; overflow: hidden; background: linear-gradient(90deg, #f4f7fa 0%, #ffffff 100%);}
.hero-bg { position: absolute; right: 0; top: 0; width: 55%; height: 100%; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; border-bottom-left-radius: 60px; box-shadow: -10px 0 40px rgba(0,0,0,0.05);}
.hero-content { position: relative; z-index: 1; display: flex; align-items: center; width: 100%;}
.hero-text { max-width: 600px; background: rgba(255,255,255,0.95); padding: 50px; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.08); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.5);}
.hero-text h1 { font-size: 58px; color: var(--blue); line-height: 1.1; margin-bottom: 25px; letter-spacing: -1.5px;}
.hero-text p { font-size: 22px; margin-bottom: 35px; color: var(--text-secondary); line-height: 1.5;}

/* Grid System */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }

/* Pain Items */
.pain-card { background: var(--bg-light); padding: 50px 30px; border-radius: 24px; text-align: center; transition: var(--transition); border: 2px solid transparent;}
.pain-card:hover { transform: translateY(-10px); background: var(--white); border-color: var(--orange); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.icon-circle { width: 90px; height: 90px; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 40px; margin: 0 auto 25px; transition: var(--transition);}
.pain-card:hover .icon-circle { background: var(--blue); transform: scale(1.1); box-shadow: 0 10px 20px rgba(10,58,90,0.2); }
.pain-card p { font-size: 20px; color: var(--text-primary); font-weight: 600; line-height: 1.5; }

/* Solution */
.solution-container { display: flex; align-items: center; gap: 80px; }
.solution-text { flex: 1; }
.solution-text p { font-size: 22px; color: var(--text-secondary); margin-bottom: 25px; line-height: 1.6;}
.solution-image { flex: 1; position: relative;}
.solution-image::before { content: ''; position: absolute; width: 100%; height: 100%; background: var(--yellow); top: 20px; left: -20px; border-radius: 24px; z-index: -1; opacity: 0.3;}
.solution-image img { width: 100%; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.15); object-fit: cover; aspect-ratio: 4/3;}

/* Process */
.process-steps { display: flex; justify-content: space-between; align-items: center; margin-top: 70px; position: relative; }
.process-steps::before { content: ''; position: absolute; width: 80%; height: 3px; background: #e2e8f0; top: 50px; left: 10%; z-index: 0; border-radius: 5px;}
.step { flex: 1; text-align: center; padding: 0 20px; position: relative; z-index: 1;}
.step-icon { width: 100px; height: 100px; background: var(--blue); color: var(--yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 45px; margin: 0 auto 20px; box-shadow: 0 10px 20px rgba(10,58,90,0.2); transition: var(--transition); border: 5px solid var(--white);}
.step:hover .step-icon { transform: scale(1.1); background: var(--orange); color: var(--white);}
.step h3 { font-size: 26px; color: var(--blue); margin-bottom: 15px; font-weight: 700;}
.step p { font-size: 18px; color: var(--text-secondary); }
.step-arrow { display:none;}

/* Transparency */
.product-gallery { margin-top: 50px; }

/* Testimonials */
.testimonial-card { background: var(--bg-light); border-radius: 24px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.06); text-align: left; transition: var(--transition); display: flex; flex-direction: column; border: 1px solid transparent;}
.testimonial-card:hover { transform: translateY(-10px); border-color: rgba(244,186,26,0.5); background: var(--white);}
.video-thumb { position: relative; height: 240px; overflow: hidden; cursor: pointer; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.video-thumb:hover img { transform: scale(1.08); }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; background: rgba(10,58,90,0.8); color: var(--white); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 28px; transition: var(--transition); backdrop-filter: blur(5px);}
.video-thumb:hover .play-btn { background: var(--orange); transform: translate(-50%, -50%) scale(1.1);}
.testimonial-card blockquote { padding: 35px 30px 20px; font-size: 22px; font-style: italic; color: var(--text-primary); border-left: 6px solid var(--yellow); margin: 0; flex-grow: 1; line-height: 1.4;}
.author { padding: 0 30px 30px; font-weight: 700; color: var(--blue); margin: 0; font-size: 18px;}

/* FAQ */
.faq-section { background: linear-gradient(135deg, var(--blue) 0%, #154c79 100%); }
.faq-container { max-width: 900px; }
.accordion { margin-top: 50px; background: rgba(255,255,255,0.05); border-radius: 20px; padding: 20px;}
.accordion-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header { width: 100%; text-align: left; padding: 25px 20px; background: none; border: none; font-size: 24px; color: var(--white); font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition);}
.accordion-header:hover { color: var(--yellow); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0, 1, 0, 1); }
.accordion-content p { padding: 0 20px 30px; color: rgba(255,255,255,0.85); font-size: 20px; line-height: 1.6;}
.accordion-header.active i { transform: rotate(180deg); color: var(--yellow);}

/* Support */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px; background: var(--bg-light); border-radius: 30px; border: 1px solid #eef3f7;}
.support-info h3 { font-size: 38px; color: var(--blue); margin-bottom: 15px; letter-spacing: -1px;}
.support-info p { font-size: 22px; color: var(--text-secondary); line-height: 1.5;}

/* Footer */
.main-footer { background: #072a42; color: rgba(255,255,255,0.7); padding: 70px 0 40px; font-size: 18px; }
.footer-container { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; margin-bottom: 30px;}
.footer-col .logo { font-size: 28px; margin-bottom: 20px; color: var(--white);}
.footer-logo-img { height: 80px; width: auto; object-fit: contain; transform: scale(2.8); transform-origin: left center; margin-right: 150px; transition: var(--transition); }
.security-badge { margin-top: 20px; color: #48bb78; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; background: rgba(72, 187, 120, 0.1); padding: 10px 20px; border-radius: 50px;}

/* Utils & Animations */
.fade-in-up { opacity: 0; transform: translateY(50px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Pulse animation */
@keyframes pulse { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244, 186, 26, 0.6); } 50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(244, 186, 26, 0); } 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244, 186, 26, 0); } }
.pulse-btn { animation: pulse 2.5s infinite cubic-bezier(0.66, 0, 0, 1); }

/* Floating WhatsApp Button */
.wa-float { position: fixed; bottom: 40px; right: 40px; width: 75px; height: 75px; background-color: #25d366; color: #FFF; border-radius: 50%; text-align: center; font-size: 45px; box-shadow: 0 10px 30px rgba(37,211,102,0.4); z-index: 100; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--transition); }
@keyframes wave { 0% { transform: rotate(0deg); } 10% { transform: rotate(14deg); } 20% { transform: rotate(-8deg); } 30% { transform: rotate(14deg); } 40% { transform: rotate(-4deg); } 50% { transform: rotate(10deg); } 60% { transform: rotate(0deg); } 100% { transform: rotate(0deg); } }
.wa-float:hover { background-color: #128c7e; transform: scale(1.1) translateY(-5px); box-shadow: 0 15px 40px rgba(37,211,102,0.5);}
.wa-float i { animation: wave 5s ease-in-out infinite; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .header-container { flex-direction: row; justify-content: space-between; align-items: center; gap: 0; padding-top: 10px; padding-bottom: 5px; }
    .header-logo-img { height: 60px; transform: scale(2.7); margin-left: 10px; transform-origin: left center; display: block; }
    .header-partners { margin-right: -15px; align-items: flex-end; margin-top: 0; margin-bottom: 0; width: auto; }
    .partners-carousel { width: 130px; }
    .partners-track img { height: 24px; }
    .grid-3 { grid-template-columns: 1fr; }
    .hero-section { flex-direction: column; text-align: center; padding-top: 100px; }
    .hero-bg { position: relative; width: 100%; height: 440px; border-radius: 0; }
    .hero-bg img { border-radius: 0; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px;}
    .hero-content { margin-top: -60px; padding: 0 15px;}
    .hero-text { margin: 0 auto; width: 100%; padding: 40px 20px;}
    .hero-text h1 { font-size: 42px; }
    .solution-container { flex-direction: column; text-align: center; gap: 40px;}
    .solution-text .section-title { text-align: center; }
    .process-steps { flex-direction: column; gap: 40px; }
    .process-steps::before { display: none; }
    .step-arrow { display: block; transform: rotate(90deg); font-size: 30px; color: var(--orange); margin: 0 auto;}
    .support-grid { grid-template-columns: 1fr; gap: 40px; padding: 30px; text-align: center;}
    .support-info.text-left { text-align: center; }
    .contact-detail { justify-content: center; }
    .footer-container { flex-direction: column; text-align: center; gap: 30px; align-items: center;}
    .footer-col .logo { justify-content: center; width: 100%; margin-bottom: 30px; }
    .footer-logo-img { transform: scale(2.2); margin: 0 auto; transform-origin: center; display: block;}
    .footer-col.text-right { text-align: center; }
}

/* --- QUIZ MODAL --- */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10,58,90,0.85); z-index: 2000; align-items: center; justify-content: center; backdrop-filter: blur(8px); opacity: 0; transition: opacity 0.3s ease; }
.modal.show { display: flex; opacity: 1; }
.modal-content { background: var(--white); width: 93%; max-width: 650px; border-radius: 24px; box-shadow: 0 25px 50px rgba(0,0,0,0.25); position: relative; overflow-x: hidden; overflow-y: auto; max-height: 95vh; transform: translateY(20px); transition: transform 0.3s ease; padding: 40px; display: flex; flex-direction: column; min-height: 500px;}
.modal.show .modal-content { transform: translateY(0); }
.modal-header { position: absolute; top: 0; left: 0; width: 100%; z-index: 10; }
.progress-bar-container { width: 100%; height: 10px; background: #eef3f7; }
.progress-bar { height: 100%; background: var(--yellow); width: 0%; transition: width 0.4s ease; }
.close-btn { position: absolute; top: 20px; right: 25px; background: none; border: none; font-size: 32px; color: #a0aec0; cursor: pointer; transition: var(--transition); z-index: 100;}
.close-btn:hover { color: var(--orange); transform: rotate(90deg); }
.modal-body { position: relative; margin-top: 30px; flex-grow: 1; overflow: hidden; display: flex;}
.quiz-step { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; visibility: hidden; transition: all 0.4s ease; transform: translateX(50px); display: flex; flex-direction: column; justify-content:center;}
.quiz-step.active { opacity: 1; visibility: visible; position: relative; transform: translateX(0); z-index:2;}
.quiz-step.exit-left { transform: translateX(-50px); opacity: 0; visibility: hidden; position: absolute;}
.quiz-title { font-size: 32px; color: var(--blue); line-height: 1.3; margin-bottom: 20px; font-weight: 700; letter-spacing: -0.5px;}
.quiz-subtitle { font-size: 20px; color: var(--text-secondary); margin-bottom: 30px; }
.quiz-helper { font-size: 16px; color: var(--text-secondary); margin-bottom: 20px; font-style: italic; }
.security-text { color: #c05621; font-style: normal; font-weight: 500; background: #fffaf0; padding: 15px; border-radius: 12px; font-size: 16px; margin-bottom: 30px; border: 1px solid #feebc8;}
.quiz-options { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
.quiz-option { width: 100%; text-align: left; padding: 20px 25px; border-radius: 16px; background: #f8fafc; border: 2px solid var(--orange); color: var(--blue); font-size: 22px; font-weight: 600; cursor: pointer; transition: var(--transition); box-shadow: 0 4px 6px rgba(0,0,0,0.02); display: block;}
.quiz-option:hover { background: var(--orange); color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(224,122,95,0.2) }
.large-input { width: 100%; padding: 20px; border-radius: 16px; border: 2px solid #e2e8f0; background: #f8fafc; font-size: 24px; color: var(--blue); outline: none; transition: var(--transition); font-weight: 600; font-family: 'Outfit', sans-serif;}
.large-input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(10,58,90,0.1); background: var(--white);}
.large-input::placeholder { color: #a0aec0; font-weight: 400;}
.modal-footer { margin-top: 20px; min-height: 30px;}
.back-link { background: none; border: none; font-size: 18px; color: var(--text-secondary); cursor: pointer; font-weight: 600; transition: var(--transition); align-items: center; gap: 8px;}
.back-link:hover { color: var(--blue); }
.w-100 { width: 100%; display: block; }
.mt-4 { margin-top: 30px; }
.quiz-success { color: #38a169; }
.spinner-container { display: flex; justify-content: center; align-items: center; margin: 30px 0; }
.loader-spinner { border: 6px solid #eef3f7; border-top: 6px solid var(--orange); border-radius: 50%; width: 70px; height: 70px; animation: spin 1s linear infinite; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.error-border { border-color: #e53e3e !important; background: #fff5f5 !important; }
.error-msg { color: #e53e3e; font-size: 16px; margin-top: 10px; display: block; font-weight: 600; text-align: center;}
.loading-text { transition: opacity 0.4s ease, transform 0.4s ease; transform: translateY(0); opacity: 1;}
.loading-text.fade-out { opacity: 0; transform: translateY(-10px); }
.loading-text.fade-in { opacity: 0; transform: translateY(10px); }
/* Terms & Signature Pad */
.terms-box {
    max-height: 250px; overflow-y: auto; background: #f8f9fa; padding: 15px; border-radius: 8px; font-size: 14px; margin-bottom: 20px; border: 1px solid #e2e8f0; color: #4a5568; text-align: left;
}
.terms-acceptance {
    text-align: left; margin-bottom: 20px;
}
.terms-label {
    display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
}
.terms-label input {
    margin-top: 5px; transform: scale(1.2); flex-shrink: 0;
}
.terms-text {
    font-size: 14px; color: #4a5568; line-height: 1.4;
}
.signature-section {
    text-align: center; margin-bottom: 20px;
}
.signature-pad-wrapper {
    position: relative; width: 100%; border-radius: 8px; overflow: hidden; background-color: #f4f5f4; border: 1px solid #cbd5e0; margin-bottom: 15px;
}
.signature-placeholder {
    position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); color: #a0aec0; font-size: 16px; pointer-events: none; font-family: monospace;
}
.signature-canvas {
    width: 100%; height: 200px; display: block; touch-action: none; position: relative; z-index: 1; cursor: crosshair;
}
.signature-buttons {
    display: flex; gap: 10px; align-items: stretch;
}
#btn-clear-sig {
    background: #1a202c; color: #fff; padding: 18px 20px; font-size: 14px; flex: 1; max-width: 120px; border-radius: 8px; text-transform: uppercase; border: none; font-weight: 700; cursor: pointer; transition: var(--transition);
}
#btn-clear-sig:hover {
    background: #2d3748;
}
#btn-accept-terms {
    padding: 18px; font-size: 16px; flex: 2; border-radius: 8px; text-transform: uppercase; transition: var(--transition); border: none; font-weight: 700;
}

@media (max-width: 768px) { 
    .modal-content { padding: 30px 15px 15px; min-height: auto; max-height: 90vh; } 
    .quiz-title { font-size: 21px; margin-bottom: 15px; } 
    .quiz-option { font-size: 17px; padding: 15px 20px; } 
    .large-input { font-size: 18px; }
    
    .terms-box { max-height: 18vh; margin-bottom: 12px; font-size: 12px; padding: 12px; }
    .terms-acceptance { margin-bottom: 12px; }
    .terms-label { gap: 8px; }
    .terms-label input { margin-top: 3px; transform: scale(1.1); }
    .terms-text { font-size: 12.5px; line-height: 1.3; }
    .signature-section { margin-bottom: 10px; }
    .signature-pad-wrapper { margin-bottom: 10px; border-radius: 6px; }
    .signature-canvas { height: 110px; }
    .signature-placeholder { font-size: 13px; }
    #btn-clear-sig { padding: 14px 10px; font-size: 12px; }
    #btn-accept-terms { padding: 14px; font-size: 13px; }
    .quiz-helper { font-size: 14px; margin-bottom: 15px; }
}

@media (max-height: 700px) and (max-width: 768px) {
    .terms-box { max-height: 13vh; font-size: 11px; padding: 10px; border-radius: 6px; }
    .signature-canvas { height: 95px; }
    .quiz-title { font-size: 19px; margin-bottom: 12px; }
    .modal-content { padding: 25px 15px 15px; border-radius: 16px; }
    .terms-text { font-size: 11px; }
    #btn-clear-sig, #btn-accept-terms { padding: 10px 8px; font-size: 12px; }
}


/* --- CHECKOUT PAGE --- */
.checkout-page { padding: 40px 0; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #eef3f7; }
.checkout-wrapper { display: flex; gap: 50px; background: transparent; align-items: flex-start; }
.checkout-left { flex: 1; max-width: 550px; }
.checkout-right { flex: 1; max-width: 500px; }

/* Left Column */
.checkout-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.checkout-logo { height: 75px; width: auto; object-fit: contain; transform: scale(3.2); transform-origin: left center; margin-right: 140px; }
.badge-approved { background: #e6fffa; color: #234e52; padding: 8px 16px; border-radius: 50px; font-weight: 700; display: flex; align-items: center; gap: 8px; font-size: 16px; border: 1px solid #b2f5ea; }
.badge-approved i { color: #38a169; font-size: 20px; }
.checkout-headline { font-size: 42px; color: var(--blue); line-height: 1.1; margin-bottom: 15px; font-weight: 700; letter-spacing: -1px; }
.checkout-headline span { color: var(--orange); }
.checkout-subheadline { font-size: 20px; color: var(--text-secondary); margin-bottom: 30px; line-height: 1.4; }

.feature-box { background: rgba(10,58,90,0.04); border: 2px solid rgba(10,58,90,0.1); border-radius: 20px; padding: 30px; margin-bottom: 30px; }
.feature-title { font-size: 24px; color: var(--blue); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.feature-title i { color: #25d366; font-size: 30px; }
.feature-desc { font-size: 18px; color: var(--text-secondary); margin-bottom: 25px; line-height: 1.5; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.feature-list li { font-size: 17px; color: var(--text-primary); display: flex; align-items: flex-start; gap: 12px; line-height: 1.4; }
.text-green { color: #38a169; font-size: 20px; margin-top: 2px; }

.trust-shield { display: flex; gap: 20px; align-items: flex-start; background: var(--white); padding: 25px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.shield-icon { font-size: 45px; color: var(--orange); }
.shield-text h4 { font-size: 20px; color: var(--blue); margin-bottom: 5px; }
.shield-text p { font-size: 16px; color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* Right Column: Payment Form */
.payment-card { background: var(--white); border-radius: 24px; padding: 40px; box-shadow: 0 25px 60px rgba(10,58,90,0.08); border: 1px solid #e2e8f0; position: relative; }
.payment-header { text-align: center; font-size: 18px; font-weight: 700; color: #2d3748; margin-bottom: 25px; display: flex; justify-content: center; align-items: center; gap: 8px; border-bottom: 1px solid #edf2f7; padding-bottom: 20px; }

.order-summary { background: #f8fafc; padding: 20px; border-radius: 12px; margin-bottom: 30px; border: 1px dashed #cbd5e0; }
.order-item { display: flex; justify-content: space-between; color: var(--text-secondary); font-size: 16px; margin-bottom: 10px; }
.order-item.highlight { color: #38a169; font-weight: 600; }
.order-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 20px; color: var(--blue); margin-top: 15px; padding-top: 15px; border-top: 1px solid #e2e8f0; }

.checkout-form .input-group { margin-bottom: 20px; display: flex; flex-direction: column; }
.checkout-form label { font-size: 15px; font-weight: 600; color: var(--blue); margin-bottom: 8px; }
.checkout-input { padding: 15px; border-radius: 12px; border: 2px solid #e2e8f0; background: #fff; font-size: 18px; color: var(--text-primary); transition: var(--transition); font-family: 'Outfit'; }
.checkout-input:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 4px rgba(10,58,90,0.1); }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.payment-method-title { font-size: 18px; color: var(--blue); margin: 30px 0 15px; font-weight: 700; }
.payment-methods { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
.payment-option { border: 2px solid #e2e8f0; border-radius: 12px; padding: 20px; cursor: pointer; transition: var(--transition); display: flex; flex-direction: column; gap: 10px; background: #fff; }
.payment-option:hover { border-color: #cbd5e0; background: #f8fafc; }
.payment-option.selected { border-color: var(--blue); background: rgba(10,58,90,0.03); box-shadow: 0 4px 15px rgba(10,58,90,0.05); }
.option-header { display: flex; align-items: center; gap: 12px; }
.option-header input[type="radio"] { width: 20px; height: 20px; accent-color: var(--blue); cursor: pointer; }
.option-name { font-size: 18px; font-weight: 700; color: var(--blue); flex: 1; display: flex; align-items: center; gap: 8px; }
.badge-recommended { background: var(--yellow); color: var(--blue); font-size: 11px; padding: 3px 8px; border-radius: 20px; font-weight: 800; text-transform: uppercase; margin-left: auto;}
.card-brands { display: flex; gap: 8px; font-size: 24px; color: #a0aec0; margin-left: auto; }
.option-details { padding-left: 32px; display: flex; flex-direction: column; }
.option-price { font-size: 18px; font-weight: 600; color: var(--text-primary); }
.option-discount { font-size: 14px; color: #38a169; font-weight: 600; }

.checkout-btn { width: 100%; font-size: 20px; padding: 22px; text-transform: uppercase; font-weight: 800; box-shadow: 0 10px 25px rgba(244,186,26,0.3); }

.checkout-footer { margin-top: 25px; text-align: center; }
.checkout-footer p { font-size: 14px; color: var(--text-secondary); margin-bottom: 15px; }
.security-badges-grayscale { display: flex; justify-content: center; gap: 20px; color: #a0aec0; font-size: 13px; font-weight: 600; flex-wrap: wrap; }
.security-badges-grayscale span { display: flex; align-items: center; gap: 5px; }
.security-badges-grayscale i { font-size: 16px; }

/* Checking Grid Update Desktop */
.feature-list-grid { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.feature-list-grid li { display: grid; grid-template-columns: 24px 130px 1fr; gap: 12px; align-items: start; }
.contact-info i { color: var(--yellow); font-size: 24px; margin-right: 15px; }

/* Full Width Image (Products Section) */
.full-width-image {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    display: block;
    margin: 40px 0 0 0;
    transition: var(--transition);
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 768px) {
    .full-width-image {
        margin: 20px 0 0 0;
    }
}

.feat-icon { color: #38a169; font-size: 22px; margin-top: 1px; }
.feat-label { font-size: 17px; font-weight: 700; color: var(--blue); line-height: 1.4; }
.feat-text { font-size: 17px; color: var(--text-primary); line-height: 1.4; }

/* Responsive adjustments specifically for checkout Page */
@media (max-width: 992px) { 
    .checkout-page { padding: 15px 0; background: #fff;}
    .checkout-wrapper { flex-direction: column; padding: 10px 15px; gap: 30px; } 
    .checkout-left, .checkout-right { max-width: 100%; width: 100%; } 
    
    .checkout-header { flex-direction: column; align-items: center; gap: 15px; text-align: center; margin-bottom: 10px; }
    .checkout-logo { height: 65px; transform: scale(3.0); margin: 0 0 15px 0; transform-origin: center; display: block; }
    .badge-approved { font-size: 14px; padding: 6px 14px; }
    
    .checkout-headline { text-align: center; font-size: 28px; letter-spacing: -0.5px; margin-bottom: 15px; }
    .checkout-subheadline { text-align: center; font-size: 17px; margin-bottom: 25px; line-height: 1.5; }
    
    .feature-box { padding: 20px; border-radius: 16px; margin-bottom: 25px; background: rgba(10,58,90,0.03); border-color: rgba(10,58,90,0.08); }
    .feature-title { font-size: 20px; justify-content: center; margin-bottom: 20px; text-align: center;}
    
    .feature-list-grid { gap: 18px; }
    .feature-list-grid li { display: grid; grid-template-columns: 24px 1fr; gap: 2px 10px; }
    .feat-icon { grid-row: span 2; margin-top: 2px; }
    .feat-label { grid-column: 2; font-size: 16px; margin: 0; }
    .feat-text { grid-column: 2; font-size: 14.5px; color: var(--text-secondary); }
    
    .trust-shield { flex-direction: column; align-items: center; text-align: center; padding: 25px 20px; gap: 15px; background: #f8fafc; border: 1px dashed #cbd5e0;}
    .shield-icon { font-size: 35px; }
    .shield-text h4 { font-size: 18px; }
    .shield-text p { font-size: 14.5px; }
    
    .payment-card { padding: 25px 20px; border-radius: 20px; box-shadow: 0 5px 20px rgba(10,58,90,0.08); border: 1px solid #edf2f7; margin-top: 10px;}
    .payment-header { font-size: 15px; margin-bottom: 20px; }
    .order-summary { padding: 15px; margin-bottom: 20px; }
    .order-item { font-size: 14px; margin-bottom: 8px;}
    .order-total { font-size: 18px; margin-top: 10px; padding-top: 10px;}
    
    .input-row { grid-template-columns: 1fr; gap: 0; } 
    .checkout-form .input-group { margin-bottom: 15px; }
    .checkout-form label { font-size: 14px; margin-bottom: 5px; }
    .checkout-input { padding: 14px; font-size: 16px; border-radius: 12px; }
    
    .payment-method-title { font-size: 16px; text-align: center; margin: 25px 0 15px; }
    .payment-option { padding: 15px; border-radius: 12px; }
    .option-name { flex-direction: column; align-items: flex-start; gap: 4px; font-size: 16px;}
    .badge-recommended { margin-left: 0; font-size: 10px; padding: 2px 6px;}
    .option-price { font-size: 16px; }
    
    .checkout-btn { padding: 18px; font-size: 16px; border-radius: 12px; margin-top: 10px; }
    .checkout-footer p { font-size: 13px; }
    .security-badges-grayscale { gap: 10px; font-size: 12px; justify-content: center; flex-wrap: wrap;}
}
