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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    line-height: 1.6;
}

.logo-img {
    width: 40%;
    margin: 10px auto;
}

.zgp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zgp-quiz-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 100%;
    max-width: 800px;
}

.zgp-intro-section {
    display: flex;
    min-height: 600px;
}

.zgp-intro-left {
    flex: 1;
    padding: 60px;
    background: #b02024;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zgp-intro-left h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.zgp-intro-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zgp-intro-right h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.zgp-benefits {
    margin-bottom: 30px;
}

.zgp-benefit {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #666;
}

.zgp-benefit::before {
    content: "✓";
    background: #b02024;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 12px;
    font-weight: bold;
}

.zgp-form-group {
    margin-bottom: 20px;
}

.zgp-form-row {
    display: flex;
    gap: 15px;
}

.zgp-form-row .zgp-form-group {
    flex: 1;
}

.zgp-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.zgp-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.zgp-input:focus {
    outline: none;
    border-color: #b02024;
}

.zgp-start-btn, .zgp-submit-btn {
    width: 100%;
    background: #b02024;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.zgp-start-btn:hover, .zgp-submit-btn:hover {
    background: #7b1619;
}

.zgp-start-btn:disabled, .zgp-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.zgp-quiz-section {
    display: none;
    padding: 40px;
    text-align: center;
}

.zgp-progress-bar {
    width: 100%;
    height: 8px;
    background: #e1e5e9;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.zgp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #b02024, #7b1619);
    width: 0%;
    transition: width 0.3s ease;
}

.zgp-progress-text {
    margin-bottom: 30px;
    color: #666;
    font-weight: 600;
}

.zgp-question {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 600;
}

.zgp-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.zgp-option {
    background: #f8f9fa;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.zgp-option:hover {
    border-color: #b02024;
    background: #fff5f5;
}

.zgp-option.zgp-selected {
    background: #b02024;
    color: white;
    border-color: #b02024;
}

.zgp-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.zgp-nav-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.zgp-nav-btn:hover {
    background: #5a6268;
}

.zgp-nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.zgp-back-btn {
    background: #6c757d;
}

.zgp-back-btn:hover {
    background: #5a6268;
}

.zgp-contact-section {
    display: none;
    padding: 60px 40px;
}

.zgp-contact-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.zgp-contact-section p {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.zgp-contact-form {
    max-width: 500px;
    margin: 0 auto;
}

/* ===== RESULTS SECTION ===== */
.zgp-results-section {
    display: none;
    background: #f0e8e0;
    color: #333;
    min-height: 100vh;
}

.zgp-results-hero {
    background: #b02024;
    color: white;
    text-align: center;
    padding: 44px 32px 54px;
}

.zgp-results-hero img {
    height: 64px;
    margin: 0 auto 20px;
    display: block;
}

.zgp-results-hero h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.zgp-results-hero p {
    opacity: 0.88;
    font-size: 0.875rem;
}

.zgp-results-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Primary Card */
.zgp-primary-card {
    background: white;
    border: 1.5px solid #f0d5d5;
    border-radius: 16px;
    margin-top: -22px;
    position: relative;
    z-index: 1;
    box-shadow: 0 16px 52px rgba(176,32,36,0.14);
    text-align: center;
}

.zgp-primary-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #b02024, #7b1619);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    padding: 8px 20px;
    border-radius: 50px;
    margin-top: -18px;
}

.zgp-primary-badge .badge-star {
    font-size: 0.6rem;
}

.zgp-primary-body {
    padding: 24px 32px 36px;
    text-align: left;
}

.zgp-primary-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.zgp-primary-title-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.zgp-primary-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b02024, #7b1619);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(176,32,36,0.28);
}

.zgp-primary-title-row h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.zgp-primary-title-row .zgp-subtitle {
    font-size: 0.875rem;
    color: #999;
    font-style: italic;
    margin-top: 2px;
}

.zgp-primary-percentage {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #b02024;
    flex-shrink: 0;
}

