/* =============================================================
   calc-sat-score-improvement-calculator.css
   Comp CSS verbatim — scoped under body.single-calculator
   Source: sat-score-improvement-calculator.html (lines 26-2458)
   [VERIFY] var(--primary-color) used in .info-box h4, .modal-header,
            .mock-schedule strong, .subject-card h4 but NOT defined in
            comp :root — only --primary-blue is defined. Carried verbatim
            per hard rule; rendering will fall back to browser default.
   [VERIFY] CDN dependencies (Swiper v11, Splide v4.1.4, Lucide Icons)
            loaded in comp <head>/<body> — must be enqueued in WP
            separately before this skin goes live.
   ============================================================= */

body.single-calculator * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.single-calculator {
    --bg-navy: #13217c;
    --primary-blue: #3b5bff;
    --cta-magenta: #cc00cc;
    --accent-blue: #e6ebff;
    --text-white: #fff;
    --text-dark: #333;
    --text-gray: #808080;
    --success-green: #2d8a4e;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1920px;
}

body.single-calculator * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.single-calculator {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.5;
    background-color: #e6ebff;
}

body.single-calculator h1,
body.single-calculator h2,
body.single-calculator h3,
body.single-calculator h4,
body.single-calculator h5,
body.single-calculator h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

body.single-calculator h2.section-title {
    font-size: 36px;
    line-height: 48px;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 15px;
}

body.single-calculator .section-subtitle {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: var(--text-dark);
    text-align: center;
}

body.single-calculator .container {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 80px;
    margin: 0 auto;
}

body.single-calculator section {
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

body.single-calculator .section-for-desktop {
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

body.single-calculator .text-center {
    text-align: center;
}

body.single-calculator .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all .3s ease;
    border: none;
    font-family: var(--font-body);
    font-size: 18px;
    text-align: center;
}

body.single-calculator .btn-magenta {
    background-color: var(--cta-magenta);
    color: var(--text-white);
}

body.single-calculator .btn-magenta:hover {
    background-color: #a600a6;
}

body.single-calculator .btn-blue {
    background-color: var(--primary-blue);
    color: var(--text-white);
}

body.single-calculator .btn-blue:hover {
    background-color: #13217c;
}

body.single-calculator .btn-ghost-blue {
    background: 0 0;
    border: 2px solid #3b5bff;
    color: #3b5bff;
}

body.single-calculator .btn-ghost-blue:hover {
    background-color: #3b5bff;
    color: #fffdfe;
}

/* Hero Section */
body.single-calculator .hero {
    background: var(--bg-navy);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

body.single-calculator .hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

body.single-calculator .hero h1 {
    color: var(--text-white);
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 56px;
}

body.single-calculator .hero p {
    font-family: var(--font-body);
    color: var(--text-white);
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 32px;
    font-weight: 400;
}

/* Trust Badges */
body.single-calculator .trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

body.single-calculator .trust-badge {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    place-items: center;
    border: 2px solid var(--accent-blue);
}

body.single-calculator .trust-badge-icon {
    width: 64px;
    height: 64px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7ff;
    border-radius: 50%;
    padding: 12px;
    transition: all 0.3s ease;
}

body.single-calculator .trust-badge-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

body.single-calculator .trust-badge-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 26px;
    color: var(--text-white);
    font-weight: 500;
    text-align: center;
}

/* Calculator Section */
body.single-calculator .calculator-section {
    background: var(--accent-blue);
}

body.single-calculator .calculator-form {
    margin-top: 40px;
    background: var(--text-white);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid var(--accent-blue);
}

body.single-calculator .calculator-form h3 {
    color: var(--primary-blue);
    margin-bottom: 32px;
    font-size: 28px;
    text-align: center;
}

body.single-calculator .calculator-btn-margin {
    margin-top: 10px;
}

body.single-calculator .form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;

}

body.single-calculator .form-group label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

body.single-calculator .form-group label.required-label::after {
    content: " *";
    color: #ff4d4d;
}

