/* ════════════════════════════════════════════════════════════════════════════
   TOEFL Score Calculator skin — CSS VERBATIM from Subash's toefl-score-calculator.html
   comp (lines 22–273). 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 `toefl-score-calculator` by
   includes/calculator_styles.php (per-slug enqueue).

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

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

/* tokens defined on the scoped body (not :root) so var(--*) resolves for the
   calc content via inheritance, without clashing with Bricks' own :root vars. */
body.single-calculator {
    --font-heading: "Poppins", sans-serif;
    --font-body: "Inter", sans-serif;
    --primary: #3b5bff;
    --secondary: #cc00cc;
    --hero-bg: #13217c;
    --primary-hover: #13217c;
    --secondary-hover: #A60066;
    --bg-light: #e6ebff;
    --bg-mid: #a0aeff;
    --text-black: #333333;
    --text-gray: #808080;
    --text-white: #ffffff;
    --radius: 20px;
    --section-padding: 60px 0;
}

html { scroll-behavior: smooth; }

body.single-calculator { font-family: var(--font-body); background: #ffffff; color: var(--text-black); min-height: 100vh; }

body.single-calculator h1 { font-family: var(--font-heading); font-size: 42px; font-weight: 600; line-height: 56px; }
body.single-calculator h2 { font-family: var(--font-heading); font-size: 36px; font-weight: 600; line-height: 48px; color: var(--primary); }
body.single-calculator h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 600; line-height: 34px; }
body.single-calculator p { font-family: var(--font-body); font-size: 18px; line-height: 29px; font-weight: 400; color: var(--text-black); }
body.single-calculator ul, body.single-calculator ol { padding-left: 20px; }
body.single-calculator li { font-family: var(--font-body); font-size: 18px; line-height: 29px; color: var(--text-black); margin-bottom: 8px; }
body.single-calculator .text-center { text-align: center; }

body.single-calculator section { padding: var(--section-padding); display: flex; justify-content: center; }
body.single-calculator .container { width: 100%; max-width: 1920px; padding: 0 80px; }
body.single-calculator .section-title { font-family: var(--font-heading); font-size: 36px; font-weight: 600; line-height: 48px; color: var(--primary); margin-bottom: 15px; }
body.single-calculator .section-subtitle { font-size: 18px; font-family: var(--font-heading); font-weight: 400; color: var(--text-black); line-height: 29px; margin-bottom: 40px; }

