/* =====================================================
   AUTOMATION CHECK - Quiz & Results Styles
   ===================================================== */

/* ---- Hero ---- */
.ac-hero {
    background: #101211;
    color: #fff;
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated grid background - uses global heroGridPulse from styles.css */
.ac-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 196, 77, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 196, 77, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
    animation: heroGridPulse 8s ease-in-out infinite;
}

/* Floating gold orb - uses global heroOrbFloat from styles.css */
.ac-hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 196, 77, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: heroOrbFloat 12s ease-in-out infinite;
    pointer-events: none;
}

.ac-hero .container {
    position: relative;
    z-index: 1;
}

.ac-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 196, 77, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 196, 77, 0.15);
    backdrop-filter: blur(8px);
    animation: acFadeInDown 0.6s ease both;
}

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

.ac-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin: 0 0 1.25rem;
    color: #fff;
    animation: acFadeInUp 0.7s ease 0.1s both;
}

/* ac-highlight uses global .hero-highlight from styles.css */
.ac-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ffe0a0 50%, var(--primary-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroShimmer 4s linear infinite;
}

.ac-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: acFadeInUp 0.7s ease 0.2s both;
}

.ac-hero-cta {
    margin-bottom: 2.5rem;
    animation: acFadeInUp 0.7s ease 0.3s both;
}

/* Glowing CTA button */
.ac-hero-cta .btn {
    position: relative;
    box-shadow: 0 0 0 0 rgba(255, 196, 77, 0.4);
    animation: acBtnPulse 3s ease-in-out infinite;
}

@keyframes acBtnPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 196, 77, 0.2); }
    50% { box-shadow: 0 4px 40px rgba(255, 196, 77, 0.4), 0 0 80px rgba(255, 196, 77, 0.1); }
}

.ac-hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    animation: acFadeInUp 0.7s ease 0.4s both;
}

.ac-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ac-trust-item i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.ac-trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
}

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

/* ---- Quiz Section ---- */
.ac-quiz-section {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
}

/* Animated gradient border quiz container */
.ac-quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    min-height: 400px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

/* Animated gold glow behind quiz container */
.ac-quiz-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 196, 77, 0.3), transparent 40%, transparent 60%, rgba(255, 196, 77, 0.3));
    background-size: 300% 300%;
    animation: acBorderGlow 6s ease infinite;
    z-index: -1;
    opacity: 0.6;
}

@keyframes acBorderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ---- Progress Bar ---- */
.ac-progress {
    display: flex;
    gap: 8px;
    margin-bottom: 0.75rem;
}

.ac-progress-segment {
    flex: 1;
    height: 5px;
    border-radius: 3px;
    background: #e5e7eb;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ac-progress-segment.completed {
    background: var(--primary-color);
    box-shadow: 0 0 8px rgba(255, 196, 77, 0.3);
}

.ac-progress-segment.active {
    background: var(--primary-color);
    box-shadow: 0 0 12px rgba(255, 196, 77, 0.4);
}

/* Shimmer on active segment */
.ac-progress-segment.active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: acProgressShimmer 1.5s ease-in-out infinite;
}

@keyframes acProgressShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.ac-step-counter {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.ac-step-counter span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ---- Steps ---- */
.ac-step {
    display: none;
    opacity: 0;
    transform: translateX(30px);
}

.ac-step.active {
    display: block;
    animation: acSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.ac-step.exiting {
    display: block;
    animation: acSlideOut 0.3s ease forwards;
}

.ac-step.entering-back {
    display: block;
    animation: acSlideInBack 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.ac-step.exiting-forward {
    display: block;
    animation: acSlideOutForward 0.3s ease forwards;
}

@keyframes acSlideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes acSlideOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-30px); }
}

@keyframes acSlideInBack {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes acSlideOutForward {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(30px); }
}

.ac-step-title {
    font-size: 1.65rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--text-dark);
}

.ac-step-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0 0 2rem;
    line-height: 1.6;
}

/* ---- Option Cards ---- */
.ac-options-grid {
    display: grid;
    gap: 12px;
}