body.single-calculator .form-group input,
body.single-calculator .form-group select {
    width: 100%;
    padding: 13px 15px;
    font-size: 16px;
    border: 2px solid #e6e6e6;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

body.single-calculator .form-group input:focus,
body.single-calculator .form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

body.single-calculator .form-group input[readonly] {
    background-color: #f5f7ff;
    border-color: var(--accent-blue);
    color: var(--primary-blue);
    font-weight: 600;
    cursor: default;
}

body.single-calculator .input-error {
    border-color: #ff4d4d !important;
    background-color: #fff5f5 !important;
    box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.2) !important;
}

body.single-calculator .form-divider {
    height: 1px;
    background-color: #e6e6e6;
    margin: 0 0 30px 0;
    border: none;
}

body.single-calculator .input-help {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 5px;
    display: block;
}

body.single-calculator .btn-calculate {
    width: 100%;
    padding: 17px;
    font-size: 17px;
    margin-top: 12px;
}

body.single-calculator .form-section-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 10px;
    display: block;
}

/* Feature Cards Grid */
body.single-calculator .why-calc {
    background: #fff;
    padding: 60px 0;
}

/* Why Use Calculator Section - 3x2 Grid */
body.single-calculator .why-use-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

body.single-calculator .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

body.single-calculator .feature-card {
    background: var(--accent-blue);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;

}

body.single-calculator .feature-card:hover {
    border: 2px solid #a0aeff;
}

body.single-calculator .feature-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

body.single-calculator .feature-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    stroke-width: 2;
}

body.single-calculator .feature-card h4 {
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}

body.single-calculator .feature-card p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 29px;
}

/* Aces Section */
body.single-calculator .aces {
    background-color: var(--accent-blue);
    padding: 60px 0;
    overflow: hidden;
}

body.single-calculator .aces-carousel-container {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    position: relative;
    padding: 20px 0;
}

body.single-calculator .aces-track {
    /* Let Swiper handle layout */
}

body.single-calculator .ace-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
}

body.single-calculator .ace-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 3px solid #fecdec;
}

body.single-calculator .ace-name {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text-dark);
}

body.single-calculator .ace-country {
    color: var(--cta-magenta);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

body.single-calculator .ace-score {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    background: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    display: inline-block;
    border: 2px dashed var(--cta-magenta);
    width: fit-content;
}

body.single-calculator .ace-score span {
    color: var(--cta-magenta);
}

/* Enhanced Programs Section */
body.single-calculator .programs-section {
    background: var(--bg-navy);
    padding: 60px 0;
}

body.single-calculator .programs-title {
    font-size: 36px;
    line-height: 48px;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 15px;
}

body.single-calculator .programs-subtitle {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: var(--text-white);
    text-align: center;
}

body.single-calculator .programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

body.single-calculator .program-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

body.single-calculator .program-card-popular {
    transform: scale(1.03);
    z-index: 10;
    padding: 30px;
    border: 3px solid var(--cta-magenta);
}

body.single-calculator .most-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cta-magenta);
    color: var(--text-white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(204, 0, 204, 0.3);
    white-space: nowrap;
}

body.single-calculator .program-icon-box-popular {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

body.single-calculator .program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

body.single-calculator .program-icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--accent-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

body.single-calculator .program-badge {
    background-color: #f5f8ff;
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid #dbe6ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.single-calculator .program-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 34px;
}

body.single-calculator .program-description {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

body.single-calculator .program-divider {
    height: 1px;
    background-color: #e6e6e6;
    margin-bottom: 20px;
    width: 100%;
}

body.single-calculator .program-divider-last {
    height: 1px;
    background-color: #e6e6e6;
    margin-bottom: 30px;
    width: 100%;
}

body.single-calculator .features-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

body.single-calculator .program-features {
    flex-grow: 1;
    margin-bottom: 20px;
}

body.single-calculator .program-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-dark);
}

body.single-calculator .program-feature:last-child {
    margin-bottom: 0;
}

