/* ============================================
   PARTNERS PAGE - STYLESHEET
   ============================================ */

/* ===== HERO SECTION ===== */
.partners-hero {
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8eaf6 100%);
    position: relative;
    overflow: hidden;
}

.partners-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--yellow) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.partners-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--blue) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.partners-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.partners-hero-tagline {
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.partners-hero-text h1 {
    font-size: 3rem;
    color: var(--blue);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.partners-hero-text h1 .highlight {
    color: var(--yellow);
    position: relative;
}

.partners-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 540px;
}

.partners-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.partners-hero-buttons .btn-primary {
    background: var(--yellow);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--yellow);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.partners-hero-buttons .btn-primary:hover {
    background: transparent;
    color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(240, 194, 39, 0.3);
}

.partners-hero-buttons .btn-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    display: block;
    width: 100%;
    margin-top: -0.5rem;
}

.partners-hero-buttons .btn-secondary {
    background: transparent;
    color: var(--blue);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--blue);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.partners-hero-buttons .btn-secondary:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 38, 88, 0.2);
}

/* ===== SPLIT IMAGE / BEFORE-AFTER VISUAL ===== */
.split-image-container {
    display: flex;
    gap: 1.2rem;
    position: relative;
}

.split-card {
    flex: 1;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.split-before {
    background: var(--white);
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.split-after {
    background: var(--white);
    border: 1px solid rgba(240, 194, 39, 0.4);
    box-shadow: 0 4px 20px rgba(240, 194, 39, 0.15);
    animation: float 3s ease-in-out infinite;
}

.split-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.split-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.6rem;
}

.split-before .split-icon {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.split-after .split-icon {
    background: rgba(240, 194, 39, 0.15);
    color: var(--yellow);
}

.split-label {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.split-before .split-label {
    color: var(--text-light);
}

.split-after .split-label {
    color: var(--blue);
}

.split-list {
    list-style: none;
    text-align: left;
    padding: 0;
}

.split-list li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.split-before .split-list li {
    color: var(--text-light);
}

.split-before .split-list li i {
    color: #dc3545;
    font-size: 0.85rem;
}

.split-after .split-list li {
    color: var(--text-dark);
}

.split-after .split-list li i {
    color: #28a745;
    font-size: 0.85rem;
}

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

/* ===== SECTION 1: THE ADMINISTRATIVE CHALLENGE ===== */
.challenge-section {
    padding: 80px 0;
    background: var(--white);
}

.challenge-section .section-title p {
    max-width: 750px;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.challenge-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.challenge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-color: rgba(220, 53, 69, 0.2);
}

.challenge-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    transition: var(--transition);
}

.challenge-card:hover .challenge-icon {
    transform: rotateY(360deg);
}

.challenge-card h3 {
    color: var(--blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.challenge-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== SECTION 2: THE WISERWITS SOLUTION ===== */
.solution-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.solution-section .section-title p {
    max-width: 750px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.solution-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(240, 194, 39, 0.3);
}

.solution-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--yellow), var(--blue));
    color: var(--white);
    transition: var(--transition);
}

.solution-card:hover .solution-icon {
    transform: rotateY(360deg);
}

.solution-card h3 {
    color: var(--blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.solution-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== SECTION 3: VALUE PROPOSITION ===== */
.valueprop-section {
    padding: 80px 0;
    background: var(--white);
}

.valueprop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.valueprop-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.valueprop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-color: rgba(240, 194, 39, 0.3);
}

.valueprop-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--yellow), var(--blue));
    color: var(--white);
    transition: var(--transition);
}

.valueprop-card:hover .valueprop-icon {
    transform: rotateY(360deg);
}

.valueprop-card h3 {
    color: var(--blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.valueprop-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== SECTION 4: PARTNERSHIP MODELS ===== */
.models-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 1rem auto 0;
}

.model-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.model-a:hover {
    border-color: var(--yellow);
}

.model-b {
    border-color: var(--blue);
}

.model-b:hover {
    border-color: var(--yellow);
}

.model-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--yellow);
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 20px;
    border-radius: 20px;
}