.ac-grid-2 { grid-template-columns: 1fr 1fr; }
.ac-grid-3 { grid-template-columns: repeat(3, 1fr); }
.ac-grid-4 { grid-template-columns: repeat(4, 1fr); }

.ac-option-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    outline: none;
}

.ac-option-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 196, 77, 0.35);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 196, 77, 0.1);
}

.ac-option-card:focus-visible {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 196, 77, 0.2);
}

.ac-option-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 196, 77, 0.07) 0%, rgba(255, 196, 77, 0.02) 100%);
    box-shadow: 0 8px 32px rgba(255, 196, 77, 0.18), 0 0 0 1px rgba(255, 196, 77, 0.2);
    transform: scale(1.03);
}

.ac-option-card.selected .ac-option-check {
    opacity: 1;
    transform: scale(1);
}

.ac-option-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 196, 77, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.ac-option-card:hover .ac-option-icon {
    transform: scale(1.08);
}

.ac-option-card.selected .ac-option-icon {
    background: var(--primary-color);
    color: #101211;
    box-shadow: 0 4px 16px rgba(255, 196, 77, 0.3);
}

.ac-option-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.ac-option-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.ac-option-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #101211;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Wide cards (Step 2) */
.ac-card-wide {
    flex-direction: row;
    text-align: left;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
}

.ac-card-wide .ac-option-content { flex: 1; }
.ac-card-wide .ac-option-icon { flex-shrink: 0; }

/* Compact cards (Step 3) */
.ac-card-compact { padding: 1.25rem; }

.ac-option-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.ac-card-compact .ac-option-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
}

/* ---- Chips (Step 4 Multi-Select) ---- */
.ac-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2rem;
}

.ac-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.9rem;
    font-weight: 500;
    background: #fff;
    color: var(--text-dark);
    font-family: inherit;
    outline: none;
}

.ac-chip:hover {
    border-color: rgba(255, 196, 77, 0.4);
    background: rgba(255, 196, 77, 0.04);
    transform: translateY(-2px);
}

.ac-chip:focus-visible {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 196, 77, 0.2);
}

.ac-chip.selected {
    border-color: var(--primary-color);
    background: rgba(255, 196, 77, 0.1);
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(255, 196, 77, 0.12);
}

.ac-chip.selected i { color: var(--primary-color); }

.ac-chip i {
    font-size: 0.9rem;
    color: var(--text-light);
    transition: color 0.2s ease;
}

/* ---- Step Actions ---- */
.ac-step-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ac-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-top: 1.5rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.ac-back-btn:hover {
    color: var(--text-dark);
    transform: translateX(-3px);
}

.ac-next-btn { margin-top: 1.5rem; }

/* ---- Results Section ---- */
.ac-results-section {
    padding: 4rem 0 2rem;
    background: var(--bg-light);
    position: relative;
}

.ac-results-container {
    max-width: 800px;
    margin: 0 auto;
}

.ac-result-header {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: acReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes acReveal {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.ac-result-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.ac-result-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
}

.ac-result-title span {
    color: var(--primary-color);
}

.ac-result-description {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Score Bars */
.ac-score-bars {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    animation: acReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
}

.ac-score-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ac-score-bar-item:last-child { margin-bottom: 0; }

.ac-score-bar-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 90px;
}

.ac-score-bar-track {
    flex: 1;
    height: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.ac-score-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #ffe0a0);
    border-radius: 5px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(255, 196, 77, 0.3);
}

.ac-score-bar-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    min-width: 36px;
    text-align: right;
}

/* Recommendations Preview */
.ac-recommendations-preview {
    margin-bottom: 2rem;
    animation: acReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.ac-recommendations-preview h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.ac-recommendations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ac-rec-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.ac-rec-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.ac-rec-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 196, 77, 0.12);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ac-rec-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--text-dark);
}

.ac-rec-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.ac-rec-card-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--success-color);
    background: rgba(16, 185, 129, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
}

/* ---- Email Gate ---- */
.ac-email-gate {
    animation: acReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.45s both;
}

.ac-email-gate-inner {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 40px rgba(255, 196, 77, 0.1);
    position: relative;
    overflow: hidden;
}