body.single-calculator .program-feature-icon {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

body.single-calculator .lucide-clipboard-list-icon {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.single-calculator .lucide-circle-check-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.single-calculator .program-btn {
    display: block;
    width: 100%;
    background-color: var(--accent-blue);
    color: var(--primary-blue);
    text-align: center;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

body.single-calculator .program-btn:hover {
    background-color: #dbe6ff;
    color: #1d4ed8;
}

body.single-calculator .program-btn-popular {
    background-color: var(--primary-blue);
    color: white;
}

body.single-calculator .program-btn-popular:hover {
    background-color: #2a4bef;
    color: white;
}

body.single-calculator .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: var(--cta-magenta);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

body.single-calculator .cta-button:hover {
    background-color: #a600a6;
}

body.single-calculator .cta-button.cta-secondary {
    background-color: transparent;
    border: 2px solid var(--text-white);
}

body.single-calculator .cta-button.cta-secondary:hover {
    background-color: var(--text-white);
    color: var(--bg-navy);
}

body.single-calculator .cta-button svg {
    width: 20px;
    height: 20px;
}

body.single-calculator .program-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

body.single-calculator .program-cta:hover::before {
    left: 100%;
}

body.single-calculator .program-cta:hover {
    background: #990099;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
}

body.single-calculator .program-cta-popular {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #990099 100%);
    font-size: 17px;
    padding: 20px 32px;
}

body.single-calculator .program-cta-popular:hover {
    background: linear-gradient(135deg, #990099 0%, #770077 100%);
}

/* Info Boxes */
body.single-calculator .sat-prep-info {
    background: #fff;
    padding: 60px 0;
}

body.single-calculator .info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

body.single-calculator .info-box {
    background: var(--accent-blue);
    border-radius: 30px;
    padding: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

body.single-calculator .info-box:hover {
    border: 2px solid #a0aeff;
}

body.single-calculator .info-box h4 {
    color: var(--primary-color); /* [VERIFY] --primary-color undefined in comp :root; only --primary-blue defined. Carried verbatim. */
    margin-bottom: 12px;
    font-size: 20px;
}

body.single-calculator .info-icon-box {
    width: 52px;
    height: 52px;
    background-color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    margin-bottom: 20px;
}

body.single-calculator .info-icon-box svg {
    width: 28px;
    height: 28px;
    stroke-width: 2px;
}

body.single-calculator .info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.single-calculator .info-box li {
    padding: 8px 0;
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 18px;
    line-height: 28px;
}

body.single-calculator .info-list-icon {
    width: 16px;
    height: 16px;
    color: var(--text-dark);
    flex-shrink: 0;
    margin-top: 4px;
}

/* FAQ */
body.single-calculator .faq-section {
    padding: 60px 0;
    background: #fff;
}

body.single-calculator .section-header {
    margin-bottom: 50px;
}

body.single-calculator .faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

body.single-calculator .faq-title {
    font-family: var(--font-heading);
    font-size: 36px;
    line-height: 48px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

body.single-calculator .faq-item {
    background: var(--primary-blue);
    margin-bottom: 18px;
    overflow: hidden;
}

body.single-calculator .faq-question {
    padding: 20px 50px 20px 20px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--text-white);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    user-select: none;
}

body.single-calculator .faq-question::after {
    content: "›";
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 28px;
    color: #fff;
    font-weight: 400;
    transition: transform 0.3s ease;
    line-height: 1;
}

body.single-calculator .faq-question.active::after {
    content: "›";
    transform: translateY(-50%) rotate(90deg);
}

body.single-calculator .faq-answer {
    background-color: var(--accent-blue);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--primary-blue);
}

body.single-calculator .faq-answer.active {
    max-height: 1600px;
    padding: 20px;
}


/* FAQ Layout */
body.single-calculator .faq-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 20px;
    align-items: start;
}

body.single-calculator .faq-image-col img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 20px;
    display: block;
}

body.single-calculator .faq-layout .faq-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}


/* Modal */
body.single-calculator .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    overflow-y: auto;
    padding: 40px 20px;
}

body.single-calculator .modal-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.single-calculator .modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.single-calculator .modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a4bef 100%); /* [VERIFY] --primary-color undefined in comp :root; only --primary-blue defined. Carried verbatim. */
    color: var(--white);
    padding: 32px;
    border-radius: 16px 16px 0 0;
    text-align: center;
}

body.single-calculator .modal-header h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 10px;
}

body.single-calculator .modal-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    margin-bottom: 0;
}

body.single-calculator .modal-body {
    padding: 32px;
}