.zgp-primary-divider {
    border: none;
    border-top: 1px solid #f0e0e0;
    margin: 20px 0;
}

/* CTA Button */
.zgp-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #b02024, #7b1619);
    color: white;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.07em;
    border-radius: 50px;
    padding: 16px 36px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(176,32,36,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.zgp-cta-btn:hover {
    background: linear-gradient(135deg, #7b1619, #5a1012);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(176,32,36,0.44);
}

/* Bullet list with circle markers */
.zgp-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.zgp-bullet-list li {
    font-size: 0.875rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.zgp-bullet-list li .bullet-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: #fdf0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b02024;
    font-size: 0.5rem;
    margin-top: 2px;
}

.zgp-bullet-list.pink-bg li .bullet-icon {
    background: #fff0f0;
}

/* Confirmation callout (centered italic) */
.zgp-confirmation {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    font-style: italic;
    color: #b02024;
    margin: 24px 0;
}

/* Section heading */
.zgp-section-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.zgp-section-heading-lg {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

/* Body text */
.zgp-body-text {
    font-size: 0.875rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 16px;
}

.zgp-body-text strong {
    color: #1a1a1a;
}

/* Bold crimson line */
.zgp-crimson-bold {
    font-size: 0.875rem;
    font-weight: 700;
    color: #b02024;
    margin-bottom: 16px;
}

.zgp-crimson-italic {
    font-size: 0.875rem;
    font-weight: 700;
    font-style: italic;
    color: #b02024;
    text-align: center;
    margin: 20px 0;
}

/* Closing line */
.zgp-closing-line {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    font-style: italic;
    color: #b02024;
    margin-top: 20px;
}

/* Tension block card */
.zgp-tension-card {
    background: #fdf6f0;
    border: 1px solid #f0e0d8;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
}

.zgp-tension-card h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

/* Pink callout card */
.zgp-pink-callout {
    background: #fff5f5;
    border: 1px solid #f0d5d5;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.zgp-pink-callout h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #b02024;
    margin-bottom: 16px;
    line-height: 1.3;
}

.zgp-pink-callout.neutral-heading h2 {
    color: #1a1a1a;
}

/* Video Section */
.zgp-video-section {
    background: white;
    border: 1px solid #f0e0e0;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    padding: 40px 32px;
    margin: 36px 0;
}

.zgp-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.zgp-section-label .line {
    flex: 1;
    height: 1px;
    background: #e8c8c8;
}

.zgp-section-label span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #b02024;
    white-space: nowrap;
}

.zgp-video-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.zgp-video-section .zgp-video-subtitle {
    font-size: 0.875rem;
    font-style: italic;
    text-align: center;
    color: #888;
    margin-bottom: 28px;
}

.zgp-video-wrapper {
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
    background: #1c1c1c;
    position: relative;
    cursor: pointer;
}

.zgp-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.zgp-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.38);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.zgp-video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.zgp-play-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zgp-play-circle svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
    fill: #b02024;
}

.zgp-video-overlay span {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.zgp-video-description {
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.7;
    color: #666;
    max-width: 500px;
    margin: 0 auto 32px;
}

/* Portal vertical cards */
.zgp-portal-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.zgp-portal-card {
    background: white;
    border: 1.5px solid #f0e0e0;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 640px) {
    .zgp-portal-card {
        flex-direction: row;
    }
}

.zgp-portal-img-wrap {
    min-width: 160px;
    height: 220px;
    background: #fdf0f0;
    overflow: hidden;
}

@media (max-width: 639px) {
    .zgp-portal-img-wrap {
        height: 200px;
        width: 100%;
    }
}

.zgp-portal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.zgp-portal-content {
    padding: 20px 24px;
    flex: 1;
}

.zgp-portal-content h5 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.zgp-portal-content h5 span {
    font-size: 0.7rem;
    color: #aaa;
    font-style: italic;
    font-weight: 400;
}

.zgp-recommended-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #b02024, #7b1619);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 50px;
    margin: 8px 0;
}