.model-b .model-badge {
    background: var(--blue);
    color: var(--white);
}

.model-header {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.model-header h3 {
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 0.3rem;
}

.model-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

.model-price {
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.5rem;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.2;
}

.model-a .price-amount {
    color: #28a745;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.model-body {
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.model-detail {
    margin-bottom: 1.2rem;
}

.model-detail h4 {
    font-size: 0.95rem;
    color: var(--blue);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.model-detail h4 i {
    color: var(--yellow);
    font-size: 0.9rem;
}

.model-detail p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    padding-left: 1.5rem;
}

.model-cta {
    display: inline-block;
    background: var(--yellow);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--yellow);
    transition: var(--transition);
    margin-top: auto;
}

.model-cta:hover {
    background: transparent;
    color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(240, 194, 39, 0.3);
}

.model-b .model-cta {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.model-b .model-cta:hover {
    background: transparent;
    color: var(--blue);
    box-shadow: 0 10px 30px rgba(26, 38, 88, 0.2);
}

/* ===== SECTION 5: DATA PRIVACY & SECURITY ===== */
.privacy-section {
    padding: 80px 0;
    background: var(--white);
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.privacy-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.privacy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-color: rgba(26, 38, 88, 0.2);
}

.privacy-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    background: rgba(26, 38, 88, 0.1);
    color: var(--blue);
    transition: var(--transition);
}

.privacy-card:hover .privacy-icon {
    background: var(--blue);
    color: var(--white);
    transform: rotateY(360deg);
}

.privacy-card h3 {
    color: var(--blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.privacy-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== QUOTE SUCCESS TOAST ===== */
.quote-success-toast {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #25D366;
    color: #fff;
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 3000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastSlideIn 0.4s ease, toastFadeOut 0.5s ease 4s forwards;
}

@keyframes toastSlideIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes toastFadeOut {
    to { opacity: 0; transform: translateX(-50%) translateY(-20px); visibility: hidden; }
}

/* ===== DEMO POPUP MODAL ===== */
.demo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.demo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.demo-modal {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    width: 90%;
    max-width: 420px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.demo-modal-overlay.active .demo-modal {
    transform: translateY(0) scale(1);
}

.demo-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.demo-modal-close:hover {
    color: var(--blue);
}

.demo-modal-icon {
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.demo-modal h3 {
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 0.3rem;
}

.demo-modal > p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.8rem;
}

.demo-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.demo-btn-whatsapp:hover {
    background: transparent;
    color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.demo-btn-whatsapp i {
    font-size: 1.3rem;
}

.demo-btn-form {
    background: var(--yellow);
    color: var(--white);
    border-color: var(--yellow);
}

.demo-btn-form:hover {
    background: transparent;
    color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 194, 39, 0.3);
}

/* ===== QUOTE MODAL ===== */
.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quote-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quote-modal {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    width: 90%;
    max-width: 480px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.quote-modal-overlay.active .quote-modal {
    transform: translateY(0) scale(1);
}

.quote-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.quote-modal-close:hover {
    color: var(--blue);
}

.quote-modal h3 {
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 0.3rem;
}

.quote-modal > p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.quote-form-group {
    margin-bottom: 1.2rem;
}

.quote-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 0.4rem;
}

.quote-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.quote-form-group input:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(240, 194, 39, 0.15);
}

.quote-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--yellow);
    color: var(--white);
    border: 2px solid var(--yellow);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.quote-submit-btn:hover {
    background: transparent;
    color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 194, 39, 0.3);
}

/* ===== SECTION 6: FOOTER CTA ===== */
.footer-cta-section {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.footer-cta-content h2 {
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-cta-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta-content .btn-primary {
    background: var(--yellow);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--yellow);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-cta-content .btn-primary:hover {
    background: transparent;
    color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(240, 194, 39, 0.3);
}

.footer-cta-note {
    display: block;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===== NEP QUIZ MODAL ===== */
.quiz-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quiz-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quiz-modal {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    width: 92%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.quiz-modal-overlay.active .quiz-modal {
    transform: translateY(0) scale(1);
}

.quiz-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.quiz-modal-close:hover {
    color: var(--blue);
}

/* Progress Bar */
.quiz-progress {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--yellow), var(--blue));
    border-radius: 3px;
    width: 0%;
    transition: width 0.4s ease;
}

/* Steps */
.quiz-step {
    display: none;
    text-align: center;
    animation: quizFadeIn 0.35s ease;
}

.quiz-step.active {
    display: block;
}

@keyframes quizFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Intro */
.quiz-intro-icon {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.quiz-step h3 {
    font-size: 1.4rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.quiz-step > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.quiz-next-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--white);
    border: 2px solid var(--yellow);
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.quiz-next-btn:hover {
    background: transparent;
    color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 194, 39, 0.3);
}

/* Question Step */
.quiz-question-counter {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.quiz-part-label {
    font-size: 0.8rem;
    color: var(--yellow);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding: 6px 16px;
    background: rgba(240, 194, 39, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.quiz-question-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 1.8rem 1.5rem;
    margin-bottom: 1.8rem;
    border-left: 4px solid var(--yellow);
}

.quiz-question-text {
    color: var(--blue);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

.quiz-answer-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.quiz-answer-btn {
    flex: 1;
    max-width: 180px;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid;
}

.quiz-answer-btn.quiz-yes {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
}

@media (hover: hover) {
    .quiz-answer-btn.quiz-yes:hover {
        background: transparent;
        color: #28a745;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
    }
}

.quiz-answer-btn.quiz-no {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

@media (hover: hover) {
    .quiz-answer-btn.quiz-no:hover {
        background: transparent;
        color: #dc3545;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
    }
}

/* Contact Form */
.quiz-form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.quiz-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 0.4rem;
}

.quiz-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
    box-sizing: border-box;
}

.quiz-form-group input:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(240, 194, 39, 0.15);
}

#quizContactForm .quiz-next-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

/* Results */
.quiz-result-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.quiz-result-icon.pioneer { color: #28a745; }
.quiz-result-icon.on-path { color: var(--yellow); }
.quiz-result-icon.at-risk { color: #dc3545; }

.quiz-result-title {
    font-size: 1.5rem !important;
    margin-bottom: 0.8rem !important;
}

.quiz-score-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.quiz-score-badge.pioneer {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.quiz-score-badge.on-path {
    background: rgba(240, 194, 39, 0.15);
    color: #b8860b;
}

.quiz-score-badge.at-risk {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.quiz-result-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.8rem !important;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-result-cta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.quiz-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    width: 100%;
    max-width: 320px;
}

.quiz-cta-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.quiz-cta-whatsapp:hover {
    background: transparent;
    color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.quiz-cta-whatsapp i {
    font-size: 1.3rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .partners-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .partners-hero-text h1 {
        font-size: 2.5rem;
    }

    .partners-hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .partners-hero-buttons {
        justify-content: center;
    }

    .split-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .partners-hero {
        padding: 80px 0 60px;
    }

    .partners-hero-text h1 {
        font-size: 2rem;
    }

    .partners-hero-subtitle {
        font-size: 1rem;
    }

    .partners-hero-buttons .btn-primary,
    .partners-hero-buttons .btn-secondary {
        padding: 12px 28px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .challenge-grid,
    .solution-grid,
    .valueprop-grid,
    .privacy-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .models-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .challenge-section,
    .solution-section,
    .valueprop-section,
    .models-section,
    .privacy-section,
    .footer-cta-section {
        padding: 60px 0;
    }

    .footer-cta-content h2 {
        font-size: 2rem;
    }

    .footer-cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .partners-hero-text h1 {
        font-size: 1.7rem;
    }

    .split-image-container {
        flex-direction: column;
    }

    .split-card {
        padding: 1.5rem 1.2rem;
    }

    .quiz-modal {
        padding: 1.8rem 1.2rem;
        width: 95%;
    }

    .quiz-step h3 {
        font-size: 1.2rem;
    }

    .quiz-answer-buttons {
        flex-direction: column;
        align-items: center;
    }

    .quiz-answer-btn {
        max-width: 100%;
        width: 100%;
    }
}