body.single-calculator .form-wrapper {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

body.single-calculator .form-wrapper iframe {
    border-radius: 8px;
}

body.single-calculator .form-instructions {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 18px;
    text-align: center;
}

body.single-calculator .form-instructions p {
    color: #856404;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}

body.single-calculator .confirmation-box {
    display: none;
    text-align: center;
    padding: 32px;
}

body.single-calculator .confirmation-box.show {
    display: block;
}

body.single-calculator .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 48px;
    color: white;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

body.single-calculator .confirmation-box h4 {
    color: var(--success);
    font-size: 24px;
    margin-bottom: 14px;
}

body.single-calculator .confirmation-box p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Results Section - More Dynamic */
body.single-calculator .results-section {
    background-color: var(--accent-blue);
    max-width: 1200px;
    margin: 0 auto;
    display: none;
}

body.single-calculator .result-section-header {
    margin-top: 50px;
}

body.single-calculator .results-section.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

body.single-calculator .personalized-header {
    text-align: center;
}

body.single-calculator .score-summary {
    max-width: 1000px;
    margin: 40px auto 0;
    background: var(--bg-navy);
    border-radius: 40px;
    padding: 40px;
    color: var(--text-white);
    box-shadow: 0 12px 24px rgba(59, 91, 255, 0.5);
    text-align: center;
}

body.single-calculator .score-summary h3 {
    font-size: 26px;
    line-height: 34px;

}

body.single-calculator .score-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

body.single-calculator .score-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 28px 20px;
    transition: all 0.3s ease;
}

body.single-calculator .score-box:hover {
    background: rgba(255, 255, 255, 0.3);
}

body.single-calculator .score-box-number {
    font-size: 42px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    animation: countUp 1s ease;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.single-calculator .score-box-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 22px;
}

body.single-calculator .timelineText {
    margin-top: 40px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

body.single-calculator .timeline-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

body.single-calculator .timeline-item svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.2px;
    opacity: 0.85;
}

body.single-calculator .timeline-dot {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

body.single-calculator .difficulty-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 700;
    margin-top: 20px;
    color: var(--text-white);
    background: #fff;
}

body.single-calculator .difficulty-badge svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
    stroke: #fff;
}

body.single-calculator .difficulty-easy {
    background: #10b981;
}

body.single-calculator .difficulty-moderate {
    background: #f59e0b;
}

body.single-calculator .difficulty-challenging {
    background: #ff1a1a;
}