body.single-calculator .section-chip { display: inline-block; background: #e6ebff; color: var(--primary-hover); font-family: var(--font-body); font-size: 16px; font-weight: 600; padding: 8px 16px; border-radius: 40px; letter-spacing: 0.8px; margin-bottom: 14px; }

/* HERO */
body.single-calculator .hero-section { background: var(--hero-bg); padding: 60px 0; display: flex; justify-content: center; }
body.single-calculator .hero-inner { width: 100%; max-width: 1920px; padding: 0 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
body.single-calculator .hero-content h1 { color: #ffffff; margin-bottom: 20px; }
body.single-calculator .hero-subtitle { font-size: 18px; font-family: var(--font-body); color: #e8e8e8; margin-bottom: 30px; line-height: 29px; }
body.single-calculator .hero-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
body.single-calculator .stat-item { text-align: left; }
body.single-calculator .stat-label { font-size: 14px; font-family: var(--font-body); color: #8890c4; letter-spacing: 0.8px; }

/* BUTTONS */
body.single-calculator .btn { display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 12px 24px; font-family: var(--font-body); font-size: 18px; font-weight: 600; border: none; border-radius: 10px; cursor: pointer; transition: background 0.3s ease, transform 0.2s ease; text-decoration: none; white-space: nowrap; }
body.single-calculator .btn-primary { background: var(--primary); color: #ffffff; }
body.single-calculator .btn-primary:hover { background: var(--primary-hover); }
body.single-calculator .btn-secondary { background: var(--secondary); color: #ffffff; }
body.single-calculator .btn-secondary:hover { background: var(--secondary-hover); }
body.single-calculator .btn-ghost { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
body.single-calculator .btn-ghost:hover { background: var(--primary); color: #ffffff; }
body.single-calculator .btn-success { background: var(--secondary); color: #ffffff; }
body.single-calculator .btn-success:hover { background: var(--secondary-hover); }
body.single-calculator .btn-white { background: #ffffff; color: var(--primary); height: 48px; padding: 12px 24px; border-radius: 10px; font-weight: 600; font-family: var(--font-body); font-size: 18px; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; transition: all 0.3s ease; border: none; cursor: pointer; }
body.single-calculator .btn-white:hover { background: var(--bg-light); transform: translateY(-2px); }

/* CALC CARD */
body.single-calculator .hero-calc-card { background: #ffffff; border-radius: 30px; border: 4px solid var(--bg-light); padding: 30px; }
body.single-calculator .calc-header { display: flex; align-items: center; gap: 14px; margin-bottom: 25px; }
body.single-calculator .calc-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--bg-light); color: var(--primary); border-radius: 12px; flex-shrink: 0; }
body.single-calculator .calc-icon svg { width: 24px; height: 24px; }
body.single-calculator .hero-calc-card h3 { font-family: var(--font-heading); font-size: 22px; line-height: 30px; color: var(--text-black); font-weight: 600; }

/* FORM */
body.single-calculator .calculator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
body.single-calculator .form-group { margin-bottom: 0; }
body.single-calculator .form-label { display: block; font-size: 14px; font-family: var(--font-heading); font-weight: 600; color: var(--text-black); margin-bottom: 8px; letter-spacing: 0.5px; }
body.single-calculator .form-input { width: 100%; height: 52px; padding: 12px 16px; font-size: 16px; font-family: var(--font-body); border: 1.5px solid #808080; border-radius: 10px; background: #ffffff; color: var(--text-black); transition: all 0.3s ease; }
body.single-calculator .form-input::placeholder { color: #808080; }
body.single-calculator .form-input:focus { outline: none; border-color: var(--primary); }
body.single-calculator .form-input.error { border-color: #dc3545; }
body.single-calculator .form-buttons { display: flex; gap: 16px; margin-top: 20px; }
body.single-calculator .form-buttons .btn { flex: 1; }

/* RESULT */
body.single-calculator .result-area { margin-top: 20px; background: var(--bg-light); border-radius: var(--radius); padding: 24px; text-align: center; display: none; animation: fadeIn 0.4s ease; }
body.single-calculator .result-area.show { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
body.single-calculator .result-label-text { font-size: 14px; font-family: var(--font-body); color: var(--text-black); letter-spacing: 1px; margin-bottom: 8px; }
body.single-calculator .result-value { font-family: var(--font-heading); font-size: 52px; font-weight: 600; color: var(--primary-hover); line-height: 1.1; }
body.single-calculator .result-grade { font-size: 16px; font-family: var(--font-body); font-weight: 600; color: var(--primary-hover); margin: 8px 0 16px; line-height: 24px; }
body.single-calculator .result-cta .btn { width: 100%; }

/* SUCCESS BANNER */
body.single-calculator .success-banner { margin-top: 12px; display: none; }
body.single-calculator .success-banner.show { display: block; animation: slideIn 0.4s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: translateX(0); } }
body.single-calculator .success-banner p { color: #00bc7d; font-weight: 600; font-size: 14px; text-align: center; }

/* TRUST */
body.single-calculator .trust-section { background: var(--bg-light); }
body.single-calculator .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
body.single-calculator .trust-item { background: #ffffff; border-radius: var(--radius); padding: 24px; text-align: center; }
body.single-calculator .trust-item h3 { font-size: 18px; color: #333333; margin-bottom: 6px; line-height: 26px; }
body.single-calculator .trust-item p { font-size: 16px; color: var(--text-gray); }

/* RESOURCES */
body.single-calculator .resources-section { background: #ffffff; }
body.single-calculator .resources-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 30px; }
body.single-calculator .resource-card { background: var(--bg-light); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; align-items: flex-start; }
body.single-calculator .resource-card h3 { color: var(--primary); margin-bottom: 12px; font-size: 22px; line-height: 30px; }
body.single-calculator .resource-card p { margin-bottom: 24px; font-size: 16px; flex-grow: 1; }
body.single-calculator .resource-card .btn { width: auto; }
body.single-calculator .resource-card:hover { border: 2px solid #a0aeff; }

/* PROMOTIONS */
body.single-calculator .promotions-section { background: var(--bg-light); }
body.single-calculator .promo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 30px; }
body.single-calculator .promo-card { background: #ffffff; border-radius: var(--radius); padding: 24px; border: 2px solid #dce3ff; }
body.single-calculator .promo-card:hover { border-color: #a0aeff; }
body.single-calculator .promo-title { font-size: 18px; font-weight: 700; font-family: var(--font-heading); color: var(--text-black); margin-bottom: 12px; }
body.single-calculator .promo-card p { font-size: 16px; color: #333333; margin-bottom: 12px; line-height: 24px; }
body.single-calculator .code-display { background: var(--hero-bg); color: #ffffff; padding: 12px 16px; border-radius: 10px; font-family: Poppins; font-size: 18px; display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
body.single-calculator .copy-btn { background: #fffdfe; color: #333333; border: none; padding: 6px 14px; border-radius: 6px; cursor: pointer; font-size: 14px; font-family: var(--font-body); font-weight: 600; transition: background 0.2s ease; }
body.single-calculator .copy-btn.copied { background: #00bc7d; color: #fffdfe; }
body.single-calculator .voucher-card { background: #13217c; border: none; }
body.single-calculator .voucher-card .promo-title { color: #ffffff; }
body.single-calculator .voucher-card p { color: rgba(255, 255, 255, 0.9) !important; }

/* CONTENT SECTIONS */
body.single-calculator .content-section { background: #ffffff; }
body.single-calculator .content-section.alt-bg { background: #fffdfe; }
body.single-calculator .content-section h2 { font-size: 36px; font-weight: 600; line-height: 48px; color: var(--primary); margin-bottom: 20px; font-family: var(--font-heading); }
body.single-calculator .content-section h3 { font-size: 24px; font-weight: 600; line-height: 34px; color: var(--primary); margin: 30px 0 15px; font-family: var(--font-heading); }
body.single-calculator .content-section p { font-size: 18px; font-family: var(--font-body); color: var(--text-black); line-height: 26px; margin-bottom: 15px; }
body.single-calculator .content-section ul, body.single-calculator .content-section ol { padding-left: 20px; margin-bottom: 15px; }
body.single-calculator .content-section li { font-size: 16px; font-family: var(--font-body); color: var(--text-black); line-height: 26px; margin-bottom: 8px; }

/* TABLES */
body.single-calculator .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); background: #ffffff; width: 100%; }
body.single-calculator .comparison-table { width: 100%; border-collapse: collapse; background: #ffffff; }
body.single-calculator .comparison-table thead th { background: var(--primary); color: #ffffff; padding: 18px 16px; text-align: left; font-family: var(--font-body); font-size: 16px; font-weight: 600; border-right: 1.5px solid #fffdfe; }
body.single-calculator .comparison-table thead th:last-child { border-right: none; }
body.single-calculator .comparison-table tbody td { background: #e6ebff; padding: 16px; font-size: 16px; font-family: var(--font-body); color: var(--text-black); border-top: 1.5px solid #fffdfe; border-right: 1.5px solid #fffdfe; }
body.single-calculator .comparison-table tbody td:last-child { border-right: none; }
body.single-calculator .comparison-table tbody tr:nth-child(even) td { background: #e6ebff; }

/* FINAL CTA */
body.single-calculator .cta-section { background: var(--hero-bg); text-align: center; }
body.single-calculator .cta-section h2 { color: #ffffff; margin-bottom: 16px; }
body.single-calculator .cta-intro { font-size: 18px; line-height: 29px; color: #e8e8e8; margin-bottom: 30px; }
body.single-calculator .cta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 30px; }
body.single-calculator .cta-card { background: #fffdfe; border-radius: var(--radius); padding: 30px; text-align: center; }
body.single-calculator .cta-card h3 { color: #3b5bff; margin-bottom: 12px; font-size: 22px; }
body.single-calculator .cta-card p { color: #333333; margin-bottom: 20px; font-size: 16px; }

/* FAQ */
body.single-calculator .faq-section { background: #ffffff; }
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; }
body.single-calculator .faq-main-title { font-family: var(--font-heading); font-size: 36px; font-weight: 600; color: var(--primary); margin-bottom: 30px; }
body.single-calculator .faq-item { background: var(--primary); margin-bottom: 18px; overflow: hidden; }
body.single-calculator .faq-question { padding: 20px 50px 20px 20px; font-size: 18px; line-height: 30px; font-weight: 400; font-family: var(--font-heading); color: #ffffff; cursor: pointer; position: relative; transition: all 0.3s ease; user-select: none; }
body.single-calculator .faq-question:hover { background: rgba(255, 255, 255, 0.08); }
body.single-calculator .faq-question::after { content: "\203A"; position: absolute; right: 28px; top: 50%; transform: translateY(-50%) rotate(0deg); font-size: 28px; color: #ffffff; font-weight: 400; transition: transform 0.3s ease; line-height: 1; }
body.single-calculator .faq-question.active::after { content: "\203A"; transform: translateY(-50%) rotate(90deg); }
body.single-calculator .faq-answer { background-color: var(--bg-light); max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 28px; font-size: 18px; line-height: 30px; font-weight: 400; font-family: var(--font-body); color: var(--primary); }
body.single-calculator .faq-answer.active { max-height: 500px; padding: 20px; }

/* RESPONSIVE 1024px */
@media (max-width: 1024px) {
    body.single-calculator .container, body.single-calculator .hero-inner { padding: 0 40px; }
    body.single-calculator .faq-layout { grid-template-columns: 1fr 1.3fr; gap: 36px; }
    body.single-calculator .faq-main-title { font-size: 28px; }
    body.single-calculator .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    body.single-calculator .trust-grid { grid-template-columns: repeat(2, 1fr); }
    body.single-calculator .promo-grid { grid-template-columns: repeat(2, 1fr); }
    body.single-calculator .cta-grid { grid-template-columns: 1fr; }
}

/* RESPONSIVE 768px */
@media (max-width: 768px) {
    /* ⚠ SCOPING: comp had :root { --section-padding } here — moved to body.single-calculator */
    body.single-calculator { --section-padding: 40px 0; }
    body.single-calculator .container, body.single-calculator .hero-inner { padding: 0 20px; }
    body.single-calculator h1 { font-size: 32px; line-height: 44px; }
    body.single-calculator h2 { font-size: 26px; line-height: 36px; }
    body.single-calculator .section-title { font-size: 26px; line-height: 36px; }
    body.single-calculator .section-subtitle { font-size: 16px; margin-bottom: 24px; }
    body.single-calculator .hero-inner { grid-template-columns: 1fr; gap: 30px; }
    body.single-calculator .hero-stats { gap: 20px; margin-bottom: 24px; }
    body.single-calculator .hero-calc-card { border-radius: 24px; padding: 20px; }
    body.single-calculator .calculator-grid { grid-template-columns: 1fr; gap: 14px; }
    body.single-calculator .form-buttons { flex-direction: column; }
    body.single-calculator .trust-grid { grid-template-columns: repeat(2, 1fr); }
    body.single-calculator .resources-grid { grid-template-columns: 1fr; }
    body.single-calculator .promo-grid { grid-template-columns: 1fr; }
    body.single-calculator .cta-grid { grid-template-columns: 1fr; }
    body.single-calculator .faq-layout { grid-template-columns: 1fr; }
    body.single-calculator .faq-image-col { display: none; }
    body.single-calculator .faq-main-title { font-size: 24px; text-align: center; }
    body.single-calculator .faq-question { font-size: 18px; padding: 16px 44px 16px 16px; }
    body.single-calculator .content-section h2 { font-size: 26px; font-weight: 600; line-height: 36px; color: var(--primary); margin-bottom: 10px; font-family: var(--font-heading); }
}

@media (max-width: 480px) {
    body.single-calculator .trust-grid { grid-template-columns: 1fr 1fr; }
    body.single-calculator .comparison-table { min-width: 480px; }
}

@media (max-width: 480px) {
    body.single-calculator .trust-grid { grid-template-columns: 1fr 1fr; }
    body.single-calculator .comparison-table { min-width: 480px; }

    /* ✅ FIX: Prevent calc card from expanding on result reveal */
    body.single-calculator .hero-calc-card {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: 16px; /* tighter padding on very small screens */
    }

    /* ✅ FIX: Scale down the big score text */
    body.single-calculator .result-value {
        font-size: 36px;
        word-break: break-word;
    }

    /* ✅ FIX: Constrain result area and CTA button */
    body.single-calculator .result-area {
        width: 100%;
        max-width: 100%;
        padding: 16px;
    }

    body.single-calculator .result-cta .btn {
        width: 100%;
        font-size: 14px;
        padding: 10px 12px;
        white-space: normal;   /* allow text wrap instead of stretching */
        text-align: center;
        line-height: 20px;
        height: auto;
    }

    /* ✅ FIX: Ensure form buttons don't overflow */
    body.single-calculator .form-buttons .btn {
        font-size: 15px;
        padding: 10px 12px;
    }
}

@media (max-width: 768px) {
    /* existing rules... */
    body.single-calculator .hero-inner {
        overflow: hidden; /* add this */
    }
}

/* ════════════════════════════════════════════════════════════════════════════
   Bricks integration reset (galv calc — TOEFL) — same pattern as the other calculators.
   ════════════════════════════════════════════════════════════════════════════ */
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;
}

/* ════════════════════════════════════════════════════════════════════════════
   Galvanize SEO/UX additions (NOT from the comp) — quick-answer callout, the TOEFL explainer +
   related-tools sections, and the lead-form card (the comp shipped no capture form). Styled on
   the comp palette. Re-asserted with the body.single-calculator prefix so the comp's *{margin:0}
   reset can't out-specify them.
   ════════════════════════════════════════════════════════════════════════════ */
body.single-calculator .calc-qa-eyebrow {
    display: inline-block; font-family: var(--font-heading);
    font-size: 12px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
    color: var(--primary); margin-bottom: 6px;
}
body.single-calculator .calc-quick-answer {
    max-width: 860px; margin: 30px auto 0; padding: 22px 26px;
    background: #f7f9ff; border-left: 4px solid var(--primary); border-radius: 12px;
    font-size: 16px; line-height: 1.65; color: var(--text-black); text-align: left;
}
body.single-calculator .calc-quick-answer p { margin: 0; }

body.single-calculator .toefl-explainers .container { max-width: 1000px; }
body.single-calculator .toefl-explainers h3 { margin-top: 22px; color: var(--secondary); font-size: 24px; line-height: 32px; }
body.single-calculator .toefl-explainers a { color: var(--primary); font-weight: 600; text-decoration: none; }
body.single-calculator .toefl-explainers a:hover { text-decoration: underline; }

body.single-calculator .related-tools { background: var(--bg-light); }
body.single-calculator .related-tools .container { max-width: 1120px; }
body.single-calculator .related-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 26px;
}
body.single-calculator .related-card {
    display: flex; flex-direction: column; gap: 8px;
    background: #fff; border: 1px solid #dfe5ff; border-radius: 14px; padding: 22px 24px;
    text-decoration: none; transition: transform .2s, box-shadow .2s, border-color .2s;
}
body.single-calculator .related-card:hover {
    transform: translateY(-3px); box-shadow: 0 8px 22px rgba(19,33,124,.10); border-color: var(--primary);
}
body.single-calculator .related-card-title { font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: var(--primary); }
body.single-calculator .related-card-desc { font-size: 15px; color: var(--text-gray); line-height: 22px; }

/* CTA + lead-form section (comp shipped none) */
body.single-calculator .cta-form-section { background: var(--hero-bg); }
body.single-calculator .cta-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
body.single-calculator .cta-form-content h2 { color: #fffdfe; margin-bottom: 16px; }
body.single-calculator .cta-form-content p { font-size: 18px; color: #fffdfe; margin-bottom: 15px; font-family: var(--font-body); line-height: 29px; }
body.single-calculator .cta-features { list-style: none; padding-left: 0; margin: 20px 0; }
body.single-calculator .cta-features li { padding-left: 24px; position: relative; font-size: 16px; color: #fffdfe; margin-bottom: 12px; font-family: var(--font-body); line-height: 26px; }
body.single-calculator .cta-features li::before { content: "\2713"; position: absolute; left: 0; color: #00bc7d; font-weight: 700; }
body.single-calculator .cta-form-content .highlight-note { margin-top: 20px; font-weight: 600; color: var(--bg-light); font-family: var(--font-body); font-size: 16px; line-height: 26px; }
body.single-calculator .cta-form-frame { background: #fffdfe; border-radius: var(--radius); overflow: hidden; display: flex; align-items: center; padding: 8px; }
body.single-calculator .calc-lead-form { width: 100%; padding: 28px; }
body.single-calculator .calc-lead-form h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 600; color: var(--hero-bg); margin-bottom: 8px; line-height: 1.25; }
body.single-calculator .calc-lead-form > p { font-size: 16px; color: var(--text-gray); margin-bottom: 22px; line-height: 24px; }
body.single-calculator .calc-lead-form .form-row { margin-bottom: 14px; }
body.single-calculator .calc-lead-form input { width: 100%; padding: 14px 16px; font-family: var(--font-body); font-size: 16px; border: 1.5px solid #dfe5ff; border-radius: 10px; background: #f7f9ff; color: var(--text-black); }
body.single-calculator .calc-lead-form input::placeholder { color: #9aa3c7; }
body.single-calculator .calc-lead-form input:focus { outline: none; border-color: var(--primary); background: #fff; }
body.single-calculator .calc-lead-form .lead-submit { width: 100%; margin-top: 8px; padding: 15px; cursor: pointer; font-family: var(--font-heading); font-size: 17px; font-weight: 600; color: #fff; background: var(--secondary); border: none; border-radius: 10px; transition: background .2s, transform .2s; }
body.single-calculator .calc-lead-form .lead-submit:hover { background: var(--secondary-hover); transform: translateY(-1px); }

@media (max-width: 768px) {
    body.single-calculator .related-grid { grid-template-columns: 1fr; }
    body.single-calculator .cta-form-grid { grid-template-columns: 1fr; gap: 40px; }
}