.zgp-portal-tagline {
    font-size: 0.875rem;
    font-style: italic;
    color: #666;
    margin: 8px 0 12px;
}

.zgp-portal-bestfor {
    font-size: 0.875rem;
    font-weight: 700;
    color: #b02024;
    margin-bottom: 8px;
}

.zgp-portal-microcopy {
    text-align: center;
    font-size: 0.75rem;
    font-style: italic;
    color: #aaa;
    margin: 16px 0 32px;
}

/* Overview image */
.zgp-overview-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 24px;
}

/* Meet Zoey */
.zgp-meet-zoey {
    text-align: center;
    margin: 40px 0;
}

.zgp-zoey-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #b02024;
}

.zgp-zoey-bio {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Accordion */
.zgp-faq-section {
    margin: 36px 0;
}

.zgp-faq-item {
    border-bottom: 1px solid #f0e0e0;
}

.zgp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    gap: 16px;
}

.zgp-faq-toggle {
    font-size: 1.25rem;
    color: #b02024;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.zgp-faq-item.open .zgp-faq-toggle {
    transform: rotate(45deg);
}

.zgp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.zgp-faq-item.open .zgp-faq-answer {
    max-height: 300px;
}

.zgp-faq-answer p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.7;
    padding-bottom: 18px;
}

/* Final CTA Card */
.zgp-final-cta {
    background: linear-gradient(135deg, #b02024 0%, #7b1619 100%);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    margin: 36px 0 0;
}

.zgp-final-cta h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.zgp-final-cta .zgp-final-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    max-width: 384px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.zgp-final-cta .zgp-final-btn {
    display: inline-block;
    background: white;
    color: #b02024;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.07em;
    border-radius: 50px;
    padding: 16px 36px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.zgp-final-cta .zgp-final-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.zgp-final-cta .zgp-final-micro {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    margin-top: 16px;
}

/* Portal Picker Modal */
.zgp-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.zgp-modal-overlay.active {
    display: flex;
}

.zgp-modal {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.zgp-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

.zgp-modal-close:hover {
    color: #333;
}

.zgp-picker-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.zgp-picker-card {
    position: relative;
    background: #fff;
    border: 3px solid transparent;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 200ms ease;
    text-align: left;
    padding: 0;
    overflow: hidden;
}

.zgp-picker-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.zgp-picker-card.selected {
    border-color: #b02024;
    box-shadow: 0 4px 20px rgba(176, 32, 36, 0.25);
    transform: scale(1.02);
}

.zgp-picker-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 10;
    background: #b02024;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 9999px;
    font-family: 'Montserrat', sans-serif;
}

.zgp-picker-check {
    display: none;
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
    width: 24px;
    height: 24px;
    background: #b02024;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.zgp-picker-card.selected .zgp-picker-check {
    display: flex;
}

.zgp-picker-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: #ffffff;
    padding: 8px;
}

.zgp-picker-info {
    padding: 12px;
}

.zgp-picker-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.zgp-picker-subtitle {
    font-size: 12px;
    color: #666;
    margin: 2px 0 0;
}

.zgp-picker-cta {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #b02024 0%, #8b1a1d 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 16px;
    border-radius: 9999px;
    text-decoration: none;
    transition: opacity 200ms ease;
}

.zgp-picker-cta:hover {
    opacity: 0.9;
}

.zgp-picker-micro {
    font-size: 12px;
    color: #aaa;
    font-style: italic;
    text-align: center;
    margin-top: 12px;
}

/* Other Gifts Accordion */
.zgp-other-gifts {
    padding: 0 0 64px;
}

.zgp-other-gifts-header {
    text-align: center;
    margin-bottom: 24px;
}

.zgp-other-gifts-header h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.zgp-other-gifts-header p {
    font-size: 0.75rem;
    color: #aaa;
}

.zgp-accordion-item {
    background: white;
    border: 1px solid #f0e0e0;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
    transition: box-shadow 0.3s ease;
}

.zgp-accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.zgp-accordion-header {
    width: 100%;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

.zgp-accordion-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fdf0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.zgp-accordion-title {
    flex: 1;
}

.zgp-accordion-title h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0;
}

.zgp-accordion-title p {
    font-size: 0.75rem;
    font-style: italic;
    color: #bbb;
    margin-top: 2px;
}

.zgp-accordion-pct {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #b02024;
    margin-right: 8px;
    flex-shrink: 0;
}

.zgp-accordion-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #b02024;
}