/* Subject Breakdown - Enhanced */
body.single-calculator .subject-breakdown {
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

body.single-calculator .subject-card {
    background: var(--text-white);
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 30px;
    transition: all 0.3s ease;
}

body.single-calculator .subject-card:hover {
    border: 2px solid #a0aeff;
}

body.single-calculator .subject-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

body.single-calculator .subject-card-header-icon {
    width: 52px;
    height: 52px;
    background: var(--accent-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

body.single-calculator .subject-card h4 {
    color: var(--primary-color); /* [VERIFY] --primary-color undefined in comp :root; only --primary-blue defined. Carried verbatim. */
    font-size: 22px;
    line-height: 30px;
}

body.single-calculator .subject-card p {
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 26px;
}

body.single-calculator .improvement-meter {
    margin: 20px 0 0;
}

body.single-calculator .meter-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

body.single-calculator .meter-bar {
    background: var(--accent-blue);
    border-radius: 10px;
    height: 12px;
    overflow: hidden;
    position: relative;
}

body.single-calculator .meter-fill {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    height: 100%;
    border-radius: 10px;
    transition: width 1.5s ease;
    position: relative;
    overflow: hidden;
}

body.single-calculator .meter-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

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

    100% {
        transform: translateX(100%);
    }
}

body.single-calculator .subject-card ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

body.single-calculator .subject-card li {
    padding: 10px 0;
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 16px;
    line-height: 26px;
}

body.single-calculator .subject-card li:last-child {
    padding-bottom: 0;
}

body.single-calculator .strategy-icon {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Weekly Timeline - More Dynamic */
body.single-calculator .weekly-timeline {
    margin: 50px 0 0;
}

body.single-calculator .week-card {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

body.single-calculator .week-card:hover {
    border: 2px solid #a0aeff;
}

body.single-calculator .week-card:last-child {
    margin-bottom: 0;
}

body.single-calculator .week-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

body.single-calculator .week-title {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    padding-left: 10px;
}

body.single-calculator .week-target-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 10px;
}

body.single-calculator .target-main {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1e293b;
    font-size: 16px;
    font-weight: 500;
}

body.single-calculator .target-main strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

body.single-calculator .target-divider {
    width: 1px;
    height: 20px;
    background: #cbd5e1;
}

body.single-calculator .target-sub {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

body.single-calculator .target-sub-divider {
    color: #cbd5e1;
    font-weight: 300;
}

body.single-calculator .target-icon {
    color: var(--primary-blue);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

body.single-calculator .week-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

body.single-calculator .week-column-card {
    background-color: #f5f7ff;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.2s ease;
}

body.single-calculator .week-column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

body.single-calculator .header-icon-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.single-calculator .category-icon-container {
    width: 40px;
    height: 40px;
    background: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

body.single-calculator .category-icon-container svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-blue);
}

body.single-calculator .column-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.single-calculator .time-badge-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

body.single-calculator .time-badge-pill svg {
    width: 14px;
    height: 14px;
}

body.single-calculator .strategy-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

body.single-calculator .strategy-item-v2 {
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 16px;
    line-height: 26px;
    color: var(--text-dark);
}

body.single-calculator .strategy-chevron {
    color: var(--text-gray);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.8;
}

body.single-calculator .mock-schedule {
    background: #f5f7ff;
    border: 2px solid var(--accent-blue);
    border-radius: 12px;
    padding: 18px;
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

body.single-calculator .mock-schedule svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 3px;
}

body.single-calculator .mock-schedule strong {
    color: var(--primary-color); /* [VERIFY] --primary-color undefined in comp :root; only --primary-blue defined. Carried verbatim. */
    display: block;
    margin-bottom: 8px;
}

/* Mock Test Table */
body.single-calculator .mock-test-section {
    background: linear-gradient(to bottom, var(--light-bg) 0%, var(--white) 100%);
    display: none;
}

body.single-calculator .mock-test-section.show {
    display: block;
}

body.single-calculator .mock-test-table {
    max-width: 100%;
    margin: 40px 0 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
}

body.single-calculator .mock-test-table table {
    width: 100%;
    border-collapse: collapse;
}

body.single-calculator .mock-test-table th {
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

body.single-calculator .mock-test-table th:last-child {
    border-right: none;
}

body.single-calculator .mock-test-table td {
    padding: 16px;
    background-color: #fff;
    border-bottom: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    font-size: 16px;
}

body.single-calculator .mock-test-table td:last-child {
    border-right: none;
}

body.single-calculator .mock-test-table tr:last-child td {
    border-bottom: none;
}

body.single-calculator .mock-test-table tr:hover td {
    background-color: #f5f7ff;
}

/* CTA Section */
body.single-calculator .cta-section {
    background: var(--bg-navy);
    color: var(--white);
    text-align: center;
    display: none;
    position: relative;
    overflow: hidden;
}

body.single-calculator .cta-section.show {
    display: block;
}

body.single-calculator .cta-section h2 {
    color: var(--text-white);
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

body.single-calculator .cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

body.single-calculator .cta-highlight {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

body.single-calculator .cta-highlight h3 {
    color: var(--text-white);
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
}

body.single-calculator .score-journey {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 24px 0;
}

body.single-calculator .score-point {
    color: var(--text-white);
    font-size: 48px;
    font-weight: 700;
}

body.single-calculator .score-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    opacity: 0.8;
}

body.single-calculator .score-arrow svg {
    width: 48px;
    height: 48px;
}

body.single-calculator .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}


/* Stats Section */
body.single-calculator .stats-section {
    background: var(--bg-navy);
    text-align: center;
}

body.single-calculator .stats-section h2 {
    color: var(--text-white);
}

body.single-calculator .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

body.single-calculator .stat-box {
    padding: 36px 24px;
    background-color: #f5f7ff;
    border-radius: 16px;
    border: 4px solid var(--accent-blue);
    transition: transform 0.3s ease;
}

body.single-calculator .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--bg-navy);
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

body.single-calculator .stat-label {
    font-size: 18px;
    line-height: 29px;
    font-weight: 500;
    color: var(--text-dark);
}

body.single-calculator .stat-label-highlight {
    color: var(--cta-magenta);
    font-weight: 700;
}

/* Responsive */
/* Media Queries: Consolidated for Tablet (1024px) and Mobile (768px) */
@media (max-width: 1024px) {
    body.single-calculator .container {
        padding: 0 40px;
    }

    body.single-calculator section {
        padding: 40px 0;
    }

    body.single-calculator .hero {
        padding: 40px 0;
    }

    body.single-calculator .trust-badge {
        padding: 10px;
    }

    body.single-calculator .calculator-section,
    body.single-calculator .why-calc,
    body.single-calculator .aces,
    body.single-calculator .programs-section,
    body.single-calculator .sat-prep-info,
    body.single-calculator .stats-section {
        padding: 40px 0;
    }

    body.single-calculator .calculator-form {
        margin-top: 30px;
    }

    body.single-calculator .why-use-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    body.single-calculator .programs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 50px;
    }

    body.single-calculator .program-card {
        padding: 20px;
    }

    body.single-calculator .program-title {
        font-size: 24px;
    }

    body.single-calculator .program-description {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 15px;
    }

    body.single-calculator .program-divider {
        margin-bottom: 15px;
    }

    body.single-calculator .program-divider-last {
        margin-bottom: 20px;
    }

    body.single-calculator .program-features {
        margin-bottom: 20px;
    }

    body.single-calculator .program-feature {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 8px;
    }

    body.single-calculator .info-boxes {
        margin-top: 30px;
    }

    body.single-calculator .stats-grid {
        margin-top: 30px;
    }

    /*Results*/
    body.single-calculator .results-section {
        padding: 40px 0;
    }

    body.single-calculator .score-summary {
        margin-top: 30px;
    }

    body.single-calculator .result-section-header {
        margin-top: 40px;
    }

    body.single-calculator .subject-breakdown {
        margin-top: 30px;
        gap: 20px;
    }

    body.single-calculator .subject-card h4 {
        font-size: 20px;
    }

    body.single-calculator .weekly-timeline {
        margin: 40px 0 0;
    }

    body.single-calculator .mock-test-table {
        margin: 30px 0 0;
    }

    body.single-calculator .cta-highlight h3 {
        font-size: 26px;
        line-height: 34px;
    }
}

@media (min-width:769px) and (max-width:1023px) {
    body.single-calculator .container {
        padding: 0 30px;
    }

    body.single-calculator section {
        padding: 30px 0;
    }

    body.single-calculator .btn {
        font-size: 14px;
        line-height: 22px;
        padding: 8px 16px;
        border-radius: 8px;
    }

    body.single-calculator h2.section-title {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 10px;
    }

    body.single-calculator .section-subtitle {
        font-size: 18px;
        line-height: 29px;
    }

    body.single-calculator .calculator-section,
    body.single-calculator .why-calc,
    body.single-calculator .aces,
    body.single-calculator .programs-section,
    body.single-calculator .sat-prep-info,
    body.single-calculator .stats-section {
        padding: 30px 0;
    }

    body.single-calculator .hero h1 {
        font-size: 26px;
        line-height: 36px;
    }

    body.single-calculator .hero p {
        font-size: 18px;
        line-height: 29px;
    }

    body.single-calculator .hero-grid {
        gap: 20px;
    }

    body.single-calculator .form-group label {
        font-size: 14px;
    }

    body.single-calculator .form-row {
        gap: 10px;
    }

    body.single-calculator .calculator-btn-margin {
        margin: 0;
    }

    body.single-calculator .feature-card {
        padding: 20px;
    }

    body.single-calculator .aces-carousel-container {
        margin-top: 20px;
    }

    body.single-calculator .programs-title {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 10px;
    }

    body.single-calculator .programs-subtitle {
        font-size: 18px;
        line-height: 29px;
    }

    body.single-calculator .programs-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-top: 50px;
    }

    body.single-calculator .program-card-popular {
        grid-column: 1 / -1;
        /* Take whole row space */
        justify-self: center;
        /* Center the card horizontally */
        width: 100%;
        max-width: 420px;
        /* Limit width to be "not full width" */
        order: -1;
    }

    body.single-calculator .info-boxes {
        gap: 20px;
    }

    body.single-calculator .info-box {
        padding: 20px;
    }

    body.single-calculator .info-box h4 {
        margin-bottom: 10px;
    }

    body.single-calculator .info-box li {
        padding: 6px 0;
    }

    body.single-calculator .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;

    }

    body.single-calculator .stat-box {
        padding: 20px;
        border-radius: 20px;
    }

    body.single-calculator .stat-number {
        margin-bottom: 8px;
    }

    body.single-calculator .faq-section {
        padding: 30px 0;
    }

    body.single-calculator .faq-layout {
        grid-template-columns: 1fr;
    }

    body.single-calculator .faq-image-col {
        display: none;
    }

    body.single-calculator .faq-title {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    /* Results */
    body.single-calculator .results-section {
        padding: 30px 0;
    }

    body.single-calculator .subject-card-header-icon {
        height: 42px;
        width: 42px;
    }

    body.single-calculator .subject-card-header-icon svg {
        height: 20px;
        width: 20px;
    }

    body.single-calculator .subject-card h4 {
        font-size: 18px;
        line-height: 29px;
    }

    body.single-calculator .subject-card ul {
        margin-top: 5px;
    }

    body.single-calculator .subject-card li {
        padding: 5px 0;
    }

    body.single-calculator .weekly-timeline {
        margin: 30px 0 0;
    }

    body.single-calculator .mock-test-table th {
        font-size: 16px;
        line-height: 26px;
    }

    body.single-calculator .mock-test-table td {
        font-size: 14px;
        line-height: 22px;
    }

    body.single-calculator .cta-buttons {
        gap: 15px;
    }

    body.single-calculator .cta-button {
        padding: 12px 24px;
    }

}

@media (max-width: 768px) {
    body.single-calculator .container {
        padding: 0 20px;
    }

    body.single-calculator section {
        padding: 30px 0;
    }

    body.single-calculator h2.section-title {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 10px;
    }

    body.single-calculator .section-subtitle {
        font-size: 18px;
        line-height: 29px;
    }

    body.single-calculator .btn {
        font-size: 14px;
        padding: 16px 12px;
    }

    body.single-calculator .hero {
        padding: 40px 0;
    }

    body.single-calculator .hero-grid {
        grid-template-columns: 1fr;
    }

    body.single-calculator .hero h1 {
        font-size: 36px;
        line-height: 42px;
    }

    body.single-calculator .hero p {
        font-size: 20px;
        line-height: 30px;
    }

    body.single-calculator .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    body.single-calculator .trust-badge {
        gap: 20px;
    }

    body.single-calculator .trust-badge-icon {
        height: 52px;
        width: 52px;
    }

    body.single-calculator .trust-badge-icon svg {
        height: 42px;
        width: 42px;
    }

    body.single-calculator .trust-badge-text {
        font-size: 14px;
        line-height: 22px;
    }

    body.single-calculator .calculator-section,
    body.single-calculator .why-calc,
    body.single-calculator .aces,
    body.single-calculator .programs-section,
    body.single-calculator .sat-prep-info,
    body.single-calculator .stats-section,
    body.single-calculator .faq-section {
        padding: 30px 0;
    }

    body.single-calculator .calculator-form {
        padding: 20px;
    }

    body.single-calculator .calculator-btn-margin {
        margin-top: 0;
        width: 100%;
    }

    body.single-calculator .form-row {
        grid-template-columns: 1fr;
    }

    body.single-calculator .feature-card {
        padding: 20px;
    }

    body.single-calculator .aces-carousel-container {
        margin-top: 20px;
    }

    body.single-calculator .program-card {
        padding: 20px;
    }

    body.single-calculator .programs-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    body.single-calculator .programs-title {
        font-size: 24px;
        line-height: 36px;
        margin-top: 10px;
    }

    body.single-calculator .programs-subtitle {
        font-size: 18px;
        line-height: 29px;
    }

    body.single-calculator .program-card-popular {
        order: -1;
        margin-bottom: 8px;
    }

    body.single-calculator .program-badge-wrapper {
        padding: 24px 24px 0;
    }

    body.single-calculator .program-title {
        font-size: 20px;
        line-height: 30px;
    }

    body.single-calculator .program-description {
        font-size: 14px;
        line-height: 22px;
    }

    body.single-calculator .program-features {
        margin-bottom: 20px;
    }

    body.single-calculator .program-feature {
        margin-bottom: 14px;
    }

    body.single-calculator .info-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    body.single-calculator .info-box {
        padding: 20px;
    }

    body.single-calculator .info-box h4 {
        margin-bottom: 8px;
    }

    body.single-calculator .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    body.single-calculator .stat-box {
        padding: 20px;
    }

    body.single-calculator .faq-layout {
        grid-template-columns: 1fr;
    }

    body.single-calculator .faq-image-col {
        display: none;
    }

    body.single-calculator .faq-title {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    /* Results section */
    body.single-calculator .results-section {
        padding: 30px 0;
    }

    body.single-calculator .score-summary {
        padding: 30px 20px;
        box-shadow: none;
        border-radius: 30px;
    }

    body.single-calculator .score-summary h3 {
        font-size: 22px;
        line-height: 30px;
    }

    body.single-calculator .difficulty-badge {
        font-size: 14px;
    }

    body.single-calculator .score-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    body.single-calculator .timelineText {
        margin-top: 20px;
    }

    body.single-calculator .timeline-dot {
        display: none;
    }

    body.single-calculator .subject-card {
        padding: 20px;
    }

    body.single-calculator .subject-card h4 {
        font-size: 18px;
    }

    body.single-calculator .subject-card li {
        padding: 6px 0;
    }

    body.single-calculator .subject-breakdown {
        grid-template-columns: 1fr;
    }

    body.single-calculator .weekly-timeline {
        margin-top: 30px;
    }

    body.single-calculator .week-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    body.single-calculator .week-column-card {
        padding: 15px;
    }

    body.single-calculator .week-title {
        font-size: 20px;
        padding-left: 0;
    }

    body.single-calculator .target-main {
        font-size: 14px;
        gap: 4px;
    }

    body.single-calculator .target-main strong {
        font-size: 14px;
    }

    body.single-calculator .target-sub {
        font-size: 14px;
    }

    body.single-calculator .strategy-chevron {
        margin-top: 4px;
    }

    body.single-calculator .strategy-item-v2 {
        gap: 6px;
    }

    body.single-calculator .week-details {
        grid-template-columns: 1fr;
    }

    body.single-calculator .week-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    body.single-calculator .mock-test-table {
        overflow-x: auto;
    }

    body.single-calculator .modal-content {
        margin: 20px;
    }

    body.single-calculator .modal-header {
        padding: 24px;
    }

    body.single-calculator .modal-body {
        padding: 20px;
    }

    body.single-calculator .why-use-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    body.single-calculator .section-title-scores {
        font-size: 28px;
    }

    body.single-calculator .cta-highlight {
        padding: 20px;
    }

    body.single-calculator .cta-section h2 {
        font-size: 30px;
        line-height: 42px;
    }

    body.single-calculator .score-journey {
        flex-direction: row;
        gap: 12px;
    }

    body.single-calculator .score-point {
        font-size: 36px;
    }

    body.single-calculator .score-arrow svg {
        height: 34px;
        width: 34 px; /* [VERIFY] Comp typo: "34 px" (space before px) — carried verbatim */
    }

    body.single-calculator .cta-section p {
        margin-bottom: 30px;
    }

    body.single-calculator .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

html {
    scroll-behavior: smooth;
}

body.single-calculator.modal-open {
    overflow: hidden;
}

/* Scroll to Top Button */
body.single-calculator .scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--bg-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 0px 25px rgba(255, 255, 255, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    transform: translateY(20px);
}

body.single-calculator .scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.single-calculator .scroll-to-top:hover {
    background: var(--bg-navy);
    box-shadow: 0 0px 15px rgba(250, 250, 250, 0.6);
}

body.single-calculator .scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke-width: 3px;
}

/* =====================================================
   Bricks integration reset — neutralise .brxe-container
   and .brxe-text wrappers so comp sections go full-bleed
   ===================================================== */
body.single-calculator #brx-content.brxe-container,
body.single-calculator .brxe-text {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: block !important;
    gap: 0 !important;
    align-items: stretch !important;
}

body.single-calculator #brx-content.brxe-container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

body.single-calculator header section,
body.single-calculator footer section {
    padding: 0 !important;
}
