/* ════════════════════════════════════════════════════════════════════════════
   WES GPA Calculator skin — CSS VERBATIM from Subash's wes-gpa-calculator.html
   comp (lines 21–1238). ALL rules scoped under body.single-calculator so nothing leaks into
   the Bricks header / footer chrome. Do NOT re-skin — fixes go through the comp first.
   Loaded on single `calculator` with slug `wes-gpa-calculator` by
   includes/calculator_styles.php (per-slug enqueue).

   SCOPING: comp :root{--token} → body.single-calculator{--token} (NOT :root). The bare
   body{} rule is scoped to body.single-calculator{}. html{} and @keyframes global.
   @media inner selectors scoped. See the ACT-score skin (same conventions).
   ════════════════════════════════════════════════════════════════════════════ */

/* ===== RESET & BRAND VARIABLES ===== */
body.single-calculator *, body.single-calculator *::before, body.single-calculator *::after {
    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;

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

html {
    scroll-behavior: smooth;
}

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 .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;
}

body.single-calculator .btn-outline {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

body.single-calculator .btn-outline:hover {
    border: 2px solid transparent;
    background-color: var(--bg-navy);
    color: var(--text-white);
}

body.single-calculator .btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
}

body.single-calculator .btn-outline-white:hover {
    border: 2px solid transparent;
    background-color: #fff;
    color: var(--bg-navy);
}

body.single-calculator .btn-dotted-outline {
    border: 2px dashed var(--text-gray);
    color: var(--text-gray);
}

body.single-calculator .btn-dotted-outline:hover {
    border: 2px dashed var(--text-dark);
    background-color: #f5f7ff;
    color: var(--text-dark);
}

