:root {
    --fc-navy: #071b4d;
    --fc-blue: #0d4ea6;
    --fc-green: #1f9d63;
    --fc-text: #102044;
    --fc-muted: #5d6a84;
    --fc-line: #dbe5f2;
    --fc-soft: #f5f9fd;
    --fc-shadow: 0 18px 48px rgba(20, 48, 90, .11);
}

body.fincalc-body {
    margin: 0;
    color: var(--fc-text);
    background: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fc-site * {
    box-sizing: border-box;
}

.fc-site a {
    color: inherit;
    text-decoration: none;
}

.fc-hidden-section {
    display: none;
}

.fc-header {
    align-items: center;
    background: rgba(255, 255, 255, .95);
    border-bottom: 1px solid rgba(219, 229, 242, .75);
    display: flex;
    gap: 36px;
    justify-content: space-between;
    min-height: 78px;
    padding: 14px clamp(18px, 5vw, 70px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.fc-brand {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
}

.fc-logo-img {
    display: block;
    height: 50px;
    width: auto;
}

.fc-nav {
    align-items: center;
    display: flex;
    flex: 1;
    gap: clamp(18px, 4vw, 50px);
    justify-content: center;
}

.fc-nav a {
    color: var(--fc-navy);
    font-size: 15px;
    font-weight: 800;
}

.fc-header-search {
    flex: 0 1 260px;
    position: relative;
}

.fc-header-search label {
    align-items: center;
    background: #f7fbff;
    border: 1px solid #d9e5f0;
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 8px 18px rgba(21, 48, 86, .06);
    display: flex;
    min-height: 42px;
    padding: 0 14px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.fc-header-search label:before {
    color: #7a8aa5;
    content: "Search";
    font-size: 12px;
    font-weight: 800;
    margin-right: 10px;
}

.fc-header-search:focus-within label {
    background: #fff;
    border-color: color-mix(in srgb, var(--fc-green) 55%, var(--fc-line));
    box-shadow: 0 0 0 4px rgba(31, 157, 99, .1), 0 10px 22px rgba(21, 48, 86, .08);
}

.fc-header-search label > span {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.fc-header-search input {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--fc-text);
    font-size: 14px;
    min-width: 0;
    outline: 0;
    width: 100%;
}

.fc-search-suggestions {
    background: #fff;
    border: 1px solid #d9e5f0;
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(7, 27, 77, .16);
    display: none;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 100;
}

.fc-search-suggestions.is-open {
    display: block;
}

.fc-search-suggestion,
.fc-search .fc-search-suggestion {
    background: #fff;
    border: 0;
    border-bottom: 1px solid #edf3f8;
    color: var(--fc-text);
    cursor: pointer;
    display: block;
    height: auto;
    padding: 10px 13px;
    text-align: left;
    width: 100%;
}

.fc-search-suggestion:last-child,
.fc-search .fc-search-suggestion:last-child {
    border-bottom: 0;
}

.fc-search-suggestion:hover,
.fc-search-suggestion:focus-visible,
.fc-search-suggestion.is-active,
.fc-search .fc-search-suggestion:hover,
.fc-search .fc-search-suggestion:focus-visible,
.fc-search .fc-search-suggestion.is-active {
    background: #f2faf6;
    color: var(--fc-navy);
    outline: 0;
}

.fc-search-suggestion strong,
.fc-search .fc-search-suggestion strong {
    display: block;
    font-size: 14px;
    line-height: 1.25;
}

.fc-search-suggestion span,
.fc-search .fc-search-suggestion span {
    color: #63728b;
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    margin-top: 3px;
}

.fc-hero {
    align-items: center;
    background: linear-gradient(90deg, #fff 0%, #fff 38%, rgba(241, 247, 251, .8) 100%);
    display: grid;
    grid-template-columns: minmax(280px, 500px) 1fr;
    min-height: 315px;
    overflow: visible;
    padding: 28px clamp(18px, 5vw, 70px) 24px;
    position: relative;
    z-index: 2;
}

.fc-hero h1 {
    color: var(--fc-navy);
    font-size: clamp(30px, 3.4vw, 44px);
    letter-spacing: 0;
    line-height: 1.12;
    margin: 0 0 14px;
}

.fc-hero p {
    color: #4e5a76;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 22px;
    max-width: 480px;
}

.fc-search {
    align-items: center;
    background: #fff;
    border: 1px solid #d9e5f0;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(7, 27, 77, .09);
    display: flex;
    gap: 10px;
    max-width: 480px;
    padding: 0 18px;
    position: relative;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.fc-search:focus-within {
    border-color: color-mix(in srgb, var(--fc-green) 55%, var(--fc-line));
    box-shadow: 0 0 0 4px rgba(31, 157, 99, .1), 0 14px 30px rgba(7, 27, 77, .1);
}

.fc-search button {
    align-items: center;
    background: #eef6fb;
    border: 0;
    border-radius: 999px;
    color: #6d7e99;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    height: 28px;
    justify-content: center;
    padding: 0 12px;
    width: auto;
}

.fc-search button:hover,
.fc-search button:focus-visible {
    background: #dff2ea;
    color: var(--fc-green);
}

.fc-search input {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--fc-text);
    flex: 1;
    font-size: 16px;
    min-height: 46px;
    outline: 0;
}

.fc-popular {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 18px;
}

.fc-popular strong {
    color: var(--fc-navy);
    font-size: 14px;
}

.fc-popular a {
    color: #0d5ec4;
    font-size: 13px;
}

.fc-hero-visual {
    justify-self: end;
    max-width: 440px;
    width: 100%;
}

.fc-hero-visual img {
    display: block;
    filter: drop-shadow(0 20px 32px rgba(27, 49, 91, .12));
    height: auto;
    width: 100%;
}

.fc-section,
.fc-directory,
.fc-page-hero,
.fc-calculator-shell,
.fc-newsletter,
.fc-trust,
.fc-footer {
    margin-left: auto;
    margin-right: auto;
    max-width: 1370px;
    width: calc(100% - clamp(36px, 10vw, 140px));
}

.fc-section {
    padding: 24px 0 0;
    position: relative;
    z-index: 1;
}

.fc-section-heading {
    margin-bottom: 28px;
    text-align: center;
}

.fc-section h2,
.fc-page-hero h1,
.fc-directory h2 {
    color: var(--fc-navy);
}

.fc-section-heading h2,
.fc-split-heading h2 {
    font-size: 28px;
    line-height: 1.2;
    margin: 0;
}

.fc-section-heading:after {
    background: var(--fc-green);
    content: "";
    display: block;
    height: 2px;
    margin: 14px auto 0;
    width: 40px;
}

.fc-category-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.fc-category-card,
.fc-feature-card,
.fc-article-card,
.fc-directory-card,
.fc-calculator-form,
.fc-result-panel {
    background: linear-gradient(145deg, #fff 0%, color-mix(in srgb, var(--accent, #2aa876) 8%, #fff) 100%);
    border: 1px solid color-mix(in srgb, var(--accent, #2aa876) 24%, var(--fc-line));
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(19, 48, 89, .05);
}

.fc-category-card {
    min-height: 168px;
    padding: 20px 18px 16px;
}

.fc-category-card h3 {
    color: var(--fc-navy);
    font-size: 17px;
    line-height: 1.25;
    margin: 0 0 8px;
}

.fc-category-card p,
.fc-feature-card p,
.fc-article-card p,
.fc-directory-card span,
.fc-page-hero p,
.fc-result-panel p {
    color: var(--fc-muted);
    line-height: 1.55;
}

.fc-category-card p {
    font-size: 13px;
    margin: 0 0 14px;
}

.fc-category-card strong {
    color: var(--accent);
    font-size: 14px;
}

.fc-featured {
    background: linear-gradient(180deg, #f4f9ff 0%, rgba(244, 249, 255, 0) 100%);
    border-radius: 8px;
    margin-top: 24px;
    padding: 24px 16px 0;
}

.fc-split-heading {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 22px;
}

.fc-split-heading a {
    color: #0d5ec4;
    font-size: 14px;
    font-weight: 800;
}

.fc-feature-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.fc-feature-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 26px 22px 22px;
    text-align: center;
}

.fc-feature-card h3 {
    color: var(--fc-navy);
    font-size: 18px;
    margin: 18px 0 10px;
}

.fc-feature-card p {
    font-size: 14px;
    min-height: 44px;
}

.fc-feature-card .fc-button {
    margin-top: auto;
}

.fc-button,
.fc-calculator-form button,
.fc-newsletter button {
    background: #fff;
    border: 1px solid var(--accent, var(--fc-green));
    border-radius: 6px;
    color: var(--accent, var(--fc-green));
    cursor: pointer;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    padding: 12px 26px;
}

.fc-trust {
    background: linear-gradient(90deg, #f7fbff, #fff);
    border-radius: 8px;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 24px;
    padding: 22px;
}

.fc-trust div {
    border-right: 1px solid var(--fc-line);
    padding: 0 22px;
}

.fc-trust div:last-child {
    border-right: 0;
}

.fc-trust strong,
.fc-trust span {
    display: block;
}

.fc-trust strong {
    color: var(--fc-navy);
    margin-bottom: 4px;
}

.fc-trust span {
    color: var(--fc-muted);
    font-size: 13px;
    line-height: 1.45;
}

.fc-article-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fc-article-card {
    overflow: hidden;
}

.fc-article-image {
    background-position: center;
    background-size: cover;
    height: 120px;
}

.fc-article-card span,
.fc-article-card h3,
.fc-article-card p,
.fc-article-card a {
    margin-left: 18px;
    margin-right: 18px;
}

.fc-article-card span {
    background: #dff5eb;
    border-radius: 4px;
    color: #178354;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    margin-top: 14px;
    padding: 4px 8px;
}

.fc-article-card h3 {
    color: var(--fc-navy);
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 8px;
    margin-top: 10px;
}

.fc-article-card p {
    font-size: 14px;
    margin-bottom: 14px;
}

.fc-article-card a {
    color: #0d5ec4;
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 18px;
}

.fc-newsletter {
    align-items: center;
    background: var(--fc-navy);
    border-radius: 10px;
    color: #fff;
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr minmax(320px, 580px);
    margin-top: 28px;
    padding: 24px 34px;
}

.fc-newsletter strong,
.fc-newsletter span {
    display: block;
}

.fc-newsletter strong {
    font-size: 22px;
    margin-bottom: 4px;
}

.fc-newsletter form {
    display: flex;
}

.fc-newsletter input {
    border: 0;
    border-radius: 6px 0 0 6px;
    flex: 1;
    min-height: 50px;
    padding: 0 18px;
}

.fc-newsletter button {
    background: var(--fc-green);
    border-color: var(--fc-green);
    border-radius: 0 6px 6px 0;
    color: #fff;
}

.fc-page-hero {
    padding: 56px 0 24px;
}

.fc-page-hero h1 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.08;
    margin: 0 0 14px;
}

.fc-page-hero p {
    font-size: 19px;
    margin: 0;
    max-width: 780px;
}

.fc-back-link {
    color: #0d5ec4;
    display: inline-block;
    font-weight: 800;
    margin-bottom: 18px;
}

.fc-directory {
    padding-bottom: 40px;
}

.fc-directory-section {
    border-top: 1px solid var(--fc-line);
    padding: 22px 0;
}

.fc-directory-section h2 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 16px;
}

.fc-directory-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fc-directory-card {
    background: linear-gradient(145deg, #fff 0%, color-mix(in srgb, var(--accent, #2aa876) 8%, #fff) 100%);
    border-color: color-mix(in srgb, var(--accent, #2aa876) 24%, var(--fc-line));
    display: block;
    min-height: 126px;
    padding: 16px;
}

.fc-directory-card strong,
.fc-directory-card span {
    display: block;
}

.fc-directory-card strong {
    color: var(--fc-navy);
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 7px;
}

.fc-directory-card span {
    font-size: 13px;
    line-height: 1.45;
}

.fc-directory-card em {
    color: var(--accent, #0d5ec4);
    display: inline-block;
    font-size: 13px;
    font-style: normal;
    font-weight: 900;
    margin-top: 10px;
}

.fc-category-hero {
    border-bottom: 1px solid color-mix(in srgb, var(--accent, #2aa876) 20%, var(--fc-line));
}

.fc-category-page {
    padding-top: 26px;
}

.fc-category-calculator-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fc-category-calculator-card {
    background: linear-gradient(145deg, #fff 0%, color-mix(in srgb, var(--accent, #2aa876) 7%, #fff) 100%);
    border: 1px solid color-mix(in srgb, var(--accent, #2aa876) 22%, var(--fc-line));
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(19, 48, 89, .05);
    padding: 24px;
}

.fc-category-calculator-card h2 {
    color: var(--fc-navy);
    font-size: 21px;
    line-height: 1.25;
    margin: 16px 0 10px;
}

.fc-category-calculator-card p {
    color: var(--fc-muted);
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 20px;
}

.fc-filled-button {
    background: var(--accent, var(--fc-green));
    color: #fff;
}

.fc-calculator-shell {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(280px, 560px) 1fr;
    padding-bottom: 60px;
}

.fc-calculator-form {
    display: grid;
    gap: 18px;
    padding: 26px;
}

.fc-calculator-form label span {
    color: var(--fc-navy);
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
}

.fc-calculator-form input {
    border: 1px solid var(--fc-line);
    border-radius: 6px;
    font-size: 18px;
    min-height: 48px;
    padding: 0 14px;
    width: 100%;
}

.fc-calculator-form input::placeholder {
    color: #aebbc8;
    opacity: 1;
}

.fc-form-actions {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
}

.fc-calculator-form button {
    background: var(--fc-green);
    border-color: var(--fc-green);
    color: #fff;
    font-size: 16px;
    min-height: 52px;
}

.fc-calculator-form .fc-reset-button {
    background: #fff;
    border-color: var(--fc-line);
    color: var(--fc-navy);
}

.fc-result-panel {
    padding: 30px;
    position: sticky;
    top: 100px;
}

.fc-result-panel span {
    color: var(--fc-muted);
    display: block;
    font-weight: 800;
    margin-bottom: 12px;
}

.fc-result-panel strong {
    color: var(--fc-green);
    display: block;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1;
    margin-bottom: 18px;
}

.fc-result-breakdown {
    border-top: 1px solid var(--fc-line);
    display: grid;
    gap: 0;
    grid-template-columns: 1fr auto;
    margin: 22px 0 0;
    padding-top: 10px;
}

.fc-result-breakdown:empty {
    display: none;
}

.fc-result-breakdown dt,
.fc-result-breakdown dd {
    border-bottom: 1px solid rgba(213, 225, 221, .7);
    margin: 0;
    padding: 10px 0;
}

.fc-result-breakdown dt {
    color: var(--fc-muted);
    font-weight: 700;
}

.fc-result-breakdown dd {
    color: var(--fc-navy);
    font-weight: 900;
    padding-left: 18px;
    text-align: right;
}

.fc-calculator-content {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr 320px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 60px;
    width: min(1120px, calc(100% - clamp(36px, 10vw, 140px)));
}

.fc-calculator-content article,
.fc-calculator-content aside {
    background: linear-gradient(145deg, #fff 0%, #f7fbfa 100%);
    border: 1px solid var(--fc-line);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(19, 48, 89, .05);
    padding: 26px;
}

.fc-calculator-content h2 {
    color: var(--fc-navy);
    margin: 0 0 14px;
}

.fc-calculator-content p,
.fc-calculator-content span,
.fc-calculator-content li {
    color: var(--fc-muted);
    line-height: 1.65;
}

.fc-rich-content {
    display: grid;
    gap: 22px;
    margin-top: 26px;
}

.fc-rich-content section {
    border-top: 1px solid var(--fc-line);
    padding-top: 22px;
}

.fc-rich-content h3 {
    color: var(--fc-navy);
    font-size: 20px;
    margin: 0 0 10px;
}

.fc-rich-content ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

.fc-rich-content li {
    margin-bottom: 8px;
}

.fc-formula {
    background: #f3f8fb;
    border: 1px solid #d9e5f0;
    border-radius: 8px;
    color: var(--fc-navy);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 14px;
    font-weight: 800;
    overflow-wrap: anywhere;
    padding: 14px;
}

.fc-faq-list {
    display: grid;
    gap: 10px;
}

.fc-faq-list details {
    background: #fff;
    border: 1px solid var(--fc-line);
    border-radius: 8px;
    padding: 14px 16px;
}

.fc-faq-list summary {
    color: var(--fc-navy);
    cursor: pointer;
    font-weight: 900;
}

.fc-faq-list p {
    margin: 10px 0 0;
}

.fc-calculator-content aside strong {
    color: var(--fc-navy);
    display: block;
    margin-bottom: 8px;
}

.fc-calculator-content aside p {
    margin: 0 0 14px;
}

.fc-good-to-know {
    align-self: start;
}

.fc-good-to-know div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-top: 8px;
}

.fc-calculator-content aside a {
    color: #0d5ec4;
    display: inline-block;
    font-weight: 800;
    margin-top: 10px;
}

.fc-related-calculators {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 64px;
    width: min(1120px, calc(100% - clamp(36px, 10vw, 140px)));
}

.fc-related-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fc-footer {
    border-top: 1px solid var(--fc-line);
    color: var(--fc-muted);
    display: flex;
    justify-content: space-between;
    margin-top: 34px;
    padding: 28px 0 42px;
}

.fc-footer strong {
    color: var(--fc-navy);
}

.fc-footer span {
    display: block;
}

.fc-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
}

.fc-footer a {
    color: #0d5ec4;
    font-weight: 800;
}

.fc-about-page {
    margin-left: auto;
    margin-right: auto;
    max-width: 1120px;
    padding-bottom: 60px;
    width: calc(100% - clamp(36px, 10vw, 140px));
}

.fc-about-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr 320px;
}

.fc-about-grid article,
.fc-about-grid aside {
    background: linear-gradient(145deg, #fff 0%, #f5faf8 100%);
    border: 1px solid var(--fc-line);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(19, 48, 89, .05);
    padding: 28px;
}

.fc-about-grid h2 {
    color: var(--fc-navy);
    margin-top: 0;
}

.fc-about-grid p,
.fc-about-grid span {
    color: var(--fc-muted);
}

.fc-about-grid span {
    border-top: 1px solid var(--fc-line);
    display: block;
    padding: 12px 0;
}

.fc-about-grid aside strong {
    color: var(--fc-navy);
    display: block;
    margin-bottom: 12px;
}

.fc-about-grid aside a {
    background: var(--fc-green);
    border-radius: 6px;
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    margin-top: 10px;
    padding: 12px 18px;
}

.fc-legal-page {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    padding-bottom: 70px;
    width: calc(100% - clamp(36px, 10vw, 140px));
}

.fc-legal-page article {
    background: linear-gradient(145deg, #fff 0%, #f7fbfa 100%);
    border: 1px solid var(--fc-line);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(19, 48, 89, .05);
    padding: clamp(24px, 4vw, 38px);
}

.fc-legal-page h2 {
    color: var(--fc-navy);
    margin: 28px 0 10px;
}

.fc-legal-page h2:first-child {
    margin-top: 0;
}

.fc-legal-page p {
    color: var(--fc-muted);
    line-height: 1.7;
}

.fc-legal-page a {
    color: #0d5ec4;
    font-weight: 800;
}

.fc-contact-page {
    margin-left: auto;
    margin-right: auto;
    max-width: 1120px;
    padding-bottom: 60px;
    width: calc(100% - clamp(36px, 10vw, 140px));
}

.fc-contact-grid {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: 300px 1fr;
}

.fc-contact-grid aside,
.fc-contact-card {
    background: linear-gradient(145deg, #fff 0%, #f6fbff 100%);
    border: 1px solid var(--fc-line);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(21, 48, 86, .08);
    padding: clamp(24px, 4vw, 38px);
}

.fc-contact-grid aside strong {
    color: var(--fc-navy);
    display: block;
    font-size: 22px;
    margin-bottom: 14px;
}

.fc-contact-grid aside span {
    border-top: 1px solid var(--fc-line);
    color: var(--fc-muted);
    display: block;
    padding: 13px 0;
}

.fc-contact-card .wpcf7 form p {
    margin: 0 0 18px;
}

.fc-contact-card .wpcf7 label {
    color: var(--fc-navy);
    font-size: 14px;
    font-weight: 900;
}

.fc-contact-card .wpcf7 input[type="text"],
.fc-contact-card .wpcf7 input[type="email"],
.fc-contact-card .wpcf7 textarea {
    background: #fff;
    border: 1px solid #d9e5f0;
    border-radius: 8px;
    color: var(--fc-text);
    font-size: 16px;
    margin-top: 8px;
    outline: 0;
    padding: 12px 14px;
    transition: border-color .18s ease, box-shadow .18s ease;
    width: 100%;
}

.fc-contact-card .wpcf7 textarea {
    min-height: 150px;
    resize: vertical;
}

.fc-contact-card .wpcf7 input:focus,
.fc-contact-card .wpcf7 textarea:focus {
    border-color: color-mix(in srgb, var(--fc-green) 55%, var(--fc-line));
    box-shadow: 0 0 0 4px rgba(31, 157, 99, .1);
}

.fc-contact-card .wpcf7-submit {
    background: var(--fc-green);
    border: 1px solid var(--fc-green);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    min-height: 48px;
    padding: 12px 24px;
}

.fc-contact-card .wpcf7-response-output {
    border-radius: 8px;
    margin: 18px 0 0;
}

@media (max-width: 1100px) {
    .fc-hero,
    .fc-calculator-shell,
    .fc-calculator-content,
    .fc-newsletter {
        grid-template-columns: 1fr;
    }

    .fc-hero-visual {
        justify-self: start;
        max-width: 760px;
    }

    .fc-category-grid,
    .fc-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fc-article-grid,
    .fc-trust,
    .fc-category-calculator-grid,
    .fc-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fc-directory-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .fc-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        position: static;
    }

    .fc-logo-img {
        height: 46px;
    }

    .fc-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .fc-header-search {
        flex-basis: auto;
        width: 100%;
    }

    .fc-hero {
        min-height: auto;
        padding: 22px clamp(18px, 5vw, 70px) 16px;
    }

    .fc-hero h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .fc-hero p {
        font-size: 14px;
        margin-bottom: 0;
    }

    .fc-hero .fc-search,
    .fc-hero-visual {
        display: none;
    }

    .fc-article-grid,
    .fc-trust,
    .fc-directory-grid,
    .fc-category-calculator-grid,
    .fc-related-grid,
    .fc-about-grid,
    .fc-calculator-content,
    .fc-contact-grid {
        grid-template-columns: 1fr;
    }

    .fc-section {
        padding-top: 18px;
    }

    .fc-section-heading {
        margin-bottom: 18px;
    }

    .fc-section-heading h2,
    .fc-split-heading h2 {
        font-size: 23px;
    }

    .fc-category-grid,
    .fc-feature-grid {
        gap: 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fc-category-card {
        min-height: 112px;
        padding: 14px 12px 12px;
    }

    .fc-category-card h3,
    .fc-feature-card h3 {
        font-size: 15px;
        line-height: 1.22;
    }

    .fc-category-card h3 {
        margin-bottom: 8px;
    }

    .fc-category-card p,
    .fc-feature-card p {
        display: none;
    }

    .fc-category-card strong {
        font-size: 12px;
    }

    .fc-featured {
        margin-top: 18px;
        padding: 18px 12px 0;
    }

    .fc-split-heading {
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 16px;
    }

    .fc-feature-card {
        min-height: 150px;
        padding: 18px 12px 14px;
    }

    .fc-feature-card h3 {
        margin: 12px 0;
    }

    .fc-button {
        font-size: 12px;
        padding: 9px 10px;
        width: 100%;
    }

    .fc-trust div {
        border-bottom: 1px solid var(--fc-line);
        border-right: 0;
        padding: 14px 0;
    }

    .fc-trust div:last-child {
        border-bottom: 0;
    }

    .fc-newsletter form,
    .fc-footer {
        display: block;
    }

    .fc-newsletter input,
    .fc-newsletter button {
        border-radius: 6px;
        width: 100%;
    }

    .fc-newsletter button {
        margin-top: 10px;
    }
}
