:root {
    --navy: var(--t-color-ink-900, #0f172a);
    --teal: var(--t-color-accent, #0ea5e9);
    --text: var(--t-color-text, #0f172a);
    --muted: var(--t-color-text-muted, #64748b);
    --bg-light: var(--t-color-bg-soft, #f7f7f7);
    --white: var(--t-color-surface, #ffffff);
    --ease-out-strong: var(--t-ease-out, cubic-bezier(0.23, 1, 0.32, 1));
    --ease-in-out-strong: cubic-bezier(0.77, 0, 0.175, 1);
}

a { text-decoration: none; }
a:hover { text-decoration: none; }

/* ── Elementor kit typography calibration ──────────────────────────────────
   Overrides post-7.css (.custom_theme-kit-7 hN) with rem-based scale.
   Breakpoints mirror Elementor's own: 1366, 1024, 767.
   ────────────────────────────────────────────────────────────────────────── */
.custom_theme-kit-7 h1 { font-size: 3rem;    line-height: 1.25; }
.custom_theme-kit-7 h2 { font-size: var(--t-font-size-3xl, 2.25rem); line-height: var(--t-line-height-title, 1.3);  }
.custom_theme-kit-7 h3 { font-size: var(--t-font-size-2xl, 1.625rem); line-height: 1.35; }
.custom_theme-kit-7 h4 { font-size: var(--t-font-size-xl, 1.25rem); line-height: 1.4;  }
.custom_theme-kit-7 h5 { font-size: var(--t-font-size-lg, 1.125rem); line-height: 1.4; }
.custom_theme-kit-7 h6 { font-size: var(--t-font-size-base, 1rem); line-height: 1.5;  }

@media (max-width: 1366px) {
  .custom_theme-kit-7 h1 { font-size: 2.5rem;   }
  .custom_theme-kit-7 h2 { font-size: 1.875rem; }
  .custom_theme-kit-7 h3 { font-size: 1.375rem; }
}

@media (max-width: 1024px) {
  .custom_theme-kit-7 h1 { font-size: 2.125rem; }
  .custom_theme-kit-7 h2 { font-size: 1.625rem; }
  .custom_theme-kit-7 h3 { font-size: 1.25rem;  }
}

@media (max-width: 767px) {
  .custom_theme-kit-7 h1 { font-size: 1.875rem; }
  .custom_theme-kit-7 h2 { font-size: 1.375rem; }
  .custom_theme-kit-7 h3 { font-size: 1.125rem; }
}

/* ── Home hero calibration ── */
/* CTA: solid primary button */
.custom_theme-49 .custom_theme-element-ca86c7a .custom_theme-button,
.custom_theme-49 .custom_theme-element-576e8ba .custom_theme-button {
    display: inline-flex;
    align-items: center;
    padding: 14px var(--t-button-padding-x, 28px);
    background: var(--t-color-action, #2563eb) !important;
    color: var(--t-color-surface, #fff) !important;
    border: none !important;
    border-radius: var(--t-button-radius, 10px);
    font-size: var(--t-button-font-size, 1rem);
    font-weight: var(--t-button-font-weight, 500);
    text-decoration: none !important;
    box-shadow: var(--t-shadow-action, 0 4px 14px rgba(37, 99, 235, 0.35));
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.custom_theme-49 .custom_theme-element-ca86c7a .custom_theme-button:hover,
.custom_theme-49 .custom_theme-element-576e8ba .custom_theme-button:hover {
    background: var(--t-color-action-hover, #1d4ed8) !important;
    color: var(--t-color-surface, #fff) !important;
    transform: translateY(-2px);
    box-shadow: var(--t-shadow-action, 0 8px 24px rgba(37, 99, 235, 0.4));
}
/* Subheading: muted color to match site subtitle style */
.custom_theme-49 .custom_theme-element-742b094 .custom_theme-heading-title,
.custom_theme-49 .custom_theme-element-eea4948 .custom_theme-heading-title {
    color: var(--t-color-text-soft, #475569);
    font-weight: 500;
}
/* "How it Works" link: no underline */
.custom_theme-49 .custom_theme-element-9f7aa16 .custom_theme-icon-box-title a,
.custom_theme-49 .custom_theme-element-efa912d .custom_theme-icon-box-title a {
    text-decoration: none;
}

/* ── Newsletter subscribe modal ── */
.subscribe-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.subscribe-modal[hidden] { display: none; }
.subscribe-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(2px);
}
.subscribe-modal__box {
    position: relative;
    background: var(--t-card-bg, #fff);
    border-radius: var(--t-card-radius, 14px);
    padding: 36px 32px 30px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: var(--t-shadow-modal, 0 8px 40px rgba(15, 23, 42, 0.14));
    animation: modal-in 0.2s ease;
}
@keyframes modal-in {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.subscribe-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #94a3b8;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}
.subscribe-modal__close:hover { background: #f0f0f0; color: var(--text); }
.subscribe-modal__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.subscribe-modal__icon svg { width: 22px; height: 22px; }
.subscribe-modal .subscribe-modal__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.subscribe-modal__body {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 22px;
    max-width: 28ch;
    margin-left: auto;
    margin-right: auto;
}
.subscribe-modal__btn {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 28px;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
}
.subscribe-modal__btn:hover { background: #1d4ed8; }

* {
    box-sizing: border-box;
}

/* Global button reset — neutralises #c36 defaults from reset.css / main.css */
button,
[type="button"],
[type="submit"],
[type="reset"] {
    border: none;
    background: transparent;
    color: inherit;
}

button:hover,
button:focus,
button:active,
[type="button"]:hover,
[type="button"]:focus,
[type="button"]:active,
[type="submit"]:hover,
[type="submit"]:focus,
[type="submit"]:active,
[type="reset"]:hover,
[type="reset"]:focus,
[type="reset"]:active {
    background-color: transparent;
    color: inherit;
    text-decoration: none;
}

body {
    margin: 0;
    font-family: var(--t-font-body, Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);
    color: var(--text);
    line-height: var(--t-line-height-body, 1.5);
}

/* Blog detail pages: never reserve sticky spacer space in content flow */
body.blog-article-page .custom_theme-sticky__spacer {
    display: none !important;
    height: 0 !important;
}

.container {
    width: min(1140px, 92%);
    margin: 0 auto;
}

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--t-color-border, #e5e5e5);
    position: sticky;
    top: 0;
    z-index: 20;
    max-width: 100% !important;
    width: 100% !important;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    gap: 20px;
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 150px; height: auto; display: block; }

/* ── Primary nav ── */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 7px 12px;
    border-radius: var(--t-radius-sm, 8px);
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.nav-link:hover { background: #F7F7F7; color: var(--text); }
.nav-link.is-active { color: var(--teal); }

/* Button-reset for dropdown triggers */
.nav-link-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.nav-chevron {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    color: var(--muted);
}

/* ── Dropdowns ── */
.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--t-color-surface, #fff);
    border: 1px solid var(--t-color-border, #e5e5e5);
    border-radius: var(--t-radius-sm, 8px);
    min-width: 200px;
    padding: 8px;
    box-shadow: var(--t-shadow-dropdown, 0 8px 32px rgba(15, 23, 42, 0.1));
    /* hidden by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
    z-index: 100;
}

/* Invisible bridge fills the gap so hover doesn't break mid-move */
.dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

/* Open state — CSS hover (pointer devices) */
@media (hover: hover) {
    .has-dropdown:hover > .dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition: opacity 0.15s ease, transform 0.15s ease;
    }
    .has-dropdown:hover .nav-chevron { transform: rotate(180deg); }
}

/* Open state — JS-controlled (keyboard / touch) */
.has-dropdown.is-open > .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.15s ease, transform 0.15s ease;
}
.has-dropdown.is-open .nav-chevron { transform: rotate(180deg); }
.has-dropdown.is-open .nav-link-btn[aria-expanded="true"] { background: #F7F7F7; color: var(--text); }

/* Simple dropdown items */
.dropdown-item {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.12s;
    white-space: nowrap;
}
.dropdown-item:hover { background: #F7F7F7; color: var(--text); }

/* Mega dropdown — 2-col grid */
.dropdown--mega {
    min-width: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    padding: 10px;
}
.dropdown--single {
    grid-template-columns: 1fr;
    min-width: 280px;
}

/* Feature items inside mega dropdown */
.nav-feat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 10px;
    border-radius: var(--t-radius-sm, 8px);
    text-decoration: none;
    color: var(--text);
    transition: background 0.12s;
}
.nav-feat:hover { background: #f7f7f7; }

.nav-feat__icon {
    width: 42px;
    height: 42px;
    border-radius: var(--t-radius-sm, 8px);
    background: var(--ic, #94a3b8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.nav-feat__icon svg { width: 24px; height: 24px; fill: #fff; }

.nav-feat__text { display: flex; flex-direction: column; gap: 2px; }
.nav-feat__title { font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.3; }
.nav-feat__desc { font-size: 14px; color: var(--muted); line-height: 1.4; white-space: nowrap; }

/* ── CTAs ── */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.signin-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 7px 12px;
    border-radius: var(--t-radius-sm, 8px);
    transition: background 0.15s;
    white-space: nowrap;
}
.signin-link:hover { background: #F7F7F7; }

.btn {
    display: inline-block;
    border-radius: var(--t-button-radius, 10px);
    padding: 9px 16px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
    transition: background 0.15s, transform 0.15s;
}
.btn-primary,
.btn.btn-primary { background: var(--t-color-action, #2563eb); color: var(--t-color-surface, #fff); }
.btn-primary:hover,
.btn.btn-primary:hover { background: var(--t-color-action-hover, #1d4ed8); color: var(--t-color-surface, #fff); transform: translateY(-1px); }

/* ── Mobile toggle ── */
.mobile-nav-toggle {
    display: none;
    background: #fff;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    padding: 6px;
    color: #0f172a !important;
    border-radius: 10px;
    line-height: 0;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    position: relative;
    align-items: center;
    justify-content: center;
}
.mobile-nav-toggle:hover { background: #F7F7F7; }
.mobile-nav-toggle svg {
    width: 22px;
    height: 22px;
    display: block;
    position: absolute;
    inset: 0;
    margin: auto;
}
.mobile-nav-toggle .icon-close { display: none; color: #0f172a; }
.mobile-nav-toggle .icon-menu path,
.mobile-nav-toggle .icon-close path {
    stroke: #0f172a !important;
}
.mobile-nav-toggle[aria-expanded="true"] {
    background: #fff;
    color: #0f172a !important;
    border-color: #cbd5e1;
}
.mobile-nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.mobile-nav-toggle[aria-expanded="true"] .icon-close {
    display: block;
    color: #0f172a !important;
}

.hero {
    background: linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
    padding: 70px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 14px;
}

h1 { font-size: 44px; }
h2 { font-size: 32px; }
h3 { font-size: 22px; }

.hero-image {
    width: 100%;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
}

.section {
    padding: 64px 0;
    background: var(--white);
}

.section.light {
    background: var(--bg-light);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 10px;
}

.feature-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.card,
.blog-card {
    display: block;
    background: var(--t-card-bg, #fff);
    border: var(--t-card-border, 1px solid #e5e5e5);
    border-radius: var(--t-card-radius, 12px);
    padding: var(--t-card-padding, 18px);
    text-decoration: none;
    color: var(--text);
}

.blog-card {
    padding: 0;
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card-body {
    padding: 16px;
}

.text-link {
    color: var(--teal);
    font-weight: 700;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.newsletter-form input {
    flex: 1;
    padding: 11px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
}

.small-note {
    color: var(--muted);
    font-size: 14px;
}

.cta-strip {
    background: var(--navy);
    color: #fff;
}

.site-footer {
    background: #000;
    color: #94a3b8;
    padding: 64px 0 0;
    font-size: 1.025rem;
    max-width: 100% !important;
    width: 100% !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
    gap: 40px 32px;
    padding: 0 100px 48px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo {
    width: 140px;
    display: block;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 0.975rem;
    line-height: 1.6;
    margin: 0 0 20px;
    max-width: 240px;
}

.footer-social-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    margin: 0 0 10px;
}

.footer-col-heading {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 16px;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.15s;
    line-height: 1.4;
}

.footer-col a:hover {
    color: var(--teal);
}

.site-footer a {
    color: #94a3b8;
    text-decoration: none;
}

.social-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #111;
    border: 1px solid #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
    flex-shrink: 0;
}

.social-link:hover {
    background: var(--teal);
    border-color: var(--teal);
}

.social-link svg {
    width: 14px;
    height: 14px;
    fill: #94a3b8;
    transition: fill 0.15s;
    display: block;
}

.social-link:hover svg {
    fill: #fff;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 20px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-copyright,
.footer-built {
    margin: 0;
    color: #475569;
    font-size: 0.925rem;
}

/* Keep footer colors consistent with home page on blog pages */
.blog-inner-page .site-footer,
.blog-article-page .site-footer {
    color: #94a3b8;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.blog-inner-page .site-footer a,
.blog-article-page .site-footer a {
    color: #94a3b8;
}

.blog-inner-page .footer-col-heading,
.blog-article-page .footer-col-heading {
    color: #fff;
}

.blog-inner-page .footer-col a:hover,
.blog-article-page .footer-col a:hover {
    color: var(--teal);
}

.blog-inner-page .footer-tagline,
.blog-article-page .footer-tagline,
.blog-inner-page .footer-social-label,
.blog-article-page .footer-social-label,
.blog-inner-page .footer-copyright,
.blog-article-page .footer-copyright,
.blog-inner-page .footer-built,
.blog-article-page .footer-built {
    color: #64748b;
}

/* Nav dropdown panels — wide enough so description subtitles fit on one line */
.custom_theme-element-1c880f2,
.custom_theme-element-1462044 {
    min-width: 340px !important;
}

/* ── About page ──────────────────────────────────────────── */

.page-about .site-main,
.page-pricing .site-main,
.privacy-policy-page-body .site-main {
    max-width: 100% !important;
    width: 100% !important;
}

.about-hero {
    background: #F7F7F7;
    color: var(--navy);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Large tilted rectangle, top-right, partially off-screen */
.about-hero::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -80px;
    width: 320px;
    height: 180px;
    border: 2px solid rgba(15, 23, 42, 0.08);
    border-radius: 20px;
    transform: rotate(20deg);
    pointer-events: none;
}

/* Smaller tilted rectangle, bottom-left, different angle */
.about-hero::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -60px;
    width: 220px;
    height: 120px;
    border: 2px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    transform: rotate(-14deg);
    pointer-events: none;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
}

.about-eyebrow {
    display: inline-block;
    background: var(--t-color-surface, #fff);
    color: var(--t-color-blue-500, #2b70e4);
    border: 1.5px solid #bfdbfe;
    border-radius: var(--t-radius-pill, 100px);
    padding: 5px 16px;
    box-shadow: 0 1px 4px rgba(43, 112, 228, 0.12);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.about-eyebrow--dark {
    background: #fff;
    color: #0ea5e9;
    border-color: #bae6fd;
    box-shadow: 0 1px 4px rgba(14, 165, 233, 0.12);
}

.about-hero .about-hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px;
    color: var(--navy);
}

.about-hero .about-hero-sub {
    font-size: 1.125rem;
    color: #475569;
    margin: 0 auto;
    max-width: 900px;
    line-height: 1.6;
}

.about-story {
    padding: 80px 0;
    background: #fff;
}

.about-story-inner {
    max-width: 760px;
    margin: 0 auto;
}

.about-lead {
    position: relative;
    padding-left: 28px;
    border-left: 3px solid var(--teal);
    margin-bottom: 36px;
}

.about-quote-mark {
    display: block;
    width: 32px;
    margin-bottom: 12px;
    opacity: 0.4;
}

.about-quote-mark img {
    width: 100%;
}

.about-lead p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #1e293b;
    margin: 0;
    font-weight: 500;
}

.about-body p {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 20px;
}

.about-body p:last-child {
    margin-bottom: 0;
}

.about-stats {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.about-stats-heading {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text);
    margin: 0 auto 56px;
    max-width: 600px;
    line-height: 1.3;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-stat-card {
    background: var(--t-card-bg, #fff);
    border-radius: var(--t-card-radius, 12px);
    padding: 36px 24px;
    border: var(--t-card-border, 1px solid #e5e5e5);
    transition: box-shadow 0.2s, transform 0.2s;
}

.about-stat-card:hover {
    box-shadow: 0 8px 32px rgba(15,23,42,0.08);
    transform: translateY(-2px);
}

.about-stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.about-stat-prefix,
.about-stat-suffix {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--teal);
}

.about-stat-label {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    font-weight: 500;
}

.about-cta {
    background-color: #2B70E4;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    text-align: center;
}

/* Concentric rings — top right */
.about-cta::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border: 2px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    top: -160px;
    right: -80px;
    box-shadow:
        0 0 0 56px rgba(255, 255, 255, 0.07),
        0 0 0 112px rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

/* Rotated square (diamond) — bottom left */
.about-cta::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    transform: rotate(45deg);
    bottom: -110px;
    left: 10%;
    pointer-events: none;
}

.about-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
}

.about-cta .about-cta-title {
    font-size: clamp(1.3rem, 2.4vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
    white-space: nowrap;
}

.about-cta .about-cta-title br {
    display: none;
}

@media (max-width: 1024px) {
    .about-cta .about-cta-title {
        white-space: normal;
    }

    .about-cta .about-cta-title br {
        display: inline;
    }
}

.about-cta-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin: 0 0 32px;
    line-height: 1.6;
}

.about-cta-btn {
    display: inline-block;
    background: #fff;
    color: #1e3a8a !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.about-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.about-cta--coral { background-color: #E84E38; }
.about-cta--coral .about-cta-btn { color: #7f1d1d !important; }

.about-cta--green { background-color: #00CC6D; }
.about-cta--green .about-cta-btn { color: #065f46 !important; }

.about-cta--navy { background-color: #0f172a; }
.about-cta--navy .about-cta-btn { color: #1e3a8a !important; }

.about-cta--purple { background-color: #7c3aed; }
.about-cta--purple .about-cta-btn { color: #4c1d95 !important; }

.about-cta--orange { background-color: #f97316; }
.about-cta--orange .about-cta-btn { color: #7c2d12 !important; }

.about-cta--yellow { background-color: #f7d101; }
.about-cta--yellow .about-cta-title,
.about-cta--yellow .about-cta-sub { color: rgba(0, 0, 0, 0.8); }
.about-cta--yellow .about-cta-sub { color: rgba(0, 0, 0, 0.6); }
.about-cta--yellow .about-cta-btn { color: #713f12 !important; }

@media (min-width: 768px) and (max-width: 1024px) {
    .page-about .container,
    .page-pricing .container,
    .privacy-policy-page-body .container {
        width: min(100% - 40px, 960px);
    }

    .page-about .about-hero-inner,
    .page-about .about-stats > .container,
    .page-about .about-cta-inner,
    .page-pricing .pricing-plans > .container,
    .page-pricing .pricing-faq-inner,
    .page-pricing .about-cta-inner {
        max-width: min(100% - 40px, 960px);
    }

    .page-about .about-story-inner {
        max-width: min(100% - 40px, 780px);
    }

    .page-pricing .pricing-hero-inner {
        max-width: min(100% - 40px, 820px);
    }

    .page-pricing .pricing-hero-sub {
        max-width: 68ch;
    }

    .page-pricing .pricing-cards {
        gap: 18px;
    }
}

/* ── Careers page ────────────────────────────────────────── */

.page-careers .site-main {
    max-width: 100% !important;
    width: 100% !important;
}

.careers-hero {
    background: #F7F7F7;
    color: var(--navy);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Large diamond, right side */
.careers-hero::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -90px;
    transform: translateY(-50%) rotate(45deg);
    width: 320px;
    height: 320px;
    border: 2px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    pointer-events: none;
}

/* Small diamond, top-left */
.careers-hero::after {
    content: "";
    position: absolute;
    top: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border: 2px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    transform: rotate(45deg);
    pointer-events: none;
}

.careers-hero-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.careers-hero .careers-hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px;
    color: var(--navy);
}

.careers-hero .careers-hero-sub {
    font-size: 1.1rem;
    color: #475569;
    margin: 0;
    line-height: 1.7;
}

.careers-values {
    padding: 80px 0;
    background: #fff;
}

.careers-section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    text-align: center;
    margin: 0 0 40px;
}

.careers-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.careers-value-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 36px 28px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.careers-value-card:hover {
    box-shadow: 0 8px 32px rgba(15,23,42,0.08);
    transform: translateY(-2px);
}

.careers-value-icon {
    width: 44px;
    height: 44px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--teal);
}

.careers-value-icon svg {
    width: 22px;
    height: 22px;
}

.careers-value-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
}

.careers-value-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.careers-contact {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.careers-contact-inner {
    max-width: 580px;
    margin: 0 auto;
}

.careers-contact-badge {
    width: 56px;
    height: 56px;
    background: var(--teal);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: #fff;
}

.careers-contact-badge svg {
    width: 26px;
    height: 26px;
}

.careers-contact-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 16px;
    line-height: 1.25;
}

.careers-contact-body {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 32px;
}

.careers-contact .careers-contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
    margin-bottom: 20px;
}

.careers-contact .careers-contact-email:hover {
    background: #1e293b;
    color: #fff;
    transform: translateY(-1px);
}

.careers-contact-email svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.careers-contact-note {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .page-careers .container {
        width: min(100% - 40px, 960px);
    }

    .page-careers .careers-hero-inner {
        max-width: min(100% - 40px, 860px);
    }

    .page-careers .careers-contact-inner {
        max-width: min(100% - 40px, 760px);
    }

    .page-careers .careers-values-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .page-careers .careers-value-card {
        padding: 28px 20px;
    }
}

.blog-detail {
    max-width: 860px;
}

.rich-body p {
    margin: 0 0 1rem;
}

@media (max-width: 900px) {
    .hero-grid,
    .feature-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .careers-values-grid {
        grid-template-columns: 1fr;
    }

    .careers-hero,
    .careers-values,
    .careers-contact {
        padding: 60px 0;
    }

    .about-hero {
        padding: 70px 0 56px;
    }

    .about-story,
    .about-stats,
    .about-cta {
        padding: 56px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 32px 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-bottom {
        padding: 18px 32px;
    }

    .primary-nav,
    .nav-cta {
        display: none;
    }

    .mobile-nav-toggle { display: flex; }

    /* Mobile nav drawer */
    .primary-nav.is-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        padding: 12px 16px 40px;
        overflow-y: auto;
        z-index: 19;
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    }

    .primary-nav.is-open .nav-link,
    .primary-nav.is-open .nav-link-btn {
        font-size: 17px;
        padding: 12px 8px;
        border-radius: 0;
        border-bottom: 1px solid #F7F7F7;
        justify-content: space-between;
        width: 100%;
    }

    /* Dropdowns become accordion-style in mobile */
    .primary-nav.is-open .dropdown,
    .primary-nav.is-open .dropdown--mega {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        transition: none !important;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        min-width: 0;
        display: none;
        background: transparent;
        grid-template-columns: 1fr;
    }

    .primary-nav.is-open .has-dropdown.is-open > .dropdown,
    .primary-nav.is-open .has-dropdown.is-open > .dropdown--mega {
        display: flex;
        flex-direction: column;
    }

    /* Turn off CSS :hover opens inside drawer */
    .primary-nav.is-open .has-dropdown:hover > .dropdown,
    .primary-nav.is-open .has-dropdown:hover > .dropdown--mega {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .primary-nav.is-open .has-dropdown.is-open:hover > .dropdown,
    .primary-nav.is-open .has-dropdown.is-open:hover > .dropdown--mega {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .primary-nav.is-open .nav-feat {
        padding: 10px 8px 10px 16px;
        border-bottom: 1px solid #f7f7f7;
    }
    .primary-nav.is-open .nav-feat__icon { width: 28px; height: 28px; border-radius: 6px; }
    .primary-nav.is-open .nav-feat__icon svg { width: 14px; height: 14px; }
    .primary-nav.is-open .dropdown-item { padding: 10px 8px 10px 20px; border-bottom: 1px solid #f7f7f7; }

    /* Body lock when drawer open */
    body.nav-open { overflow: hidden; }
}

@media (max-width: 540px) {
    .footer-grid {
        grid-template-columns: 1fr;
        padding: 0 16px 32px;
    }

    .footer-bottom {
        padding: 16px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ================================================
   PRICING PAGE
   ================================================ */

.pricing-hero {
    background: #F7F7F7;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e5e5;
}

/* Dot grid, bottom-right */
.pricing-hero::before {
    content: "";
    position: absolute;
    bottom: 20px;
    right: 40px;
    width: 180px;
    height: 140px;
    background-image: radial-gradient(circle, rgba(15, 23, 42, 0.18) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    pointer-events: none;
}

/* Wide rotated rectangle, top-left */
.pricing-hero::after {
    content: "";
    position: absolute;
    top: -30px;
    left: -60px;
    width: 220px;
    height: 110px;
    border: 2px solid rgba(15, 23, 42, 0.07);
    border-radius: 16px;
    transform: rotate(-18deg);
    pointer-events: none;
}

.pricing-hero-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal, #0ea5e9);
    margin: 0 0 16px;
}

.pricing-hero .pricing-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin: 0 0 20px;
}

.pricing-hero-sub {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 560px;
}

/* Plans */
.pricing-plans {
    padding: 80px 0 96px;
    background: var(--bg-white, #ffffff);
}

.pricing-badge-wrap {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-all-features-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid #bae6fd;
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 36px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.09);
    transform: translateY(-4px);
}

.pricing-card--featured {
    border-color: var(--teal, #0ea5e9);
    border-width: 2px;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.14);
}

.pricing-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--teal, #0ea5e9);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 5px 16px;
    white-space: nowrap;
}

.pricing-card-illustration {
    width: 96px;
    height: 96px;
    margin-bottom: 20px;
}

.pricing-card-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pricing-card-tier {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal, #0ea5e9);
    margin: 0 0 12px;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 6px;
}

.pricing-currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    align-self: flex-start;
    margin-top: 6px;
}

.pricing-amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-card-period {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0 0 20px;
}

.pricing-card-limit {
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    background: #F7F7F7;
    border-radius: 6px;
    padding: 6px 14px;
    margin: 0 0 28px;
}

.pricing-card-btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    background: var(--navy, #0f172a);
    color: #fff !important;
    transition: background 0.2s;
    margin-top: auto;
}

.pricing-card--featured .pricing-card-btn,
.pricing-card:hover .pricing-card-btn {
    background: var(--teal, #0ea5e9);
}

/* FAQ */
.pricing-faq {
    padding: 80px 0;
    background: var(--bg-white, #ffffff);
}

.pricing-faq-inner {
    max-width: 720px;
    margin: 0 auto;
}

.pricing-faq .pricing-faq-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin: 0 0 48px;
}

.pricing-faq-list {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
}

.pricing-faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.pricing-faq-item:last-child {
    border-bottom: none;
}

.pricing-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 0.975rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.15s;
}

.pricing-faq-question:hover {
    background: #f7f7f7;
}

.pricing-faq-question::-webkit-details-marker {
    display: none;
}

.pricing-faq-icon {
    flex-shrink: 0;
    color: #64748b;
    transition: transform 0.25s;
    display: flex;
}

.pricing-faq-item[open] > .pricing-faq-question .pricing-faq-icon {
    transform: rotate(45deg);
    color: var(--teal, #0ea5e9);
}

.pricing-faq-answer {
    padding: 0 24px 20px;
    font-size: 1rem;
    color: #475569;
    line-height: 1.75;
    margin: 0;
}

/* Pricing CTA */
.pricing-cta {
    background-color: #00CC6D;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    position: relative;
    overflow: hidden;
    padding: 88px 0;
    text-align: center;
}

/* Concentric rings — top right */
.pricing-cta::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border: 2px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    top: -160px;
    right: -80px;
    box-shadow:
        0 0 0 56px rgba(255, 255, 255, 0.07),
        0 0 0 112px rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

/* Rotated square (diamond) — bottom left */
.pricing-cta::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    transform: rotate(45deg);
    bottom: -110px;
    left: 10%;
    pointer-events: none;
}

.pricing-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
}

.pricing-cta .pricing-cta-title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    white-space: nowrap;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.2;
}

.pricing-cta-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin: 0 0 36px;
    line-height: 1.6;
}

.pricing-cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #fff;
    color: #065f46 !important;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.pricing-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* Pricing responsive */
@media (max-width: 960px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-hero {
        padding: 72px 0 60px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-faq-question {
        padding: 18px 20px;
    }

    .pricing-faq-answer {
        padding: 0 20px 18px;
    }

    .pricing-cta {
        padding: 64px 0;
    }
}

/* ── Compare page ── */
.compare-hero {
    background: #F7F7F7;
    padding: 96px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.compare-hero::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%) rotate(15deg);
    width: 280px;
    height: 400px;
    border: 2px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    pointer-events: none;
}

.compare-hero::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 40px;
    width: 160px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(15, 23, 42, 0.16) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    pointer-events: none;
}

.compare-hero-inner {
    max-width: 760px;
    position: relative;
    z-index: 1;
}

.compare-hero-eyebrow {
    display: inline-block;
    background: #fff;
    color: #2B70E4;
    border: 1.5px solid #bfdbfe;
    border-radius: 100px;
    padding: 5px 16px;
    box-shadow: 0 1px 4px rgba(43, 112, 228, 0.12);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.compare-hero .compare-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin: 0 0 20px;
}

.compare-hero-sub {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
    margin-inline: auto;
}

/* ── Compare table ── */
.compare-table-section {
    padding: 80px 0 64px;
    background: #fff;
}

.compare-table-wrap {
    overflow: hidden;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 24px rgba(15,23,42,0.06);
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 1rem;
    min-width: 700px;
}
.compare-table td, .compare-table th { border: none; }

.compare-th {
    padding: 18px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: #94a3b8;
    background: var(--navy);
    border-bottom: 2px solid rgba(255,255,255,0.08);
    white-space: nowrap;
}

.compare-th--feature {
    text-align: left;
    width: 28%;
    color: #e5e5e5;
}

.compare-th--tabernacle {
    background: var(--navy);
    color: #00CC6D;
}

.compare-th-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #00CC6D;
}

/* Round top corners */
.compare-table thead tr th:first-child { border-radius: 15px 0 0 0; }
.compare-table thead tr th:last-child  { border-radius: 0 15px 0 0; }

/* Round bottom corners */
.compare-table tbody tr:last-child td:first-child { border-radius: 0 0 0 15px; }
.compare-table tbody tr:last-child td:last-child  { border-radius: 0 0 15px 0; }

.compare-td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #F7F7F7;
    vertical-align: middle;
    font-size: 1rem;
    color: var(--muted);
}

.compare-td--feature {
    text-align: left;
    font-weight: 600;
    color: var(--text);
}

.compare-td--tabernacle {
    background: #f0fdf6;
}

.compare-table tbody tr:last-child .compare-td {
    border-bottom: none;
}

.compare-table tbody tr:hover .compare-td {
    background: #f7f7f7;
}

.compare-table tbody tr:hover .compare-td--tabernacle {
    background: #dcfce7;
}

.compare-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #00CC6D;
    color: #fff;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.compare-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #fee2e2;
    color: #e84e38;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.compare-coming {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #fef9c3;
    color: #854d0e;
    border-radius: 100px;
    padding: 3px 10px;
    white-space: nowrap;
}

/* ── Compare promo ── */
.compare-promo {
    padding: 80px 0 88px;
    background: #fff;
}

.compare-promo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.compare-promo-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00CC6D;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 100px;
    padding: 4px 14px;
    margin-bottom: 20px;
}

.compare-promo-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin: 0 0 20px;
}

.compare-promo-body {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 20px;
}

.compare-promo-lead {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 14px;
}

.compare-promo-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compare-promo-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border: 1.5px solid #e5e5e5;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.compare-promo-links a:hover {
    border-color: #00CC6D;
    box-shadow: 0 4px 16px rgba(0, 204, 109, 0.14);
    transform: translateY(-2px);
    color: var(--text);
    text-decoration: none;
}

.compare-promo-links a::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00CC6D;
    flex-shrink: 0;
}

.compare-promo-links a::after {
    content: "→";
    font-size: 1.1rem;
    color: var(--muted);
    flex-shrink: 0;
    transition: transform 0.18s, color 0.18s;
}

.compare-promo-links a:hover::after {
    transform: translateX(4px);
    color: #00CC6D;
}

.compare-promo-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .compare-promo-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .compare-promo-image {
        order: -1;
    }
}

@media (max-width: 640px) {
    .compare-hero {
        padding: 72px 0 60px;
    }

    .compare-table-section {
        padding: 56px 0 40px;
    }

    .compare-promo {
        padding: 60px 0 64px;
    }
}

/* ── VS comparison pages ── */
.vs-hero {
    background: var(--navy);
    padding: 96px 0 80px;
    text-align: center;
}

.vs-hero-inner {
    max-width: 720px;
}

.vs-hero-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00CC6D;
    margin: 0 0 16px;
}

.vs-hero .vs-hero-title {
    font-size: clamp(1.9rem, 5vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 20px;
}

.vs-hero-sub {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.75;
    margin: 0 0 36px;
    max-width: 620px;
    margin-inline: auto;
    margin-bottom: 36px;
}

.vs-hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.vs-badge {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 8px 22px;
    border-radius: 100px;
}

.vs-badge--taber {
    background: #00CC6D;
    color: #fff;
}

.vs-badge--other {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.25);
}

.vs-badge-vs {
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Light hero variant */
.vs-hero--light {
    background-color: #F7F7F7;
    position: relative;
    overflow: hidden;
}

/* Breeze: tall tilted rectangle right + small diamond bottom-left */
.vs-hero--breeze::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -70px;
    transform: translateY(-50%) rotate(12deg);
    width: 260px;
    height: 420px;
    border: 2px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    pointer-events: none;
}
.vs-hero--breeze::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    transform: rotate(45deg);
    pointer-events: none;
}

/* Flockbase: large diamond right-center + dot grid top-left */
.vs-hero--flockbase::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -90px;
    transform: translateY(-50%) rotate(45deg);
    width: 340px;
    height: 340px;
    border: 2px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    pointer-events: none;
}
.vs-hero--flockbase::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 40px;
    width: 160px;
    height: 130px;
    background-image: radial-gradient(circle, rgba(15, 23, 42, 0.18) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    pointer-events: none;
}

/* Servant: wide rectangle top-right + narrower rectangle bottom-left, crossing angles */
.vs-hero--servant::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -60px;
    width: 300px;
    height: 140px;
    border: 2px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    transform: rotate(-16deg);
    pointer-events: none;
}
.vs-hero--servant::after {
    content: "";
    position: absolute;
    bottom: -35px;
    left: -50px;
    width: 220px;
    height: 100px;
    border: 2px solid rgba(15, 23, 42, 0.06);
    border-radius: 14px;
    transform: rotate(12deg);
    pointer-events: none;
}

.vs-hero--light .vs-hero-inner {
    position: relative;
    z-index: 1;
}

.vs-hero--light .vs-hero-eyebrow {
    display: inline-block;
    background: #fff;
    color: #2B70E4;
    border: 1.5px solid #bfdbfe;
    border-radius: 100px;
    padding: 5px 16px;
    box-shadow: 0 1px 4px rgba(43, 112, 228, 0.12);
    letter-spacing: 0.06em;
}

.vs-hero--light .vs-hero .vs-hero-title,
.vs-hero--light .vs-hero-title {
    color: var(--navy);
}

.vs-hero--light .vs-hero-sub {
    color: #475569;
}

.vs-hero--light .vs-badge--taber {
    background: #00CC6D;
    color: #fff;
}

.vs-hero--light .vs-badge--other {
    background: rgba(43, 112, 228, 0.1);
    color: var(--navy);
    border-color: rgba(43, 112, 228, 0.2);
}

.vs-hero--light .vs-badge-vs {
    color: #94a3b8;
}

/* Breakdown section */
.vs-breakdown {
    padding: 80px 0 72px;
    background: #f7f7f7;
}

.vs-section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #00CC6D;
    margin: 0 0 10px;
}

.vs-section-title {
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 48px;
    line-height: 1.2;
}

.custom_theme-kit-7 .vs-section-title {
    font-size: 2rem;
}

.vs-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vs-card {
    border: 1.5px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    background: #fafafa;
}

.vs-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.vs-card-icon svg {
    width: 24px;
    height: 24px;
}

.vs-card-icon--finance { background: #ecfdf5; color: #00CC6D; }
.vs-card-icon--members { background: #eff6ff; color: #2B70E4; }
.vs-card-icon--support { background: #faf5ff; color: #7c3aed; }
.vs-card-icon--volunteer { background: #fff7ed; color: #f97316; }

.vs-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 20px;
}

.vs-card-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vs-card-col {
    padding: 20px;
    border-radius: 12px;
}

.vs-card-col--taber {
    background: #f0fdf6;
    border: 1px solid #bbf7d0;
}

.vs-card-col--other {
    background: #fef9f9;
    border: 1px solid #fecaca;
}

.vs-col-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 3px 10px;
    margin-bottom: 14px;
}

.vs-col-label--taber {
    background: #00CC6D;
    color: #fff;
}

.vs-col-label--other {
    background: #e84e38;
    color: #fff;
}

.vs-card-col ul {
    margin: 0;
    padding: 0 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vs-card-col li {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.5;
}

.vs-card-col--taber li { color: #166534; }
.vs-card-col--other li { color: #7f1d1d; }

/* VS table */
.vs-table-section {
    padding: 80px 0 72px;
    background: #fff;
}

.vs-table-wrap {
    overflow: hidden;
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 24px rgba(15,23,42,0.06);
    background: #fff;
}

.vs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 1rem;
    min-width: 480px;
}
.vs-table td, .vs-table th { border: none; }

.vs-th {
    padding: 18px 24px;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: #e4e4e4;
    background: var(--navy);
    border-bottom: 2px solid rgba(255,255,255,0.08);
    white-space: nowrap;
}

.vs-th--feature {
    text-align: left;
    width: 50%;
    color: #e5e5e5;
}

.vs-th--taber {
    background: var(--navy);
    color: #00CC6D;
}

/* Round top corners via first-row cells */
.vs-table thead tr th:first-child { border-radius: 15px 0 0 0; }
.vs-table thead tr th:last-child  { border-radius: 0 15px 0 0; }

/* Round bottom corners via last-row cells */
.vs-table tbody tr:last-child td:first-child { border-radius: 0 0 0 15px; }
.vs-table tbody tr:last-child td:last-child  { border-radius: 0 0 15px 0; }

.vs-td {
    padding: 15px 24px;
    text-align: center;
    border-bottom: 1px solid #F7F7F7;
    vertical-align: middle;
    color: var(--muted);
}

.vs-td--feature {
    text-align: left;
    font-weight: 600;
    color: var(--text);
}

.vs-td--taber {
    background: #f0fdf6;
}

.vs-table tbody tr:last-child .vs-td {
    border-bottom: none;
}

.vs-table tbody tr:hover .vs-td { background: #f7f7f7; }
.vs-table tbody tr:hover .vs-td--taber { background: #dcfce7; }

/* More comparisons */
.vs-more {
    padding: 72px 0 80px;
    background: #fff;
}

.vs-more-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.vs-more-title {
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 12px;
    line-height: 1.2;
}

.custom_theme-kit-7 .vs-more-title {
    font-size: 2rem;
}

.vs-more-sub {
    font-size: 1rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.vs-more-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vs-more-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    background: #f7f7f7;
    border: 1.5px solid #e5e5e5;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s, background 0.18s;
}

.vs-more-link:hover {
    border-color: #00CC6D;
    background: #f0fdf6;
    box-shadow: 0 4px 16px rgba(0, 204, 109, 0.12);
    transform: translateY(-2px);
    color: var(--navy);
    text-decoration: none;
}

.vs-more-arrow {
    color: var(--muted);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.18s, color 0.18s;
}

.vs-more-link:hover .vs-more-arrow {
    transform: translateX(4px);
    color: #00CC6D;
}

@media (max-width: 768px) {
    .vs-card-cols {
        grid-template-columns: 1fr;
    }

    .vs-more-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ── Full cross-competitor table (dark treatment) ── */
.vs-full-compare {
    background: #F7F7F7;
    padding: 80px 0 88px;
}

.vs-full-compare .vs-section-title {
    margin-bottom: 40px;
}

.vs-full-compare .compare-table-wrap {
    border-color: #e5e5e5;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.vs-full-compare .compare-cross {
    background: #fee2e2;
    color: #e84e38;
}

.vs-full-compare .compare-cross {
    background: rgba(232, 78, 56, 0.2);
    color: #f87171;
}

@media (max-width: 640px) {
    .vs-hero {
        padding: 72px 0 60px;
    }

    .vs-breakdown,
    .vs-table-section,
    .vs-more,
    .vs-full-compare {
        padding: 56px 0 48px;
    }

    .vs-card {
        padding: 24px 20px;
    }
}

/* ================================================
   CHURCH ACCOUNTING PAGE
   ================================================ */

/* ── Hero ── */
.ca-hero {
    background: #fff;
    padding: 88px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
}

.ca-hero::before {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 40px;
    width: 160px;
    height: 130px;
    background-image: radial-gradient(circle, rgba(15, 23, 42, 0.16) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    pointer-events: none;
}

.ca-hero::after {
    content: "";
    position: absolute;
    top: -30px;
    right: -50px;
    width: 240px;
    height: 120px;
    border: 2px solid rgba(15, 23, 42, 0.07);
    border-radius: 16px;
    transform: rotate(14deg);
    pointer-events: none;
}

.ca-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ca-hero-eyebrow {
    display: inline-block;
    background: #fff;
    color: #2B70E4;
    border: 1.5px solid #bfdbfe;
    border-radius: 100px;
    padding: 5px 16px;
    box-shadow: 0 1px 4px rgba(43, 112, 228, 0.12);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 20px;
}

.ca-hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin: 0 0 20px;
}

.ca-hero-sub {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 20px;
}

.ca-hero-trust {
    font-size: 1rem;
    color: #64748b;
    margin: 0 0 28px;
}

.ca-hero-btn {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
}
.ca-hero-btn:hover { background: #1d4ed8; color: #fff; transform: translateY(-1px); }
.custom_theme-kit-7 .ca-hero-btn,
.custom_theme-kit-7 .ca-hero-btn:hover { color: #fff; }

.ca-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.10);
    display: block;
}

/* ── Features ── */
.ca-features {
    background: #f0f0f0;
    padding: 88px 0 80px;
}

.ca-features .ca-section-label {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.ca-features .ca-section-title {
    text-align: center;
}

.ca-features .ca-section-title {
    max-width: 760px;
    margin: 0 auto 48px;
}

.ca-section-label {
    display: inline-block;
    background: #fff;
    color: #2b70e4;
    border: 1.5px solid #bfdbfe;
    border-radius: 100px;
    padding: 5px 16px;
    box-shadow: 0 1px 4px rgba(43, 112, 228, 0.12);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 16px;
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

a.ca-section-label:hover {
    border-color: #93c5fd;
    box-shadow: 0 2px 8px rgba(43, 112, 228, 0.2);
}

.page-members .ca-section-label,
.page-finances .ca-section-label,
.page-giving .ca-section-label,
.page-events .ca-section-label,
.page-reports .ca-section-label,
.page-messaging .ca-section-label,
.page-admin .ca-section-label,
.page-church-accounting .ca-section-label {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    font-size: 15px;
}

.ca-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin: 0 0 48px;
}

.custom_theme-kit-7 .ca-section-title { font-size: 2rem; }

.ca-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ca-feature-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    transition: box-shadow 0.18s, border-color 0.18s;
}

.ca-feature-card:hover {
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.ca-feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 12px;
    background: var(--ic-bg, #f0f0f0);
    color: var(--ic-color, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
    flex-shrink: 0;
}

.ca-feature-icon svg { width: 4rem; height: 4rem; }
.ca-feature-icon img { width: 4rem; height: 4rem; display: block; }

.ca-feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 10px;
    line-height: 1.3;
}

.custom_theme-kit-7 .ca-feature-title { font-size: 1.05rem; }

.ca-feature-desc {
    font-size: 1rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

.ca-finance-tools {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 32%),
        #f0f0f0;
    padding: 88px 0 80px;
}

.ca-finance-tools .ca-section-label {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.ca-finance-tools .ca-section-title {
    text-align: center;
}

.ca-finance-tools .ca-section-title {
    max-width: 760px;
    margin: 0 auto 40px;
}

.ca-finance-tabs {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ca-finance-tablist {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: -10px auto 0;
    justify-content: center;
    max-width: 980px;
}

.ca-finance-mobile-nav {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: 620px;
    margin: 0 auto;
}

.ca-finance-mobile-arrow {
    appearance: none;
    border: 1px solid #d7e5ff;
    background: #fff;
    color: #1e3a8a;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    cursor: pointer;
}

.ca-finance-mobile-label {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 800;
    color: #1e3a8a;
    background: #fff;
    border: 1px solid #d7e5ff;
    border-radius: 999px;
    padding: 10px 14px;
    line-height: 1.2;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.ca-finance-tab {
    appearance: none;
    border: 1px solid #d7e5ff;
    background: rgba(255, 255, 255, 0.85);
    color: #1e3a8a;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.ca-finance-tab:hover,
.ca-finance-tab:focus-visible {
    transform: translateY(-1px);
    border-color: #93c5fd;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    outline: none;
}

.ca-finance-tab.is-active {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.28);
}

.ca-finance-panels {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
}

.ca-finance-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.ca-finance-card:hover {
    transform: translateY(-2px);
}

.ca-finance-card-media {
    background: #fff;
    padding: 18px;
    width: 56%;
}

.ca-finance-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 14px 42px rgba(15, 23, 42, 0.06);
}

.ca-finance-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 28px 28px 32px 10px;
}

.ca-finance-card-kicker {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2563eb;
}

.ca-finance-card-title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--navy);
}

.ca-finance-card-desc {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

.page-finances .site-main,
.page-finances .ca-hero,
.page-finances .ca-platform,
.page-finances .ca-finance-tools,
.page-finances .ca-faq,
.page-finances .ca-blog {
    background: #fff;
}

.page-giving .site-main,
.page-giving .ca-hero,
.page-giving .ca-features,
.page-giving .ca-platform,
.page-giving .ca-faq,
.page-giving .ca-blog {
    background: #fff;
}

.page-giving .ca-hero {
    padding-top: 64px;
}

.page-giving .ca-hero-image img {
    border: 0;
    box-shadow: none;
}

.page-giving .ca-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-members .site-main,
.page-members .ca-hero,
.page-members .ca-features,
.page-members .ca-platform,
.page-members .ca-faq,
.page-members .ca-blog {
    background: #fff;
}

.page-members .ca-platform,
.page-members .ca-faq,
.page-members .ca-blog {
    border-top: 1px solid #e5e7eb;
}

.page-members .ca-platform-image img {
    border: 0;
    box-shadow: none;
}

.page-reports .site-main,
.page-reports .ca-hero,
.page-reports .ca-features,
.page-reports .ca-platform,
.page-reports .ca-faq,
.page-reports .ca-blog {
    background: #fff;
}

.page-reports .ca-features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-reports .ca-reports-hero-includes {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    margin-left: auto;
    width: min(460px, 100%);
}

.page-reports .ca-reports-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.page-reports .ca-reports-hero-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    width: 100%;
}

.page-reports .ca-reports-hero-icon {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-reports .ca-reports-hero-icon img {
    width: 4rem;
    height: 4rem;
    display: block;
}

.page-reports .ca-reports-hero-title {
    margin: 0;
    font-size: 1.25rem;
    color: var(--navy);
    line-height: 1.2;
}

.page-messaging .site-main,
.page-messaging .ca-hero,
.page-messaging .ca-features,
.page-messaging .ca-platform,
.page-messaging .ca-faq,
.page-messaging .ca-blog {
    background: #fff;
}

.page-messaging .ca-features,
.page-messaging .ca-platform,
.page-messaging .ca-faq,
.page-messaging .ca-blog {
    border-top: 1px solid #e5e7eb;
}

.page-events .site-main,
.page-events .ca-hero,
.page-events .ca-platform,
.page-events .ca-features,
.page-events .ca-faq,
.page-events .ca-blog {
    background: #fff;
}

.page-events .ca-platform,
.page-events .ca-features,
.page-events .ca-faq,
.page-events .ca-blog {
    border-top: 1px solid #e5e7eb;
}

.page-admin .site-main,
.page-admin .ca-hero,
.page-admin .ca-features,
.page-admin .ca-platform,
.page-admin .ca-faq,
.page-admin .ca-blog {
    background: #fff;
}

.page-admin .ca-features,
.page-admin .ca-platform,
.page-admin .ca-faq,
.page-admin .ca-blog {
    border-top: 1px solid #e5e7eb;
}

.page-admin .ca-features .ca-section-title {
    max-width: 680px;
    margin-bottom: 40px;
}

.page-admin .ca-features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.page-admin .ca-feature-card {
    text-align: center;
    border-radius: 18px;
    padding: 28px 22px;
}

.page-admin .ca-feature-icon {
    margin: 0 auto 18px;
}

.page-admin .ca-feature-title {
    margin-bottom: 12px;
}

.ca-finance-panel[hidden] {
    display: none;
}

.ca-finance-panel.is-active {
    animation: caFinanceFade 0.2s ease;
}

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

/* ── Comparison table ── */
.ca-compare {
    background: #fff;
    padding: 88px 0 80px;
}

.ca-compare-table { min-width: 820px; }

.ca-td--taber {
    font-size: 0.88rem;
    color: #166534;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}

.ca-td--other {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
    text-align: left;
}

/* ── Testimonials ── */
.ca-testimonials {
    background: #f8fafc;
    padding: 88px 0 80px;
}

.ca-testimonials .ca-section-label {
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.ca-testimonials .ca-section-title {
    text-align: center;
}

.ca-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.ca-testimonial-card {
    position: relative;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 40px 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: 0 4px 24px rgba(15,23,42,0.06);
}

.ca-testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 32px;
    font-size: 5rem;
    line-height: 1;
    color: #2563eb;
    font-family: Georgia, serif;
    opacity: 0.6;
}

.ca-testimonial-text {
    font-size: 1rem;
    color: #334155;
    line-height: 1.75;
    margin: 0;
    flex: 1;
    padding-top: 28px;
}

.ca-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.ca-testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e2e8f0;
}

.ca-testimonial-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.ca-testimonial-role {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.ca-testimonials-footer { text-align: center; margin-top: 8px; }

.ca-testimonials-cta {
    color: #2563eb;
    font-weight: 500;
    font-size: 0.95rem;
}
.ca-testimonials-cta:hover { color: #1d4ed8; }

/* ── Blog ── */
.ca-blog {
    background: #fff;
    padding: 88px 0 80px;
    border-top: 1px solid #e5e7eb;
}

.ca-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ca-blog-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--navy);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.18s, border-color 0.18s;
}

.ca-blog-card:hover {
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.ca-blog-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.ca-blog-img-placeholder {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
}

.ca-blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.ca-blog-date {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.ca-blog-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin: 0;
}

.custom_theme-kit-7 .ca-blog-title { font-size: 1rem; }

.ca-blog-excerpt {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .ca-hero-inner { grid-template-columns: 1fr; }
    .ca-hero-image { display: block; }
    .ca-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .page-reports .ca-features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .page-admin .ca-features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .page-reports .ca-reports-hero-includes { margin-top: 8px; }
}

@media (max-width: 640px) {
    .ca-hero { padding: 72px 0 60px; }
    .ca-features, .ca-finance-tools, .ca-compare, .ca-testimonials, .ca-blog { padding: 60px 0 56px; }
    .ca-features-grid { grid-template-columns: 1fr; }
    .ca-features .ca-feature-card { text-align: center; }
    .ca-features .ca-feature-icon { margin-left: auto; margin-right: auto; }
    .ca-features .ca-feature-title,
    .ca-features .ca-feature-desc { text-align: center; }
    .page-giving .ca-features-grid { grid-template-columns: 1fr; }
    .page-reports .ca-features-grid { grid-template-columns: 1fr; }
    .page-admin .ca-features-grid { grid-template-columns: 1fr; }
    .ca-testimonials-grid { grid-template-columns: 1fr; }
    .ca-blog-grid { grid-template-columns: 1fr; }
}

/* ── Platform split ── */
.ca-platform {
    background: #fff;
    padding: 88px 0 80px;
}

.ca-platform-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ca-platform-text .ca-section-label { margin-bottom: 16px; }

.ca-platform-text a.ca-section-label {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
    box-shadow: none;
}

.ca-platform-text a.ca-section-label:hover {
    background: #059669;
    border-color: #059669;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.home-migration-section a.ca-section-label {
    background: #8c52ff;
    color: #fff;
    border-color: #8c52ff;
    box-shadow: none;
}

.home-migration-section a.ca-section-label:hover {
    background: #7c3aed;
    border-color: #7c3aed;
    box-shadow: 0 2px 8px rgba(140, 82, 255, 0.3);
}

.home-support-section .ca-section-label {
    background: #e84e38;
    color: #fff;
    border-color: #e84e38;
    box-shadow: none;
}

.ca-testimonials .ca-section-label {
    background: #f59e0b;
    color: #fff;
    border-color: #f59e0b;
    box-shadow: none;
}

.ca-platform-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    margin: 0 0 28px;
}

.custom_theme-kit-7 .ca-platform-title { font-size: 1.75rem; }

.ca-platform-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ca-platform-list li {
    font-size: 1rem;
    color: #475569;
    line-height: 1.65;
    padding-left: 22px;
    position: relative;
}

.ca-platform-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2563eb;
    flex-shrink: 0;
}

.ca-platform-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 40px rgba(15, 23, 42, 0.08);
    display: block;
}

/* ── FAQ ── */
.ca-faq {
    background: #f0f0f0;
    padding: 88px 0 80px;
    border-top: 1px solid #e5e7eb;
}

.ca-faq .ca-section-label { display: table; margin-left: auto; margin-right: auto; }
.ca-faq .ca-section-title { text-align: center; }

.ca-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.ca-faq-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
}

.ca-faq-item[open] {
    border-color: #cbd5e1;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.ca-faq-question {
    cursor: pointer;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
    margin: 0;
}

.ca-faq-question::-webkit-details-marker { display: none; }

.ca-faq-question::after {
    content: "+";
    font-size: 1.25rem;
    font-weight: 300;
    color: #94a3b8;
    flex-shrink: 0;
    line-height: 1;
}

.ca-faq-item[open] .ca-faq-question::after { content: "\2212"; }

.ca-faq-answer {
    padding: 0 24px 20px;
    border-top: 1px solid #f0f0f0;
}

.ca-faq-answer p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin: 16px 0 0;
}

@media (max-width: 900px) {
    .ca-platform-inner { grid-template-columns: 1fr; gap: 40px; }
    .ca-platform-image { order: -1; }
    .ca-finance-card { flex-direction: column; }
    .ca-finance-card-media { width: 100%; padding: 18px 18px 0; }
    .ca-finance-card-media img { border-radius: 16px 16px 0 0; }
    .ca-finance-card-body { padding: 24px 24px 28px; }
}

@media (max-width: 640px) {
    .ca-platform, .ca-faq { padding: 60px 0 56px; }
    .ca-platform-title { font-size: 1.4rem; }
    .ca-finance-mobile-nav { display: flex; }
    .ca-finance-tablist { display: none; }
    .ca-finance-card-media { padding: 14px 14px 0; }
    .ca-finance-card-body { padding: 20px 20px 24px; }
    .ca-finance-card-title { font-size: 1.05rem; }
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */

.contact-hero {
    background: #f7f7f7;
    padding: 88px 0 80px;
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%) rotate(15deg);
    width: 260px;
    height: 380px;
    border: 2px solid rgba(15, 23, 42, 0.07);
    border-radius: 24px;
    pointer-events: none;
}
.contact-hero::after {
    content: "";
    position: absolute;
    bottom: 16px;
    left: 40px;
    width: 150px;
    height: 110px;
    background-image: radial-gradient(circle, rgba(15, 23, 42, 0.14) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    pointer-events: none;
}
.contact-hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2563eb;
    margin: 0 0 16px;
}
.contact-hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}
.contact-hero-sub {
    font-size: 1.1rem;
    color: #475569;
    max-width: 560px;
    margin: 0;
    line-height: 1.7;
}

/* ── Main layout ── */
.contact-main {
    background: #fff;
    padding: 88px 0 96px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 72px;
    align-items: start;
}

/* ── Info panel ── */
.contact-info-heading {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 10px;
}
.contact-info-sub {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 36px;
}
.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}
.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin: 0 0 4px;
}
.contact-info-value {
    font-size: 0.9375rem;
    color: var(--navy);
    line-height: 1.6;
    margin: 0;
}
.contact-info-link {
    text-decoration: none;
    color: #2563eb;
    font-weight: 500;
}
.contact-info-link:hover { text-decoration: underline; }

.contact-demo-card {
    background: #f7f7f7;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #e5e5e5;
}
.contact-demo-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 6px;
}
.contact-demo-sub {
    font-size: 0.875rem;
    color: #475569;
    margin: 0 0 16px;
    line-height: 1.5;
}
.contact-demo-btn {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 9px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s;
}
.contact-demo-btn:hover { background: #1e293b; color: #fff; }
.custom_theme-kit-7 .contact-demo-btn,
.custom_theme-kit-7 .contact-demo-btn:hover { color: #fff; }

/* ── Form card ── */
.contact-form-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    padding: 44px 40px;
}
.contact-form-heading {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 24px;
}
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-field {
    margin-bottom: 20px;
}
.contact-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}
.contact-form-card .contact-input {
    width: 100%;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--navy);
    background: #fff;
    transition: border-color 0.18s, box-shadow 0.18s;
    box-sizing: border-box;
    box-shadow: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.contact-form-card .contact-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.contact-textarea {
    resize: vertical;
    min-height: 130px;
}
.contact-field-error {
    font-size: 0.8rem;
    color: #b91c1c;
    margin: 4px 0 0;
}
.contact-message {
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
}
.contact-message.success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}
.contact-message.error,
.contact-message.warning {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}
.contact-submit {
    width: 100%;
    border: none;
    border-radius: 9px;
    background: #2563eb;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
    font-family: inherit;
    padding: 13px 20px;
    cursor: pointer;
    transition: background 0.15s, transform 0.12s;
    margin-top: 4px;
}
.contact-submit:hover { background: #1d4ed8; transform: translateY(-1px); }

/* ── Success state ── */
.contact-success {
    text-align: center;
    padding: 48px 20px;
}
.contact-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.contact-success-icon svg { width: 28px; height: 28px; }
.contact-success-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 8px;
}
.contact-success-sub {
    color: #475569;
    margin: 0 0 24px;
    line-height: 1.6;
}
.contact-success-link {
    font-size: 0.875rem;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}
.contact-success-link:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-hero { padding: 72px 0 60px; }
    .contact-main { padding: 64px 0 72px; }
}
@media (max-width: 560px) {
    .contact-form-card { padding: 28px 20px; }
    .contact-form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-hero-title { font-size: 2rem; }
}

/* ══════════════════════════════════════════════════
   HOME — Features tabs: tab pill font-weight + "Learn More" button
   ══════════════════════════════════════════════════ */
[data-id="5540611"] .e-n-tab-title-text,
[data-id="5540611"] .e-n-tab-title {
    font-weight: 500 !important;
}

[data-id="5540611"] .custom_theme-widget-button.e-transform {
    transform: none !important;
}

[data-id="5540611"] .custom_theme-button.custom_theme-button-link {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 10px 20px !important;
    background: transparent !important;
    color: #2563eb !important;
    border: 1.5px solid #2563eb !important;
    border-radius: 8px !important;
    font-size: 0.9rem;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: background 0.15s, color 0.15s;
}
[data-id="5540611"] .custom_theme-button.custom_theme-button-link:hover {
    background: #2563eb !important;
    color: #fff !important;
    text-decoration: none !important;
}
[data-id="5540611"] .custom_theme-button.custom_theme-button-link .custom_theme-button-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════
   HOME PAGE — section dividers
   ══════════════════════════════════════════════════ */
.home-blog-grid-wrap {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

/* ══════════════════════════════════════════════════
   HOME — Newsletter section
   ══════════════════════════════════════════════════ */

.home-newsletter {
    padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 60px);
    background: #f1f5f9;
    text-align: center;
}

.home-newsletter__inner {
    max-width: 800px;
    margin: 0 auto;
}

.home-newsletter__eyebrow {
    margin: 0 0 14px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: #64748b;
}

.home-newsletter__heading {
    margin: 0 0 14px;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.home-newsletter__sub {
    margin: 0 0 32px;
    color: #475569;
    font-size: 1rem;
    line-height: 1.65;
}

.home-newsletter__success {
    color: #16a34a;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.home-newsletter .blog-subscribe__form {
    width: min(520px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.home-newsletter .blog-subscribe__input {
    min-width: 0;
    height: 52px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 0 18px;
    font-size: 0.95rem;
    background: #fff;
    color: #0f172a;
}

.home-newsletter .blog-subscribe__input::placeholder {
    color: #8b9bb5;
}

.home-newsletter .blog-subscribe__input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.25);
}

.home-newsletter .blog-subscribe__button {
    height: 52px;
    padding: 0 26px;
    border: 0;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}

.home-newsletter .blog-subscribe__button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

@media (max-width: 500px) {
    .home-newsletter .blog-subscribe__form {
        grid-template-columns: 1fr;
    }
    .home-newsletter .blog-subscribe__button {
        width: 100%;
    }
}

/* Blog cards: clean consistent shadow + border */
[data-id="721a50b"] .custom_theme-post__card,
[data-id="87f38ba"] .custom_theme-post__card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05), 0 4px 16px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
[data-id="721a50b"] .custom_theme-post__card:hover,
[data-id="87f38ba"] .custom_theme-post__card:hover {
    box-shadow: 0 4px 8px rgba(15, 23, 42, 0.08), 0 12px 32px rgba(15, 23, 42, 0.10);
    transform: translateY(-3px);
}

/* Blog card: title */
[data-id="721a50b"] .custom_theme-post__title a,
[data-id="87f38ba"] .custom_theme-post__title a {
    color: #1c191a;
    font-weight: 700;
    text-decoration: none;
}
[data-id="721a50b"] .custom_theme-post__title a:hover,
[data-id="87f38ba"] .custom_theme-post__title a:hover {
    color: #2b70e4;
}

/* Blog card: excerpt */
[data-id="721a50b"] .custom_theme-post__excerpt p,
[data-id="87f38ba"] .custom_theme-post__excerpt p {
    color: #475569;
    font-size: 0.94rem;
    line-height: 1.65;
}

/* Blog card: "Read More" link */
[data-id="721a50b"] .custom_theme-post__read-more,
[data-id="87f38ba"] .custom_theme-post__read-more {
    color: #2b70e4;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
}
[data-id="721a50b"] .custom_theme-post__read-more:hover,
[data-id="87f38ba"] .custom_theme-post__read-more:hover {
    text-decoration: underline;
}

/* Blog card: date */
[data-id="721a50b"] .custom_theme-post-date,
[data-id="87f38ba"] .custom_theme-post-date {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* ══════════════════════════════════════════════════
   HOME — Feature-style sections (accounting, migration, support, testimonials)
   ══════════════════════════════════════════════════ */
.home-ca-section {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
}

.home-ca-body {
    color: #475569;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 24px;
}

.home-migration-section {
    background: #fff;
}

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

.home-support-section .ca-platform-image img {
    border: 0;
    box-shadow: none;
}

@media (max-width: 900px) {
    .home-migration-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .home-migration-grid { grid-template-columns: 1fr; }
}

.home-testimonials-swiper {
    padding-bottom: 56px;
    max-width: 720px;
    margin: 0 auto;
}

.home-testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.home-testimonials-swiper .ca-testimonial-card {
    width: 100%;
    text-align: left;
}

.home-testimonials-swiper .ca-testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155 !important;
}

.home-testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.home-testimonials-prev,
.home-testimonials-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #94a3b8;
    background: #fff;
    color: #475569;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.home-testimonials-prev:hover,
.home-testimonials-next:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

.home-testimonials-prev .material-symbols-outlined,
.home-testimonials-next .material-symbols-outlined {
    font-size: 18px;
}

.home-testimonials-prev.swiper-button-disabled,
.home-testimonials-next.swiper-button-disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
}

.home-testimonials-pagination {
    bottom: 12px;
}

.home-testimonials-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    opacity: 1;
    transition: width 0.2s, background 0.2s;
}

.home-testimonials-pagination .swiper-pagination-bullet-active {
    background: #2563eb;
    width: 28px;
    border-radius: 4px;
}

/* ══════════════════════════════════════════════════
   HOME — Dynamic blog grid wrapper
   ══════════════════════════════════════════════════ */
.home-blog-grid-wrap {
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
    background: #ffffff;
}

.home-blog-grid-wrap .blog-grid {
    width: min(1220px, calc(100% - 40px));
    margin: 0 auto;
}

@media (prefers-reduced-motion: reduce) {
    [data-id="721a50b"] .custom_theme-post__card,
    [data-id="87f38ba"] .custom_theme-post__card {
        transition: none;
    }
}

/* =========================================================
   GLOBAL RESPONSIVE HARDENING (mobile/tablet/small screens)
   ========================================================= */

html, body {
    max-width: 100%;
}

/* Prevent common overflow issues from long URLs / labels / headings */
h1, h2, h3, h4, h5, h6, p, li, a, span {
    overflow-wrap: anywhere;
    word-break: normal;
}

/* Ensure media and embeds never exceed viewport width */
img, svg, video, iframe, canvas {
    max-width: 100%;
    height: auto;
}

/* Guard against accidental horizontal overflow from third-party blocks */
.site-main,
.page-content,
.custom_theme,
.custom_theme-section,
.custom_theme-container,
.e-con,
.e-con-inner {
    max-width: 100%;
}

/* Responsive table wrappers across content pages */
.site-main table {
    width: 100%;
    border-collapse: collapse;
}

@media (max-width: 1024px) {
    html,
    body {
        overflow-x: clip;
    }

    .site-main {
        padding: 0 !important;
        overflow-x: clip;
    }

    .site-main > section,
    .site-main > div {
        padding-left: 0;
        padding-right: 0;
    }

    .container {
        width: min(1140px, calc(100% - 32px));
    }

    .e-con {
        --width: 100% !important;
    }

    .custom_theme-section.custom_theme-section-boxed > .custom_theme-container,
    .e-con > .e-con-inner {
        max-width: calc(100% - 32px);
    }

    .custom_theme-widget {
        width: 100% !important;
        max-width: 100% !important;
    }

    .ca-hero-inner,
    .ca-platform-inner {
        gap: 28px;
    }

    .ca-features-grid,
    .ca-blog-grid {
        gap: 20px;
    }

    .ca-testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-blog-grid-wrap .blog-grid {
        width: min(1220px, calc(100% - 32px));
    }
}

@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    .container {
        width: calc(100% - 24px);
    }

    .site-main {
        padding: 0 !important;
        overflow-x: clip;
    }

    .site-main > section,
    .site-main > div {
        padding-left: 0;
        padding-right: 0;
    }

    .custom_theme-section.custom_theme-section-boxed > .custom_theme-container,
    .e-con > .e-con-inner {
        max-width: calc(100% - 24px);
    }

    .custom_theme-column,
    .custom_theme-widget-wrap,
    .custom_theme-widget {
        width: 100% !important;
    }

    .ca-hero {
        padding: 64px 0 52px;
    }

    .ca-features,
    .ca-platform,
    .ca-faq,
    .ca-blog,
    .ca-testimonials,
    .ca-finance-tools,
    .ca-compare {
        padding: 56px 0 52px;
    }

    .ca-section-title,
    .ca-platform-title,
    .ca-hero-title {
        text-wrap: balance;
    }

    .ca-feature-card,
    .ca-testimonial-card,
    .ca-blog-card {
        min-width: 0;
    }

    .ca-platform-list {
        padding-left: 0;
        margin-left: 0;
    }

    .ca-platform-list li {
        padding-left: 24px;
    }

    .custom_theme-section .custom_theme-container {
        padding-left: 0;
        padding-right: 0;
    }

    /* Better mobile readability for static/legacy content pages */
    .privacy-policy-page,
    .blog-post-page,
    .success-story-article,
    .contact-page {
        overflow-x: hidden;
    }

    .site-main table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 480px) {
    .container {
        width: calc(100% - 20px);
    }

    .custom_theme-section.custom_theme-section-boxed > .custom_theme-container,
    .e-con > .e-con-inner {
        max-width: calc(100% - 20px);
    }

    .ca-hero {
        padding: 56px 0 46px;
    }

    .ca-hero-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .blog-pagination a,
    .blog-pagination span {
        min-width: 40px;
        height: 40px;
        padding: 0 10px;
    }

    .subscribe-modal {
        padding: 12px;
    }

    .subscribe-modal__box {
        padding: 28px 20px 22px;
    }
}

/* =========================================================
   GLOBAL DESIGN POLISH (interaction + generated page fixes)
   ========================================================= */

.btn,
button,
[type="button"],
[type="submit"],
[type="reset"],
[role="button"],
.custom_theme-button,
.blog-subscribe__button,
.blog-filters__submit,
.blog-filters__search button,
.blog-pagination a,
.careers-contact-email,
.contact-submit,
.ca-hero-btn {
    transition-timing-function: var(--ease-out-strong);
}

.btn:active,
button:active,
[type="button"]:active,
[type="submit"]:active,
[type="reset"]:active,
[role="button"]:active,
.custom_theme-button:active,
.blog-subscribe__button:active,
.blog-filters__submit:active,
.blog-filters__search button:active,
.blog-pagination a:active,
.careers-contact-email:active,
.contact-submit:active,
.ca-hero-btn:active {
    transform: scale(0.98);
}

@media (hover: none), (pointer: coarse) {
    .btn:hover,
    .custom_theme-button:hover,
    .blog-card:hover,
    .careers-value-card:hover,
    .careers-contact-email:hover,
    .ca-hero-btn:hover,
    .ca-feature-card:hover,
    .ca-blog-card:hover,
    .contact-submit:hover,
    .home-newsletter .blog-subscribe__button:hover,
    [data-id="721a50b"] .custom_theme-post__card:hover,
    [data-id="87f38ba"] .custom_theme-post__card:hover {
        transform: none !important;
    }
}

@media (max-width: 1024px) {
    .custom_theme-section,
    .custom_theme-container,
    .e-con,
    .e-con-inner,
    .custom_theme-column,
    .custom_theme-widget-wrap,
    .custom_theme-widget {
        min-width: 0;
    }

    .custom_theme-widget__width-initial,
    .custom_theme-widget__width-auto,
    .custom_theme-widget-tablet__width-initial,
    .custom_theme-widget-tablet__width-auto {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Tablet and small-screen navigation: switch before the desktop nav gets cramped. */
@media (max-width: 1100px) {
    .nav-shell {
        min-height: 74px;
    }

    .brand img {
        width: 144px;
    }

    .primary-nav,
    .nav-cta {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
        width: 42px;
        height: 42px;
    }

    .primary-nav.is-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        padding: 12px 16px 132px;
        overflow-y: auto;
        z-index: 19;
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    }

    .primary-nav.is-open .nav-link,
    .primary-nav.is-open .nav-link-btn {
        min-height: 46px;
        width: 100%;
        justify-content: space-between;
        padding: 12px 8px;
        border-bottom: 1px solid #f1f5f9;
        border-radius: 0;
        font-size: 1.05rem;
        line-height: 1.25;
    }

    .primary-nav.is-open .dropdown,
    .primary-nav.is-open .dropdown--mega {
        position: static;
        display: none;
        grid-template-columns: 1fr;
        min-width: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        transition: none !important;
    }

    .primary-nav.is-open .has-dropdown.is-open > .dropdown,
    .primary-nav.is-open .has-dropdown.is-open > .dropdown--mega {
        display: flex;
        flex-direction: column;
    }

    .primary-nav.is-open .nav-feat {
        min-height: 52px;
        padding: 10px 8px 10px 16px;
        border-bottom: 1px solid #f1f5f9;
    }

    .primary-nav.is-open .nav-feat__icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .primary-nav.is-open .nav-feat__icon svg {
        width: 16px;
        height: 16px;
    }

    .primary-nav.is-open .nav-feat__desc {
        white-space: normal;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .nav-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 25;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 10px;
        padding: 14px max(16px, env(safe-area-inset-left)) calc(14px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-right));
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.08);
    }

    body.nav-open .signin-link,
    body.nav-open .nav-cta .btn {
        min-height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 11px 14px;
        border-radius: 10px;
        font-weight: 700;
        text-align: center;
    }

    body.nav-open .signin-link {
        border: 1px solid #cbd5e1;
        color: #0f172a;
        background: #fff;
    }
}

@media (min-width: 768px) and (max-width: 1100px) {
    .custom_theme-49 .custom_theme-element.custom_theme-element-1ac6a80 {
        --content-width: min(420px, 100%);
        --justify-content: center;
    }

    .custom_theme-49 .custom_theme-element.custom_theme-element-1ac6a80 > .e-con-inner {
        justify-content: center;
        gap: 12px;
    }

    .custom_theme-49 .custom_theme-element.custom_theme-element-87c0462,
    .custom_theme-49 .custom_theme-element.custom_theme-element-cfee14f {
        --width: auto !important;
        flex: 0 0 auto;
    }

    .custom_theme-49 .custom_theme-element.custom_theme-element-9f7aa16 {
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .custom_theme-49 .custom_theme-element.custom_theme-element-9f7aa16 .custom_theme-icon-box-wrapper {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-align: left;
    }

    .custom_theme-49 .custom_theme-element.custom_theme-element-9f7aa16 .custom_theme-icon {
        font-size: 34px;
    }

    .custom_theme-49 .custom_theme-element.custom_theme-element-9f7aa16 .custom_theme-icon-box-title,
    .custom_theme-49 .custom_theme-element.custom_theme-element-9f7aa16 .custom_theme-icon-box-title a {
        font-size: 0.95rem;
        line-height: 1.3;
    }
}

@media (max-width: 520px) {
    body.nav-open .nav-cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .custom_theme-section,
    .custom_theme-container,
    .e-con,
    .e-con-inner {
        --width: 100% !important;
        --content-width: 100% !important;
    }

    .custom_theme-widget-mobile__width-initial,
    .custom_theme-widget-mobile__width-auto {
        width: 100% !important;
        max-width: 100% !important;
    }
}

.about-hero .about-hero-title,
.careers-hero .careers-hero-title,
.compare-hero .compare-hero-title,
.pricing-hero .pricing-hero-title,
.vs-hero .vs-hero-title {
    line-height: 1.24;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