/* Hero Section - No Gap Above */
body.single-calculator .hero-section {
    background: var(--bg-navy);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

body.single-calculator .hero-section p {
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 30px;
    color: var(--text-white);
}


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

body.single-calculator .calculator-container {
    background: #fff;
    border-radius: 40px;
    padding: 40px;
    margin-top: 40px;
}

body.single-calculator .course-entry {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 30px;
    border-bottom: 1px solid #e6e6e6;
}

body.single-calculator .course-entry:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

body.single-calculator .course-number {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

body.single-calculator .input-group {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 30px;
    gap: 20px;
    margin-top: 10px;
    align-items: end;
}

body.single-calculator .input-field {
    display: flex;
    flex-direction: column;
}

body.single-calculator .input-field label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

body.single-calculator .required {
    color: #ef4444;
    margin-left: 4px;
}

body.single-calculator .input-field input,
body.single-calculator .input-field select {
    width: 100%;
    max-width: 100%;
    padding: 14px;
    border: 2px solid #e6e6e6;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

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

body.single-calculator .remove-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #fee2e2;
    color: #ef4444;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

body.single-calculator .remove-icon-mobile {
    display: none;
}

body.single-calculator .remove-icon-wrapper:hover {
    background-color: #ef4444;
    color: white;
    transform: scale(1.1);
}

body.single-calculator .remove-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

body.single-calculator .calculator-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
}

body.single-calculator .calc-btn-right {
    display: flex;
    flex-direction: row;
    gap: 16px;
}


body.single-calculator .result-section {
    background: var(--bg-navy);
    color: white;
    padding: 40px;
    border-radius: 40px;
    margin-top: 40px;
    text-align: center;
    display: none;
    box-shadow: 0 12px 24px rgba(59, 91, 255, 0.5);
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

body.single-calculator .gpa-display {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

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

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

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

body.single-calculator .result-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 15px;
    font-weight: 600;
}

body.single-calculator .result-label svg {
    width: 18px;
    height: 18px;
    opacity: 0.9;
}

body.single-calculator .result-value {
    font-size: 30px;
    font-weight: 700;
}

/* CTA Buttons in Result Section */
body.single-calculator .result-cta-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

body.single-calculator .result-cta-text {
    font-size: 18px;
    line-height: 29px;
    color: white;
}

body.single-calculator .result-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    place-items: center;
}

/* Content Sections */
body.single-calculator .content-section-what,
body.single-calculator .content-section-how,
body.single-calculator .content-section-reference,
body.single-calculator .content-section-when {
    background: var(--text-white);
}

body.single-calculator .content-section-reference .conversion-table {
    margin-top: 40px;
}

body.single-calculator .que-ans {
    margin-bottom: 20px;
}

body.single-calculator .que-ans h2 {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

body.single-calculator .que-ans h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

body.single-calculator .content-section-what ul,
body.single-calculator .content-section-how ul {
    margin: 0 20px;
}

body.single-calculator .content-section-what li,
body.single-calculator .content-section-how li {
    margin-bottom: 16px;
    color: var(--text-dark);
}

body.single-calculator .content-section-what li:last-child {
    margin-bottom: 0;
}

body.single-calculator .content-section-how li:last-child {
    margin-bottom: 0;
}

body.single-calculator .highlight-box {
    background: #f5f7ff;
    border: 2px solid var(--accent-blue);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
}

body.single-calculator .highlight-box-when {
    margin-bottom: 0;
}

body.single-calculator .highlight-box-content {
    font-size: 18px;
    line-height: 29px;
    color: var(--text-dark);
}



body.single-calculator .formula-box {
    background: #f5f7ff;
    border: 2px solid var(--accent-blue);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-align: center;
}

body.single-calculator .formula-box strong {
    font-size: 22px;
    color: var(--text-dark);
}

body.single-calculator .formula-box p {
    font-size: 18px;
    line-height: 29px;
    color: var(--text-dark);
    margin-top: 16px;
}

body.single-calculator .table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

body.single-calculator .conversion-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 650px;
    border: 1px solid #e6e6e6;
    border-radius: 30px;
    background-color: #f5f7ff;
}

body.single-calculator .conversion-table th:first-child {
    border-top-left-radius: 30px;
}

body.single-calculator .conversion-table th:last-child {
    border-top-right-radius: 30px;
}

body.single-calculator .conversion-table tr:last-child td:first-child {
    border-bottom-left-radius: 30px;
}

body.single-calculator .conversion-table tr:last-child td:last-child {
    border-bottom-right-radius: 30px;
}

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

body.single-calculator .conversion-table td {
    padding: 16px;
    border-bottom: 1px solid #e6e6e6;
    background: #f5f7ff;
    border-right: 1px solid #e6e6e6;
}

body.single-calculator .conversion-table td:last-child,
body.single-calculator .conversion-table th:last-child {
    border-right: none;
}

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

body.single-calculator .conversion-table tr:hover td {
    background: var(--accent-blue);
}

/* CTA Section */
body.single-calculator .cta-section {
    background: var(--bg-navy);
}

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

body.single-calculator .cta-section-content h2 {
    color: var(--text-white);
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

body.single-calculator .cta-section-content p {
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 30px;
    color: var(--text-white);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

body.single-calculator .content-cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
}

/* Callback Form Section */
body.single-calculator .callback-section {
    padding: 60px 0;
    background-color: #13217c;
}

body.single-calculator .callback-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

body.single-calculator .callback-text-card {
    background: #f5f7ff;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
    height: 100%;
}

body.single-calculator .callback-form-card {
    background: none;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
    height: 100%;
}

body.single-calculator .callback-form-card iframe {
    flex-grow: 1;
    min-height: 500px;
}

body.single-calculator .callback-text-card h3 {
    font-size: 26px;
    color: #3b5bff;
    margin-bottom: 12px;
    line-height: 34px;
    font-weight: 600;
}

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

body.single-calculator .callback-text-card p:last-child {
    margin-bottom: 0;
}

body.single-calculator .callback-features {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

body.single-calculator .callback-features li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 26px;
    display: flex;
    align-items: flex-start;
}

body.single-calculator .callback-features li svg {
    position: absolute;
    left: 0;
    top: 3px;
    color: #22c55e;
    width: 20px;
    height: 20px;
    stroke-width: 1.5px;
}

body.single-calculator .callback-form-card h3 {
    font-size: 26px;
    color: #FFFDFE; /* Subash v2: "Request a Callback" on the navy callback band (was #333) */
    margin-bottom: 24px;
    text-align: center;
    font-weight: 600;
}

/* Test Prep Cards */
body.single-calculator .test-prep-section {
    background: #fffdfe;
}

body.single-calculator .cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

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

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

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

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

body.single-calculator .card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

body.single-calculator .card-features {
    list-style: none;
    margin-bottom: 30px;
}

body.single-calculator .card-features li {
    padding: 8px 0;
    position: relative;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 26px;
}

body.single-calculator .card-features .feature-check {
    width: 20px;
    height: 20px;
    stroke-width: 2.5px;
    color: var(--text-dark);
    /* Green color same as callback section */
    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;
}

/* Responsive Design - Consolidated Breakpoints */
@media (max-width: 1024px) {
    body.single-calculator section {
        padding: 40px 0;
    }

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

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

    body.single-calculator .callback-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    body.single-calculator .callback-text-card,
    body.single-calculator .callback-form-card {
        padding: 0;
        background: none;
        border: none;
    }

    body.single-calculator .callback-form-card h3 {
        margin-bottom: 16px;
    }

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

    body.single-calculator .card {
        padding: 25px;
        display: flex;
        flex-direction: column;
    }

    body.single-calculator .card .btn {
        margin-top: auto;
        width: max-content;
    }

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

@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 .hero-section h1 {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 15px;
    }

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

    body.single-calculator .calculator-container,
    body.single-calculator .result-section {
        margin-top: 30px;
    }

    body.single-calculator .result-item {
        padding: 12px;
    }

    body.single-calculator .result-label {
        font-size: 12px;
    }

    body.single-calculator .result-value {
        font-size: 22px;
    }

    body.single-calculator .que-ans h2 {
        font-size: 24px;
        line-height: 32px;
    }

    body.single-calculator .cta-section-content h2 {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 15px;
    }

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

    body.single-calculator .content-section-reference .conversion-table {
        margin-top: 30px;
    }

    body.single-calculator .conversion-table th {
        font-size: 16px;
    }

    body.single-calculator .conversion-table td {
        font-size: 14px;
    }

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

    body.single-calculator .callback-text-card h3,
    body.single-calculator .callback-form-card h3 {
        font-size: 24px;
        line-height: 32px;
    }

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

    body.single-calculator .card {
        padding: 20px;
        border-radius: 30px;
    }

    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: 34px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {

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

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

    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;
        width: 100%;
    }

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

    body.single-calculator .hero-section p {
        text-align: left;
    }

    body.single-calculator .calculator-container {
        margin-top: 30px;
        padding: 20px;
        border-radius: 30px;
    }

    body.single-calculator .course-entry {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    body.single-calculator .input-group {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    body.single-calculator .remove-icon-desktop {
        display: none;
    }

    body.single-calculator .remove-icon-mobile {
        display: flex;
        background: none;
        padding: 0;
        width: auto;
        height: auto;
        margin-bottom: 0;
        color: #ef4444;
        cursor: pointer;
    }

    body.single-calculator .remove-icon-wrapper:hover {
        background: none;
        color: #ef4444;
    }

    body.single-calculator .course-header {
        margin-bottom: 12px;
    }

    body.single-calculator .calculator-actions {
        flex-direction: column;
        margin-top: 30px;
    }

    body.single-calculator .result-section {
        margin-top: 30px;
        border-radius: 30px;
        padding: 30px;
        box-shadow: none;
    }

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

    body.single-calculator .result-value {
        font-size: 24px;
    }

    body.single-calculator .que-ans h2 {
        font-size: 20px;
    }

    body.single-calculator .content-section-reference .conversion-table {
        margin-top: 30px;
    }

    body.single-calculator .content-cta-buttons .btn {
        max-width: 260px;
    }

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

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

    body.single-calculator .cards-grid {
        grid-template-columns: 1fr;
        margin: 30px auto 0;
    }

    body.single-calculator .card {
        padding: 20px;
        border-radius: 30px;
    }

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

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


    body.single-calculator .callback-text-card h3,
    body.single-calculator .callback-form-card h3 {
        font-size: 24px;
    }

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

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

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

@media(max-width:350px) {
    body.single-calculator .btn {
        padding: 12px 8px;
    }
}

/* ── Subash review fixes (2026-06-14) ── */
body.single-calculator .content-section-what.qa-section { background: #e6ebff; }
body.single-calculator .content-section-what.qa-section h2.section-title { text-align: left; margin-bottom: 30px; }

/* ── Subash review v2 (2026-06-14) ── */
/* "When Do You Need WES GPA?" is <h2 class="que-ans"> (class ON the h2), so v1's
   `.que-ans h2` descendant rule never matched it — it stayed #333. Colour it blue. */
body.single-calculator h2.que-ans { color: var(--primary-blue); }

/* Quick-Answers typography/spacing: p 15px→16px, +20px below each answer; +10px
   below each question (h3). Two-class selector overrides the shared base p size. */
body.single-calculator .content-section-what.qa-section h3 { font-size: 20px; margin-bottom: 10px; }
body.single-calculator .content-section-what.qa-section p { font-size: 16px; margin-bottom: 20px; }