/* Subtle gold glow behind email gate */
.ac-email-gate-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 100%, rgba(255, 196, 77, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.ac-email-gate-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 196, 77, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.ac-email-gate-inner h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    position: relative;
}

.ac-email-gate-inner p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0 0 1.5rem;
    line-height: 1.6;
    position: relative;
}

.ac-email-form {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

.ac-form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.ac-form-field { flex: 1; }

.ac-form-field input {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: #fff;
    box-sizing: border-box;
}

.ac-form-field input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 196, 77, 0.1);
}

.ac-form-field input::placeholder { color: #9ca3af; }

.ac-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    cursor: pointer;
    justify-content: center;
}

.ac-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.ac-download-btn {
    width: 100%;
    position: relative;
}

/* ---- Post Download ---- */
.ac-post-download {
    animation: acReveal 0.6s ease forwards;
}

.ac-post-download-inner {
    background: linear-gradient(135deg, #101211 0%, #1a1c1e 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ac-post-download-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 196, 77, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.ac-post-download-icon {
    font-size: 2.5rem;
    color: var(--success-color);
    margin-bottom: 1rem;
    position: relative;
    animation: acSuccessPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes acSuccessPop {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.ac-post-download-inner h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #fff;
    position: relative;
}

.ac-post-download-inner p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1.5rem;
    line-height: 1.6;
    position: relative;
}

/* ---- Confetti Canvas ---- */
#ac-confetti {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* FAQ uses global .faq-section from styles.css */

/* ---- Final CTA ---- */
.ac-final-cta {
    padding: 6rem 0;
    background: #101211;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.ac-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 196, 77, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 196, 77, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
    animation: heroGridPulse 8s ease-in-out infinite;
    pointer-events: none;
}

.ac-final-cta::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 196, 77, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    animation: heroOrbFloat 14s ease-in-out infinite;
    pointer-events: none;
}

.ac-final-cta h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #fff;
    position: relative;
}

.ac-final-cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 2rem;
    line-height: 1.6;
    position: relative;
}

.ac-final-cta .btn {
    position: relative;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
    .ac-hero-title { font-size: 2.75rem; }
}

@media (max-width: 768px) {
    .ac-hero { padding: 8rem 0 4rem; }
    .ac-hero-title { font-size: 2.25rem; }
    .ac-hero-subtitle { font-size: 1rem; }
    .ac-quiz-container { padding: 2rem 1.5rem; border-radius: 20px; }
    .ac-step-title { font-size: 1.35rem; }
    .ac-grid-3 { grid-template-columns: 1fr 1fr; }
    .ac-grid-4 { grid-template-columns: 1fr 1fr; }
    .ac-grid-2 { grid-template-columns: 1fr; }
    .ac-card-wide { flex-direction: row; }
    .ac-recommendations-grid { grid-template-columns: 1fr; }
    .ac-result-title { font-size: 1.65rem; }
    .ac-form-row { flex-direction: column; }
    .ac-email-gate-inner { padding: 2rem 1.5rem; }
    .ac-final-cta h2 { font-size: 1.65rem; }
}

@media (max-width: 480px) {
    .ac-hero { padding: 7rem 0 3rem; }
    .ac-hero-title { font-size: 1.85rem; letter-spacing: -0.5px; }
    .ac-hero-trust { flex-direction: column; gap: 0.5rem; }
    .ac-trust-divider { display: none; }
    .ac-quiz-section { padding: 3rem 0; }
    .ac-quiz-container { padding: 1.5rem 1.25rem; }
    .ac-step-title { font-size: 1.2rem; }
    .ac-grid-3 { grid-template-columns: 1fr; }
    .ac-grid-4 { grid-template-columns: 1fr 1fr; }
    .ac-option-card { padding: 1.25rem; }
    .ac-chips-container { gap: 8px; }
    .ac-chip { padding: 0.6rem 1rem; font-size: 0.85rem; }
    .ac-score-bars { padding: 1.5rem; }
    .ac-score-bar-label { min-width: 70px; font-size: 0.8rem; }
}