.zgp-accordion-item.open .zgp-accordion-chevron {
    transform: rotate(180deg);
}

.zgp-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.zgp-accordion-item.open .zgp-accordion-body {
    max-height: 800px;
}

.zgp-accordion-content {
    border-top: 1px solid #f5e8e8;
    padding: 16px 20px 20px;
}

.zgp-accordion-progress {
    height: 6px;
    background: #f0e8e8;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 16px;
}

.zgp-accordion-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #b02024, #e05050);
    border-radius: 50px;
    width: 0%;
    transition: width 0.7s ease-out;
}

.zgp-accordion-desc {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Responsive for results */
@media (max-width: 600px) {
    .zgp-results-hero {
        padding: 32px 20px 44px;
    }

    .zgp-results-inner {
        padding: 0 16px;
    }

    .zgp-primary-body {
        padding: 20px 16px 28px;
    }

    .zgp-primary-title-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .zgp-primary-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .zgp-primary-title-row h3 {
        font-size: 1.25rem;
    }

    .zgp-primary-percentage {
        font-size: 1.8rem;
    }

    .zgp-video-section {
        margin: 24px 0;
        padding: 24px 16px;
    }

    .zgp-video-section h2 {
        font-size: 1.25rem;
    }

    .zgp-cta-btn {
        padding: 14px 28px;
        font-size: 0.75rem;
    }

    .zgp-tension-card,
    .zgp-pink-callout {
        padding: 16px;
    }

    .zgp-portal-content {
        padding: 16px;
    }

    .zgp-final-cta {
        padding: 32px 16px;
    }
}

/* Footer */
.zgp-footer {
    margin-top: 40px;
    width: 100%;
}

.zgp-footer-banner {
    background-image: url('https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/nEjVQanJBrUmPWVuHxhq/media/699a6b7920c03570ded8f98e.png');
    background-size: cover;
    background-position: top;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 60px 20px;
}

.zgp-footer-logo {
    max-width: 500px;
    width: 80%;
}

.zgp-footer-copyright {
    background: #b02024;
    text-align: center;
    padding: 20px;
}

.zgp-footer-copyright p {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

.zgp-footer-links {
    background: #d4d4d4;
    text-align: center;
    padding: 16px 20px;
    display: flex;
    justify-content: center;
    gap: 80px;
}

.zgp-footer-links a {
    color: #555;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
}

.zgp-footer-links a:hover {
    color: #b02024;
}

@media (max-width: 768px) {
    .zgp-intro-section {
        flex-direction: column;
        min-height: auto;
    }

    .zgp-intro-left,
    .zgp-intro-right {
        padding: 20px 30px;
    }

    .zgp-intro-left h1 {
        font-size: 2rem;
    }

    .zgp-form-row {
        flex-direction: column;
        gap: 0;
    }

    .zgp-quiz-section, .zgp-contact-section {
        padding: 30px 20px;
    }

    .zgp-question {
        font-size: 1.2rem;
    }

    br.desktop-only {
        display: none;
    }

    .zgp-footer-banner {
        min-height: 250px;
        padding: 40px 20px;
    }

    .zgp-footer-links {
        gap: 40px;
    }

    .zgp-modal {
        padding: 24px 16px;
    }

    .zgp-picker-card img {
        height: 120px;
    }

    .zgp-picker-cta {
        font-size: 14px;
        padding: 14px;
    }

}
