/* =========================================================
   Base / Reset
   Default values for theme variables. These can be overridden
   by an inline <style> block generated from the admin's saved
   theme colors (see theme_css_vars() in functions.php).
   ========================================================= */
:root {
    --color-header-bg: #ffffff;
    --color-header-text: #000000;
    --color-content-bg: #ffffff;
    --color-content-text: #000000;
    --color-heading: #27477d;
    --color-footer-bg: #ffffff;
    --color-footer-text: #000000;
    --color-accent: #2563eb;
    --color-accent-dark: #1d4ed8;
    --color-muted: #6b7280;
    --color-card: #ffffff;
    --color-border: #e5e7eb;
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    --max-width: 1140px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: var(--font-size-body, 16px);
    font-family: var(--font-primary, sans-serif);
    color: var(--color-content-text);
    background: var(--color-content-bg);
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-break: break-word;
}
h1 { font-size: var(--font-size-h1, 2.5rem); }
h2 { font-size: var(--font-size-h2, 2rem); }
h3 { font-size: var(--font-size-h3, 1.75rem); }
h4 { font-size: var(--font-size-h4, 1.5rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Global heading font (Phase 1) — route every block heading/title through the
   Theme tab's Heading Font (--font-heading). Falls back to `inherit` (the body
   font) when no Heading Font is set, so appearance is unchanged unless one is
   chosen. Only these classes previously hardcoded no font-family and therefore
   ignored the Heading Font picker. */
.c36855f, .c363a3c, .c36403d, .c364738, .c361732,
.c362e94, .c366f06, .c365beb, .c3602f2, .c363bc3,
.c365576, .c363762, .c3679b3, .c36e92e, .c36dd82,
.c364eba, .c3620f2, .c3619c6, .c36676a,
.c3664f4, .c368a18, .c36e94f {
    font-family: var(--font-heading, inherit);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 12px;
}

/* =========================================================
   Public site header
   ========================================================= */
.c361919 {
    background: var(--color-header-bg);
    color: var(--color-header-text, #ffffff);
    /* no border-bottom — the two rows handle their own borders */
}

.c361919 .c36b4ed {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 20px;
}

.c36cf12 img {
    max-height: 56px;
    width: auto;
}

.c36cf12 .c36fa03 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #120575; /* navy — logo text always dark on white top row */
}

/* Default site-nav (used outside the nav bar context) */
.c36b4d9 {
    flex: 1;
    display: flex;
    justify-content: center;
}

.c36b4d9 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.c36b4d9 a {
    color: var(--color-header-text, #ffffff);
    font-weight: 500;
}

.c36b4d9 a:hover {
    color: var(--color-accent);
    text-decoration: none;
}

/* Override default site-nav inside the colored nav bar */
.c36b815 .c36b4d9 {
    flex: unset;
    justify-content: flex-start;
}

.c360c91 {
    font-weight: 600;
    white-space: nowrap;
}

.c360c91 a {
    color: var(--color-header-text, #ffffff);
}

.c360c91 a:hover {
    color: var(--color-accent);
}

/* =========================================================
   Public site main content / content blocks
   ========================================================= */
.c362f65 {
    padding: 0 0 48px;
}
.c365ceb {
    background: #f3f6f7;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 0;
}
.c36ab2f {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    color: #555;
}
.c36ab2f li { display: flex; align-items: center; gap: 4px; }
.c36ab2f a { color: var(--color-accent, #fd783b); text-decoration: none; }
.c36ab2f a:hover { text-decoration: underline; }
.c36ab2f [aria-current="page"] { color: #333; font-weight: 500; }
.c3672d2 { color: #aaa; font-size: 0.9rem; }

/* Breadcrumb overlaid on hero blocks */
.c36eb8a {
    background: var(--color-header-bg, #0d1b3e);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
/* Text defaults to white (correct when the hero is dark, the common case). When the
   hero's actual background is light, site-template.php sets --bc-text/-link/-current/
   -sep inline so the breadcrumb stays readable instead of white-on-white. */
.c36eb8a .c36ab2f { color: var(--bc-text-color, rgba(255,255,255,0.7)); }
.c36eb8a .c36ab2f a { color: var(--bc-link-color, rgba(255,255,255,0.75)); }
.c36eb8a .c36ab2f a:hover { color: var(--bc-link-hover-color, #fff); }
.c36eb8a .c36ab2f [aria-current="page"] { color: var(--bc-current-color, rgba(255,255,255,0.9)); font-weight: 500; }
.c36eb8a .c3672d2 { color: var(--bc-sep-color, rgba(255,255,255,0.4)); }

.c361204 {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.c361204:last-child {
    margin-bottom: 0;
}
.c36f34f, .c36e674, .c363bb8, .c364897, .c369314,
.c36c4fa, .c36043f, .c36a790, .c364541,
.c36f362, .c36f2c0, .c362f6a, .c366d8b,
.c36a07f, .c3661af, .c368ac1, .c36f6b4,
.c369280, .c36c82d, .c36129c, .c36ca82, .c360a5b { margin-bottom: 0; }

.c361204 .c3675b8 {
    flex: 3 1 380px;
    position: relative;
    padding-top: 50%; /* default: horizontal rectangle (2:1) */
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.c361204 .c3675b8 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius);
    box-shadow: none;
}

/* "Original size" mode: no cropping, image keeps its natural aspect ratio */
.c361204 .c3675b8.c363eb0 {
    padding-top: 0;
    overflow: visible;
}

.c361204 .c3675b8.c363eb0 img {
    position: static;
    width: 100%;
    height: auto;
    /* Plugin images (charts, diagrams) are drawn at a fixed size and must not be stretched past
       it, so they cap at their natural width and sit centred in whatever block holds them. */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.c361204 .c3675b8.c363eb0 { text-align: center; }

.c361204 .c36fa90 {
    flex: 2 1 260px;
}
.c361204 .c36fa90 h2 { color: var(--color-heading); margin-top: 0; }

.c361204 .c36fa90 p {
    margin: 0 0 1em 0;
}

.c361204 .c36fa90 p:last-child {
    margin-bottom: 0;
}

/* Text-only blocks take the full width */
.c361204.c3688ca .c36fa90 {
    flex: 1 1 100%;
}

/* image-left renders photo first, image-right renders text first;
   markup order already matches, so no extra ordering rules needed. */

/* Stacked layout: text above, image below at full width */
.c361204.c362b15 {
    flex-direction: column;
    align-items: stretch;
}
.c361204.c362b15 .c36fa90 {
    flex: 1 1 100%;
}
.c361204.c362b15 .c3675b8 {
    flex: 1 1 100%;
    padding-top: 41%;
}
/* "Original size" must still win inside a stacked block. Same specificity as the rule above,
   so without this the 41% crop applied and a wide chart lost its edges again. */
.c361204.c362b15 .c3675b8.c363eb0 {
    padding-top: 0;
}
/* Don't upscale a diagram past the size it was drawn at — it just goes soft. */
.c361204.c362b15 .c3675b8.c363eb0 img {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   Public site footer
   ========================================================= */
.c360b05 {
    background: var(--color-footer-bg);
    color: var(--color-footer-text);
    border-top: 1px solid var(--color-border);
    padding: 40px 0 0;
    margin-top: 48px;
}

.c36d7d5 {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 32px;
}

.c365607 {
    flex: 2 1 260px;
}

.c367ba9 {
    max-height: 60px;
    width: auto;
    margin-bottom: 12px;
}

.c366f9c {
    margin: 0 0 12px 0;
}

.c36f759 {
    font-weight: 700;
    margin: 0 0 12px 0;
}

.c3606d2 {
    margin: 4px 0;
}

.c363de9 {
    flex: 1 1 160px;
}

.c363de9 h3 {
    margin: 0 0 10px 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.c363de9 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.c363de9 li {
    margin-bottom: 8px;
}

.c360b05 a {
    color: var(--color-footer-text);
}

.c360b05 a:hover {
    color: var(--color-accent);
}

.c366964 {
    border-top: 1px solid var(--color-border);
}

.c36c024 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 20px;
    font-size: 0.9rem;
}

.c366964 .c36bffa {
    opacity: 0.5;
    margin: 0 4px;
}

/* =========================================================
   Admin panel
   ========================================================= */
.c36c0ee {
    background: #f9fafb;
}

.c361c00 {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 20px 60px;
}

.c361c00 h2 {
    font-size: 1rem;
    font-weight: 800;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 28px 0 14px;
    border-bottom: 2px solid #fca5a5;
    padding-bottom: 6px;
}

.c36a8d9 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.c36a8d9 h1 {
    margin: 0;
    font-size: 1.5rem;
}

.c36a8d9 .c36b504 {
    font-size: 0.95rem;
}

.c367b60 {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.c367b60:hover {
    background: #1d4ed8;
    text-decoration: none;
}

.c36d2b6 {
    background: #6b7280;
}

.c36d2b6:hover {
    background: #4b5563;
}

.c36ae8d {
    padding: 6px 12px;
    font-size: 0.85rem;
}

.c36f9ee {
    background: #dc2626;
}

.c36f9ee:hover {
    background: #b91c1c;
}

/* Tabs */
.c366355 {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.c36233c {
    padding: 10px 18px;
    border-radius: 8px 8px 0 0;
    background: transparent;
    color: #6b7280;
    font-weight: 600;
    border: 1px solid transparent;
}

.c36233c.active {
    background: #ffffff;
    color: #2563eb;
    border-color: #e5e7eb;
    border-bottom-color: #ffffff;
    margin-bottom: -1px;
}

/* Cards / forms */
.c36f3c9 {
    background: #ffffff;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 24px;
    margin-bottom: 24px;
}

.c36f3c9 h2 {
    margin-top: 0;
    font-size: 1.2rem;
}

.c36f3c9 h3 {
    font-size: 1rem;
    margin: 0 0 4px 0;
}

.c361480 {
    margin-bottom: 18px;
}

.c361480 label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.c361480 .c363d3a {
    display: block;
    font-weight: 400;
    color: #6b7280;
    font-size: 0.85rem;
    margin-top: 4px;
}

.c361480 input[type="text"],
.c361480 input[type="tel"],
.c361480 input[type="email"],
.c361480 input[type="url"],
.c361480 input[type="password"],
.c361480 textarea,
.c361480 select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #c8ccd4;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #f7f8fa;
    transition: border-color .15s, box-shadow .15s;
}

.c361480 input[type="text"]:focus,
.c361480 input[type="tel"]:focus,
.c361480 input[type="email"]:focus,
.c361480 input[type="url"]:focus,
.c361480 input[type="password"]:focus,
.c361480 textarea:focus,
.c361480 select:focus {
    outline: none;
    border-color: #6366f1;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.c361480 textarea {
    resize: vertical;
}

.c364e20 {
    margin-bottom: 10px;
}

.c364e20 img {
    max-height: 80px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 4px;
    background: #fff;
}

.c364e20 .c366d4a {
    color: #6b7280;
    font-style: italic;
    font-size: 0.9rem;
}

/* Repeatable rows (menu items, links) */
.c36063b {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.c3648c9 {
    display: flex;
    gap: 10px;
    align-items: center;
}

.c3648c9 input,
.c3648c9 select {
    flex: 1;
}

.c365738 {
    background: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 9px 12px;
    cursor: pointer;
    font-weight: 600;
    line-height: 1;
    flex: 0 0 auto;
}

.c365738:hover {
    background: #fecaca;
}

/* Color swatches in the Theme tab */
.c36c692 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.c36c692 input[type="color"] {
    width: 48px;
    height: 40px;
    padding: 2px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.c36c692 input[type="text"] {
    flex: 1;
    font-family: monospace;
}

/* Content blocks editor */
.c361d73 {
    border-top: 2px solid #e5e7eb;
    padding: 16px 0;
    margin-bottom: 0;
}
.c361d73:first-of-type { border-top: none; }
summary.c36f368 { list-style: none; }
summary.c36f368::-webkit-details-marker { display: none; }

.c36f368 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
    background: #1e40af;
    border-radius: 6px;
    padding: 8px 12px;
}

.c36f368 .c36646c {
    flex: 1 1 220px;
}

.c36f368 .c361ccb {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}
.c36f368 .c361ccb:hover {
    background: rgba(255,255,255,0.3);
}

.c36f368 .c36f9ed {
    font-weight: 700;
    color: #1e40af;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #fff;
    border: none;
    border-radius: 4px;
    padding: 4px 10px;
    cursor: pointer;
    flex-shrink: 0;
}
.c36f368 .c36f9ed:hover { background: #dbeafe; }

.c368555 {
    display: flex;
    gap: 6px;
}

.c361ccb {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    font-weight: 600;
    line-height: 1;
}

.c361ccb:hover {
    background: #e5e7eb;
}

.c361ccb.c365738 {
    background: #fee2e2;
}

/* ---- Block info button ---- */
.c36e965 {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
}
.c36e965:hover { background: rgba(255,255,255,0.35); }

.c364c06 {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #e5e7eb;
}

.c364c06.c369396 {
    display: none;
}

/* Footer columns editor */
.c3623b7 {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    background: #fcfcfd;
}

.c36c556 {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.c36c556 input {
    flex: 1;
    font-weight: 700;
}

.c365a04 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
    padding-left: 4px;
}

/* Alerts */
.c363176 {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-weight: 500;
}

.c36496f {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.c369745 {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Login page */
.c362ffa {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c361bfe {
    width: 100%;
    max-width: 360px;
}

.c361bfe h1 {
    text-align: center;
    margin-top: 0;
}

/* ============================================================
   NEW BLOCK TYPES
   ============================================================ */

/* ---- Hero / Banner ---- */
.c36f2c0 {
    padding: 60px 24px;
    text-align: center;
    background-color: #1e3a5f;
    color: #fff;
}
.c36fa08 { max-width: 780px; margin: 0 auto; }
.c366f06 {
    font-size: var(--font-size-h1);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
}
.c364184 {
    font-size: var(--font-size-lead);
    margin: 0 0 28px;
    opacity: 0.92;
}
.c3618a1 {
    display: inline-block;
    padding: 14px 34px;
    background: var(--color-accent, #fd783b);
    color: #fff;
    border-radius: var(--btn-radius, 4px);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-body);
    transition: opacity .15s;
}
.c3618a1:hover { opacity: .85; }

/* ---- Feature Columns ---- */
.c36129c { padding: 48px 24px; display: block; }
.c360837 {
    text-align: center;
    font-size: var(--font-size-h2, 2rem);
    font-family: var(--font-heading, inherit);
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--color-heading, #120575);
    width: 100%;
}
.c36d80e {
    text-align: center;
    font-size: var(--font-size-body);
    color: #666;
    margin: 0 auto 32px;
    max-width: 600px;
}
.c362c40 { display: grid; gap: 28px; width: 100%; }
.c3617d7 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.c360131 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.c36b99c { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.c36174e { text-align: center; padding: 28px 16px; }
.c367e8c {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    color: var(--color-accent, #fd783b);
    display: block;
}
.c367e8c svg { width: 100%; height: 100%; }
.c368832 {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 18px;
    display: block;
    border-radius: 50%;
}
.c364738 {
    font-size: var(--font-size-lead);
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--color-heading, #111);
}
.c369a9a { font-size: var(--font-size-body); color: #555; line-height: 1.6; }
.c369a9a p { margin: 0; }

/* ---- CTA Button ---- */
.c369b29 { padding: 36px 24px; }
.c366c5d { margin: 0 0 14px; font-size: var(--font-size-body); color: #555; }
.c3650b7 {
    display: inline-block;
    padding: 14px 34px;
    background: var(--color-accent, #fd783b);
    color: #fff;
    border-radius: var(--btn-radius, 4px);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-body);
    transition: opacity .15s;
}
.c3650b7:hover { opacity: .85; }
.c36d8c9 { padding: 10px 22px; font-size: var(--font-size-body); margin-top: 14px; display: inline-block; }

/* ---- Block heading (text blocks with heading level) ---- */
.c36d688 { margin-top: 0; color: var(--color-heading); font-family: var(--font-heading, inherit); font-weight: 800; line-height: 1.2; margin-bottom: 0.5rem; }

/* ---- FAQ / Accordion ---- */
.c36c0d4 { padding: 48px 24px; max-width: 860px; margin: 0 auto; }
.c363d37 { display: flex; flex-direction: column; gap: 8px; }
.c363d37.c366771 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px; max-width: 1200px; }
.c36170e { border: 1px solid #e2e8f0; border-radius: 6px; overflow: hidden; }
.c3652ee {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-content-text, #000);
}
.c3652ee:hover { background: #f8fafc; }
.c362587 { font-size: 1.25rem; line-height: 1; margin-left: 12px; flex-shrink: 0; }
.c3614be { padding: 4px 20px 16px; font-size: 0.96rem; line-height: 1.65; }
.c3614be p { margin: 8px 0 0; }

/* ---- Pricing / Course Cards ---- */
.c367a62 { padding: 48px 24px; background: #f8fafc; }
/* Intro section (label + heading + subhead above grid) */
.c36928d { max-width: 860px; margin: 0 0 36px; }
.c364cf3 { font-size: var(--font-size-eyebrow); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-accent); margin: 0 0 10px; }
.c36c80f { font-size: var(--font-size-h1); font-family: var(--font-heading, inherit); font-weight: 900; line-height: 1.1; color: var(--color-heading, #111); margin: 0 0 16px; }
.c36eedd { font-size: var(--font-size-body); color: #555; line-height: 1.7; margin: 0; max-width: 820px; }
/* Grid */
.c36c815 { display: grid; gap: 24px; max-width: 1100px; margin: 0 auto; }
.c36802b { grid-template-columns: repeat(2, 1fr); }
.c36f11c { grid-template-columns: repeat(3, 1fr); }
.c36615c { grid-template-columns: repeat(4, 1fr); }
/* Card */
.c36559c { background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 24px; display: flex; flex-direction: column; }
.c3613a3 { border-color: var(--color-accent); box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.c36386b { display: inline-block; font-size: var(--font-size-eyebrow); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #fff; background: var(--color-accent); padding: 3px 10px; border-radius: 4px; margin-bottom: 10px; white-space: nowrap; }
.c36d2da { display: inline-block; font-size: var(--font-size-eyebrow); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #555; background: #f1f5f9; padding: 3px 9px; border-radius: 4px; margin-bottom: 10px; }
.c364eb1 { font-size: var(--font-size-h4); font-weight: 800; color: var(--color-heading, #1e293b); margin: 0 0 4px; }
.c360578 { font-size: var(--font-size-small); color: #64748b; margin: 0 0 14px; }
.c362999 { font-size: var(--font-size-small); color: #475569; margin: 0 0 16px; line-height: 1.6; }
.c36bb95 { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 7px; }
.c36bb95 li { font-size: var(--font-size-small); color: #334155; padding-left: 22px; position: relative; }
.c36bb95 li::before { content: "✓"; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }
/* Card footer: meta left, button right */
.c366b46 { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 16px; border-top: 1px solid #f1f5f9; }
.c36b4b4 { flex: 1; min-width: 0; }
.c36928f { font-size: var(--font-size-small); font-weight: 700; color: #1e293b; margin: 0; }
.c360f6d { font-size: var(--font-size-eyebrow); color: #64748b; margin: 3px 0 0; }
.c369559 { display: inline-block; flex-shrink: 0; text-align: center; background: var(--color-accent); color: #fff; padding: 10px 18px; border-radius: var(--btn-radius, 4px); text-decoration: none; font-weight: 600; font-size: var(--font-size-small); white-space: nowrap; transition: opacity .15s; }
.c369559:hover { opacity: .88; color: #fff; text-decoration: none; }

/* ---- Custom HTML ---- */
.c361b28 { padding: 24px; }

/* ---- Two-column HTML ---- */
.c3672a2 { padding: 40px 24px; }
.c3650cc { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1200px; margin: 0 auto; }
.c364431 { min-width: 0; }

/* ---- Admin: block type panels ---- */
.c364034 { margin-top: 12px; }
.c369396 { display: none !important; }
.c366c32 { border: 1px solid #e5e7eb; border-radius: 6px; padding: 12px; margin-bottom: 10px; background: #f9fafb; }
.c36d52c { border: 1px solid #e5e7eb; border-radius: 6px; padding: 12px; margin-bottom: 10px; background: #f9fafb; }

/* ---- Social links in header top row ---- */
.c36fdad { display: flex; gap: 10px; align-items: center; margin-left: auto; }
.c360817 { font-size: 0.78rem; font-weight: 600; text-decoration: none; color: #475569; opacity: .7; transition: opacity .15s; white-space: nowrap; }
.c360817:hover { opacity: 1; }

/* ---- Nav CTA button ---- */
.c36dcae { display: inline-flex; align-items: center; padding: 8px 18px; border: 2px solid currentColor; border-radius: var(--btn-radius, 4px); font-size: 0.88rem; font-weight: 600; text-decoration: none; white-space: nowrap; transition: opacity .15s; flex-shrink: 0; }
.c36dcae:hover { opacity: .8; }

/* ---- Social links in footer ---- */
.c36bd41 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.c362f4e {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid currentColor;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-footer-text, #000);
    opacity: 0.8;
    transition: opacity .15s;
}
.c362f4e:hover { opacity: 1; }

/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */
.site-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 501;
    background: var(--color-accent, #fd783b);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
}
.site-topbar a {
    color: #fff;
    text-decoration: none;
    display: block;
}
.site-topbar a:hover { text-decoration: underline; }

/* ============================================================
   HEADER: city label + hamburger
   ============================================================ */
.c3649c7 {
    font-size: 0.85rem;
    opacity: 0.75;
    margin-right: auto;
    padding-left: 8px;
}

/* Hamburger button */
.c363505 {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    order: 3;
}
.c363505 span {
    display: block;
    height: 2px;
    background: var(--color-header-text, #ffffff);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
/* Animate to X when open */
.c363505.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.c363505.is-open span:nth-child(2) { opacity: 0; }
.c363505.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE NAV
   ============================================================ */
@media (max-width: 768px) {
    .c36b4ed {
        flex-wrap: wrap;
        position: relative;
    }

    .c363505 {
        display: flex;
    }

    .c3649c7 {
        display: none;
    }

    .c360c91 {
        order: 2;
        font-size: 0.9rem;
    }

    .c36b4d9 {
        display: none;
        width: 100%;
        order: 4;
        border-top: 1px solid rgba(0,0,0,0.08);
        margin-top: 8px;
    }
    .c36b4d9.is-open {
        display: block;
    }
    .c36b4d9 ul {
        flex-direction: column;
        gap: 0;
        padding: 8px 0;
    }
    .c36b4d9 ul li a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }

    /* Stack hero heading on mobile */
    .c366f06 { font-size: var(--font-size-h1); }

    /* Feature grids collapse to 2 col on mobile */
    .c360131,
    .c36b99c { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }

    /* Image+text blocks stack vertically on mobile */
    .c361204.c369ae4,
    .c361204.c362d1d {
        flex-direction: column;
    }
    .c361204.c369ae4 .c3675b8,
    .c361204.c362d1d .c3675b8 {
        width: 100%;
    }
}

/* ============================================================
   PHOTO GALLERY
   ============================================================ */
.c36dcf7 { padding: 48px 24px; }
.c36bc63 { display: grid; gap: 12px; }
.c3661c4 { grid-template-columns: repeat(2, 1fr); }
.c3688b6 { grid-template-columns: repeat(3, 1fr); }
.c360770 { grid-template-columns: repeat(4, 1fr); }
.c369ada { overflow: hidden; border-radius: 6px; aspect-ratio: 4/3; }
.c369ada img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.c369ada:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
    .c3688b6,
    .c360770 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .c3661c4,
    .c3688b6,
    .c360770 { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.c36ca82 { padding: 48px 24px; display: block; }
.c3686b3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    margin-top: 32px;
    position: relative;
    width: 100%;
}
/* Connector line between steps on desktop */
@media (min-width: 600px) {
    .c3686b3::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 18%;
        right: 18%;
        height: 2px;
        background: var(--color-accent, #fd783b);
        opacity: 0.25;
        z-index: 0;
    }
}
.c36a4e5 {
    text-align: center;
    position: relative;
    z-index: 1;
}
.c3691f7 {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--color-accent, #fd783b);
    color: #fff;
    font-size: var(--font-size-h4);
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.c367abf {
    width: 80px; height: 80px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
    border-radius: 50%;
}
.c3620f2 {
    font-size: var(--font-size-body);
    font-weight: 700;
    margin: 0 0 10px;
    color: #111;
}
.c360b3c {
    font-size: var(--font-size-small);
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.c36f34f {
    padding: 48px 0;
    background: #1e3a5f;
    color: #fff;
    display: block;
}
.c36f34f .c360837 { color: inherit; }
.c3604f5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px;
    margin-top: 24px;
}
.c36985b { text-align: center; }
.c36a4e6 {
    font-size: var(--font-size-h1);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--color-accent, #fd783b);
}
/* Override accent on dark backgrounds */
.c36f34f .c36a4e6 { color: #fff; }
.c366182 {
    font-size: var(--font-size-body);
    opacity: 0.85;
    font-weight: 500;
}

/* ============================================================
   CARDS GRID
   ============================================================ */
.c36e674 { padding: 56px 0; }
.c36e674 > .container { /* inherited from site-template wrapping */ }
.c36e1e9 { margin-bottom: 40px; }
.c36b1f8 { font-size: var(--font-size-eyebrow); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-accent, #2563eb); margin: 0 0 10px; }
.c360b4f { text-align: left; margin: 0 0 4px; font-size: var(--font-size-h2, 2rem); font-family: var(--font-heading, inherit); font-weight: 800; line-height: 1.2; color: var(--color-heading, #1a2e5a); }
.c36b688 { text-align: left; font-size: var(--font-size-h1); font-family: var(--font-heading, inherit); font-weight: 900; line-height: 1.1; color: var(--color-accent, #2563eb); margin: 0 0 16px; }
.c36f9c4 { margin: 0; font-size: var(--font-size-body); color: #4b5563; line-height: 1.7; max-width: 680px; }
.c36fd25 {
    display: grid;
    gap: 20px;
    width: 100%;
}
.c368413 { grid-template-columns: repeat(2, 1fr); }
.c36dea8 { grid-template-columns: repeat(3, 1fr); }
.c365634 { grid-template-columns: repeat(4, 1fr); }
.c368e9b {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.c368e9b:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); border-color: #cbd5e1; }
.c36b6d4 { width: 44px; height: 44px; background: var(--color-accent, #2563eb); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; flex-shrink: 0; }
.c36b6d4 svg { width: 24px; height: 24px; color: #fff; stroke: #fff; }
.c369a6e {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    margin-bottom: 16px;
}
.c366da1 {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.c363a3c {
    font-size: var(--font-size-body);
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--color-heading, #1a2e5a);
    line-height: 1.3;
}
.c36d6b8 {
    font-size: 0.88rem;
    color: #4b5563;
    margin: 0 0 12px;
    flex: 1;
    line-height: 1.6;
}
.c362b45 { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 12px; }
.c363148 { display: inline-block; font-size: 0.72rem; font-weight: 600; background: transparent; border: 1.5px solid var(--color-accent); color: var(--color-accent); border-radius: 4px; padding: 4px 10px; }
.c3647c0 { font-size: 2.2rem; line-height: 1; margin-bottom: 16px; display: block; }
.c361ca2 { text-align: center; }
.c361ca2 .c36b6d4 { margin-left: auto; margin-right: auto; }
.c361ca2 .c3647c0 { text-align: center; }
.c361ca2 .c362b45 { justify-content: center; }
.c36aff7 {
    display: inline-block;
    padding: 8px 18px;
    background: var(--color-accent, #2563eb);
    color: #fff;
    border-radius: var(--btn-radius, 4px);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 12px;
    transition: opacity 0.15s;
}
.c36aff7:hover { opacity: 0.85; }

@media (max-width: 768px) {
    .c36dea8,
    .c365634 { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   DROPDOWN NAVIGATION
   ============================================================ */

/* Parent items with children */
.c36b4d9 ul li.c362667 { position: relative; }

.c36b4d9 ul li.c362667 > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.c368673 {
    font-size: 0.7rem;
    opacity: 0.7;
    transition: transform 0.2s;
    display: inline-block;
}

/* Dropdown panel — hidden by default */
.c369778 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-header-bg, #120575);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    padding: 6px 0;
    z-index: 200;
    list-style: none;
    margin: 0;
}

/* Show on hover (desktop) */
.c36b4d9 ul li.c362667:hover > .c369778 {
    display: block;
}

.c36b4d9 ul li.c362667:hover .c368673 {
    transform: rotate(180deg);
}

.c369778 li a {
    display: block;
    padding: 9px 18px;
    white-space: nowrap;
    color: var(--color-header-text, #ffffff);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.15s;
}

.c369778 li a:hover {
    background: rgba(0,0,0,0.05);
}

/* ---- Mobile: dropdown becomes accordion ---- */
@media (max-width: 768px) {
    .c369778 {
        display: none;
        position: static;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(0,0,0,0.06);
        border-radius: 0;
        padding: 0;
        background: rgba(0,0,0,0.03);
    }
    /* Show when parent li has .open class (toggled by JS) */
    .c36b4d9 ul li.c362667.open > .c369778 {
        display: block;
    }
    .c36b4d9 ul li.c362667 > a {
        justify-content: space-between;
    }
    .c369778 li a {
        padding: 9px 28px;
    }
}

/* ============================================================
   ADMIN: menu item card styles
   ============================================================ */
.c36fdf5 {
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    margin-bottom: 10px;
    background: #fafafa;
    overflow: hidden;
}
.c3685a5 {
    padding: 8px;
    margin: 0 !important;
    border-bottom: none;
}
.c361ae6 {
    background: #f0f4ff;
    border-top: 1px solid #dbe4ff;
    padding: 10px 14px 12px;
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE FIXES (v16 mobile/tablet audit)
   ============================================================ */

/* Fix #20: prevent horizontal scroll on any device.

   MUST be clip, not hidden. `overflow-x: hidden` forces the other axis to compute as
   `auto`, which turns html AND body into scroll containers. With two of them the
   document has no single scrolling element and the browser silently stops honouring
   anchor jumps: clicking a #link updates the URL and nothing moves. That is what broke
   the header's Services button — the markup was correct the whole time.

   `overflow-x: clip` stops the same horizontal overflow WITHOUT creating a scroll
   container, so anchors and smooth scrolling keep working. `hidden` stays first as the
   fallback for Safari below 16, which ignores the clip line. */
html, body {
    overflow-x: hidden;
    overflow-x: clip;
}

/* ---- TABLET (769px – 1024px) ---- */
@media (min-width: 769px) and (max-width: 1024px) {

    /* Hero font scaling for tablet */
    .c366f06 { font-size: var(--font-size-h1); }
    .c364184  { font-size: var(--font-size-lead); }
    .c36f2c0    { padding: 50px 32px; }

    /* Section headings on tablet */
    .c360837 { font-size: var(--font-size-h2); }

    /* Tighten block gap slightly */
    .c361204 { gap: 28px; margin-bottom: 36px; }

    /* Steps: force 2 or 3 col max on tablet */
    .c3686b3 { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }

    /* Stats: allow slightly smaller minwidth on tablet */
    .c3604f5 { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); }
}

/* ---- MOBILE (≤ 768px) — comprehensive overrides ---- */
@media (max-width: 768px) {

    /* Fix #11: hero mobile padding */
    .c36f2c0 { padding: 40px 20px; }

    /* Fix #1 + hero heading already has 1.75rem — add subtext scaling */
    .c364184  { font-size: var(--font-size-lead); margin-bottom: 20px; }
    .c3618a1      { padding: 14px 28px; font-size: var(--font-size-body); }

    /* Fix #12: section headings scale down */
    .c360837 { font-size: var(--font-size-h2); margin-bottom: 24px; }

    /* Fix #16: tighter block gap on mobile */
    .c361204 { gap: 20px; margin-bottom: 32px; }

    /* Force all feature grids to single column on mobile */
    .c3617d7,
    .c360131,
    .c36b99c {
        grid-template-columns: 1fr;
    }
    /* Very small: single column for feature grids with lots of text */
    .c369a9a { font-size: var(--font-size-body); }

    /* Fix #9: steps — single column on mobile, no connector line */
    .c3686b3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .c3686b3::before { display: none; }
    .c36a4e5 { text-align: left; display: flex; align-items: flex-start; gap: 16px; }
    .c3691f7 { margin: 0; flex-shrink: 0; width: 44px; height: 44px; font-size: var(--font-size-h4); }
    .c367abf   { margin: 0; flex-shrink: 0; width: 48px; height: 48px; }
    .c363967   { flex: 1 1 auto; min-width: 0; }
    .c3620f2 { margin-top: 0; }

    /* Fix #18: card-link touch target */
    .c36aff7 { padding: 11px 20px; }

    /* Fix #8: gallery single col on very small screens — 2 col min on mobile is fine
       but ensure images don't overflow */
    .c369ada { border-radius: 4px; }

    /* Stats: 2 col on mobile */
    .c3604f5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .c36a4e6 { font-size: var(--font-size-h1); }

    /* Cards: single column on small phones */
    .c368413,
    .c36dea8,
    .c365634 {
        grid-template-columns: 1fr;
    }

    /* CTA button — full width on mobile */
    .c369b29 { padding: 28px 20px; }
    .c3650b7   { display: block; text-align: center; padding: 15px 20px; }

    /* FAQ touch friendliness */
    .c3652ee { padding: 14px 16px; }
    .c36c0d4    { padding: 32px 16px; }
    .c363d37.c366771 { grid-template-columns: 1fr; }

    /* Custom HTML — constrain embeds */
    .c361b28 { padding: 16px; overflow-x: auto; }

    /* Two-column HTML — stack on mobile */
    .c3650cc { grid-template-columns: 1fr; gap: 20px; }

    /* Pricing cards — single column on mobile */
    .c36802b, .c36f11c, .c36615c { grid-template-columns: 1fr; }

    /* Feature columns — single col on very small screens */
    .c3617d7 { grid-template-columns: 1fr 1fr; }

    /* Content block photo full width when stacked */
    .c361204 .c3675b8 { flex: 1 1 100%; }
    .c361204 .c36fa90  { flex: 1 1 100%; }

    /* Footer: stack bottom bar vertically */
    .c36c024 {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    /* Gallery: 2col on mobile, 1col on very small */
    .c3688b6,
    .c360770 { grid-template-columns: repeat(2, 1fr); }
}

/* ---- VERY SMALL PHONES (≤ 380px) ---- */
@media (max-width: 380px) {
    .c366f06  { font-size: var(--font-size-h1); }
    .c364184  { font-size: var(--font-size-lead); }

    /* Single col everything */
    .c3617d7,
    .c360131,
    .c36b99c { grid-template-columns: 1fr; }

    .c3661c4,
    .c3688b6,
    .c360770 { grid-template-columns: repeat(2, 1fr); }

    .c3604f5 { grid-template-columns: 1fr 1fr; }

    /* Header phone number — shrink slightly */
    .c360c91 { font-size: 0.85rem; }

    /* Topbar font */
    .site-topbar { font-size: 0.8rem; padding: 6px 12px; }
}

/* ---- TOUCH DEVICE ENHANCEMENTS ---- */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover-only dropdown on touch — JS handles it */
    .c36b4d9 ul li.c362667:hover > .c369778 { display: none; }

    /* Larger tap areas for nav links */
    .c36b4d9 a { padding: 4px 0; }

    /* Remove gallery hover zoom on touch */
    .c369ada:hover img { transform: none; }

    /* Card hover shadow — remove on touch */
    .c368e9b:hover { box-shadow: none; }
}

/* ============================================================
   TWO-ROW HEADER + STICKY
   ============================================================ */

/* Sticky/fixed header */
.site-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Push page content down so it doesn't hide under the fixed header */
.site-header-sticky ~ main,
body.c36ad15 main {
    padding-top: var(--fixed-header-height, 120px);
}

/* TOP ROW — always white, logo + info items */
.c36de8c {
    background: var(--color-header-top-bg, #ffffff);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.c36b9dd {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 12px 20px;
    flex-wrap: wrap;
}

/* Info items — logo left, middle items center-right, last item far right */
.c36f75f {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: center;
    padding-left: 192px;
}

/* Push last info item to the far right */
.c363f17:last-child {
    margin-left: auto;
}
.c363f17 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: #333333; /* always dark — top row is always white/light */
}
.c36954a {
    font-size: 1rem;
    line-height: 1;
}

/* BOTTOM ROW — colored nav bar */
.c36b815 {
    background: #fd783b;
}
.c3617bf {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    min-height: 52px;
}

/* Nav links in colored bar */
.c36b815 .c36b4d9 {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}
.c36b815 .c36b4d9 ul {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
.c36b815 .c36b4d9 ul li a {
    display: block;
    padding: 14px 20px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.15s;
}
.c36b815 .c36b4d9 ul li a:hover {
    background: rgba(0,0,0,0.12);
    text-decoration: none;
}

/* Dropdown in colored nav */
.c36b815 .c369778 {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
}
.c36b815 .c369778 li a {
    color: #333 !important;
    padding: 9px 18px;
}

/* Helpline + phone button */
.c3600df {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}
.c368a26 {
    display: flex;
    flex-direction: column;
    font-size: 0.78rem;
    line-height: 1.3;
    text-align: right;
}
.c3674ac   { font-weight: 700; }
.c360d76 { opacity: 0.85; }

/* Phone button styles */
.c36e8a6 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-weight: 800;
    font-size: 1.15rem;
    border-radius: var(--btn-radius, 4px);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s;
}
.c36e8a6:hover { opacity: 0.85; text-decoration: none; }
.c366e18 {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.c363909 {
    border: none;
}
.c36f17f {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 1rem;
    font-weight: 600;
}

/* ============================================================
   MOBILE: two-row header
   ============================================================ */
@media (max-width: 768px) {

    /* Top row: stack logo and info */
    .c36b9dd {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 10px 16px;
        flex-wrap: wrap;
    }
    .c36f75f {
        gap: 16px;
        margin-left: 0;
        padding-left: 0;
    }
    .c363f17 { font-size: 0.82rem; }

    /* Nav row: hamburger visible */
    .c3617bf {
        flex-wrap: wrap;
        padding: 0 12px;
        min-height: 48px;
        position: relative;
    }
    .c363505 { display: flex; order: 1; }
    .c3600df { order: 2; margin-left: auto; }
    .c3674ac, .c360d76 { display: none; }
    .c36e8a6 { padding: 7px 14px; font-size: 0.85rem; }

    /* Mobile nav dropdown */
    .c36b815 .c36b4d9 {
        display: none;
        width: 100%;
        order: 10;
        background: rgba(0,0,0,0.15);
    }
    .c36b815 .c36b4d9.is-open { display: block; }
    .c36b815 .c36b4d9 ul {
        flex-direction: column;
        gap: 0;
    }
    .c36b815 .c36b4d9 ul li a {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* Mobile accordion dropdowns */
    .c36b815 .c369778 {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(0,0,0,0.1);
        padding: 0;
    }
    .c36b815 .c36b4d9 ul li.c362667.open > .c369778 {
        display: block;
    }
    .c36b815 .c369778 li a {
        color: #fff !important;
        padding: 10px 28px;
    }
}

@media (max-width: 480px) {
    .c36f75f { display: none; } /* hide info items on very small screens */
    .c36b9dd  { padding: 8px 12px; }
}

/* ============================================================
   HEADER LAYOUT: Single Row
   ============================================================ */
.c365e09 .c36b41c { /* bg set inline */ }
.c365e09 .c368f9f {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 20px;
    min-height: 64px;
}
.c365e09 .c36cc53 {
    flex-shrink: 0;
    margin-right: 24px;
    display: flex;
    align-items: center;
}
.c365e09 .c36cc53 a {
    display: flex;
    align-items: center;
}
.c365e09 .c36cc53 img {
    display: block;
    width: auto;
}
.c365e09 .c36fa03 {
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.c365e09 .c36b4d9 {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}
.c365e09 .c36b4d9 > ul {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
.c365e09 .c36b4d9 > ul > li > a {
    display: block;
    padding: 20px 18px;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.15s;
}
.c365e09 .c36b4d9 > ul > li > a:hover {
    background: rgba(0,0,0,0.12);
    text-decoration: none;
}
.c365e09 .c369778 {
    display: none;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    flex-direction: column;
}
.c365e09 .c36b4d9 ul li.c362667:hover > .c369778 {
    display: block;
}
.c365e09 .c369778 li a {
    display: block;
    color: #333 !important;
    padding: 9px 18px;
    white-space: nowrap;
}
.c365e09 .c3600df {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}
.c365e09 .c363505 { display: none; }

@media (max-width: 768px) {
    .c365e09 .c368f9f {
        flex-wrap: wrap;
        padding: 0 12px;
        min-height: 52px;
        position: relative;
    }
    .c365e09 .c36cc53 { margin-right: 0; }
    .c365e09 .c363505 { display: flex; order: 1; }
    .c365e09 .c3600df { order: 2; margin-left: auto; }
    .c365e09 .c36b4d9 {
        display: none;
        width: 100%;
        order: 10;
        background: rgba(0,0,0,0.15);
    }
    .c365e09 .c36b4d9.is-open { display: block; }
    .c365e09 .c36b4d9 > ul { flex-direction: column; gap: 0; }
    .c365e09 .c36b4d9 > ul > li > a {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .c365e09 .c369778 {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(0,0,0,0.1);
        padding: 0;
    }
    .c365e09 .c36b4d9 ul li.c362667.open > .c369778 { display: block; }
    .c365e09 .c369778 li a { color: #fff !important; padding: 10px 28px; }
}

/* ============================================================
   SMOOTH SCROLL + ANCHOR OFFSET FOR STICKY HEADER
   ============================================================ */

/* Smooth scrolling site-wide */
html {
    scroll-behavior: smooth;
}

/* Offset anchor targets so they don't hide under the fixed header.
   JS sets --fixed-header-height on :root — adds 16px breathing room */
[id] {
    scroll-margin-top: calc(var(--fixed-header-height, 120px) + 16px);
}

/* ============================================================
   FOOTER DISCLAIMER — between main footer and copyright bar
   ============================================================ */
.c36cdf0 {
    background: var(--color-footer-bg, #1a1a2e);
}
.c3629c3 {
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 0 20px;
}
.c366b3b {
    color: var(--color-footer-text, #ffffff);
    padding: 20px 20px;
    font-size: 0.82rem;
    line-height: 1.7;
    opacity: 0.85;
}
.c366b3b a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
}

/* Footer main area */
.c36a6de {
    padding: 40px 0 0;
}

/* Footer bottom: logo + copyright side by side */
.c367ec7 {
    max-height: 48px;
    width: auto;
    opacity: 0.9;
}
.c36c024 {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 20px;
    justify-content: space-between;
}

/* ============================================================
   STICKY BOTTOM BAR
   ============================================================ */
.c3639fd {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 490;
    padding: 14px 24px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}
.c36d6fe {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.c3607b7 {
    font-size: 1.2rem;
    font-weight: 600;
}
.c3656cd {
    cursor: help;
    opacity: 0.85;
    margin-left: 4px;
}
.c3678c6 {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.15s;
}
.c3678c6:hover { opacity: 0.85; text-decoration: none; }
.c3669f8 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--color-header-bg, #1a1464);
    flex-shrink: 0;
}
.c363d75 {
    font-size: 1.5rem;
    font-weight: 800;
}

/* Push page content up so sticky bar doesn't cover it */
body { padding-bottom: 70px; }

/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */
.c36d0b8 {
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 491;
    width: 48px;
    height: 44px;
    border-radius: 6px;
    border: 2.5px solid #ffffff;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
    line-height: 1;
}
.c36d0b8.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.c36d0b8:hover { opacity: 0.85; }

@media (max-width: 768px) {
    .c3607b7 { font-size: 1rem; }
    .c363d75 { font-size: 1.2rem; }
    .c3669f8 { width: 38px; height: 38px; }
    .c36d6fe { gap: 14px; }
    body { padding-bottom: 72px; }
}

/* ============================================================
   FOOTER COLUMN TYPES
   ============================================================ */
.c3615b6 {
    list-style: none;
    margin: 0;
    padding: 0;
}
.c369085 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.c3635a9 {
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.c36b271 p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 10px;
    opacity: 0.85;
}

/* ============================================================
   SIMPLE 3-COLUMN FOOTER
   ============================================================ */
.c36bcfc,
.c362205,
.c361eba {
    display: grid;
    gap: 40px;
    padding: 0 20px 40px;
}
.c36bcfc { grid-template-columns: repeat(2, 1fr); }
.c362205 { grid-template-columns: repeat(3, 1fr); }
.c361eba { grid-template-columns: repeat(4, 1fr); }
.c36284d {}
.c36c406 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--color-footer-text, #fff);
}
.c3608b4 {
    width: 40px;
    height: 2px;
    background: var(--color-accent, #fd783b);
    margin-bottom: 18px;
}
.c369ce0 {
    font-size: 0.88rem;
    line-height: 1.75;
    opacity: 0.85;
    color: var(--color-footer-text, #fff);
}
.c36e446 {
    list-style: none;
    margin: 0;
    padding: 0;
}
.c36e446 li {
    margin-bottom: 10px;
}
.c36e446 li a {
    color: var(--color-footer-text, #fff);
    font-size: 0.9rem;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.15s;
}
.c36e446 li a:hover { opacity: 1; }

/* Logo below a footer column — white box so the logo's own colors (built for
   a light background) stay legible against a dark footer background. */
.c369eaf {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 8px;
}
.c3640b3 {
    display: block;
    max-height: 40px;
    max-width: 100%;
    width: auto;
}

@media (max-width: 768px) {
    .c36bcfc,
    .c362205,
    .c361eba {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 16px 28px;
    }
}

/* ============================================================
   INFO TRIGGER BUTTON (ℹ️ circle)
   ============================================================ */
.c364b03 {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    line-height: 1;
    transition: opacity 0.15s;
}
.c364b03:hover { opacity: 0.75; }
.c366424 { margin-left: 8px; }

/* ============================================================
   INFO POPUP
   ============================================================ */
.c363c71 {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 900;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.c363c71.is-open {
    display: flex;
}
.c368e95 {
    background: #fff;
    border-radius: 12px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
    animation: popupIn 0.2s ease;
}
@keyframes popupIn {
    from { transform: scale(0.95); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}
.c36f8f9 {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #333;
    transition: background 0.15s;
}
.c36f8f9:hover { background: #f0f0f0; }
.c36b7c8 {
    display: block;
    width: calc(100% - 32px);
    margin: 16px auto 0;
    max-height: 220px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.c36a1c1 {
    padding: 24px 28px 28px;
}
.c36d11f {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 16px;
    color: #111;
}
.c36d228 p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
    margin: 0 0 14px;
}
.c36d228 p:last-child { margin-bottom: 0; }
.c36d228 a {
    color: var(--color-accent, #fd783b);
    text-decoration: none;
}
.c36d228 a:hover { text-decoration: underline; }

@media (max-width: 480px) {
    .c36a1c1 { padding: 18px 18px 22px; }
    .c36d11f { font-size: 1.15rem; }
}

/* ============================================================
   HERO SPLIT BLOCK (text left, image right)
   ============================================================ */
.c362f6a {
    padding: 60px 0;
}
.c36c0fb {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    width: 100%;
}
.c3642a0 {
    flex: 1 1 340px;
    min-width: 0;
}
.c365fc5 {
    font-size: var(--font-size-h1, 2.4rem);
    font-family: var(--font-heading, inherit);
    font-weight: 900;
    line-height: 1.08;
    margin: 0 0 14px;
    color: inherit;
}
.c36e7ad {
    font-size: var(--font-size-body);
    line-height: 1.5;
    margin: 0 0 20px;
    opacity: 0.85;
}
.c36f447 {
    font-size: var(--font-size-body);
    line-height: 1.7;
    color: inherit;
    opacity: 0.9;
    margin: 0 0 28px;
}
.c366611 {
    display: inline-block;
    background: var(--color-accent, #fd783b);
    color: #fff;
    padding: 13px 20px;
    border-radius: var(--btn-radius, 5px);
    font-weight: 700;
    font-size: var(--font-size-body);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s;
}
.c366611:hover { opacity: 0.85; text-decoration: none; }
.c36cb3f { display: flex; gap: 14px; flex-wrap: nowrap; align-items: center; }
.c364408 {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 13px 20px;
    border-radius: var(--btn-radius, 5px);
    font-weight: 700;
    font-size: var(--font-size-body);
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid rgba(255,255,255,0.7);
    transition: border-color 0.15s, color 0.15s;
}
.c364408:hover { border-color: #fff; color: #fff; text-decoration: none; opacity: 0.9; }

/* Right image with caption overlay */
.c36f41a {
    flex: 1 1 380px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    max-width: 500px;
    min-width: 0;
}
.c365275 {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
.c367345 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.55);
    color: #fff;
    text-align: center;
    padding: 14px 16px;
}
.c3602f2 {
    font-size: var(--font-size-lead);
    font-weight: 700;
    margin-bottom: 4px;
}
.c366541 {
    font-size: var(--font-size-body);
    opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
    .c362f6a { padding: 36px 0; }
    .c36c0fb { gap: 28px; flex-direction: column; align-items: stretch; }
    .c365fc5 { font-size: var(--font-size-h1); }
    .c36f41a { max-width: 100%; }
    .c36cb3f { flex-wrap: wrap; }
    .c366611, .c364408 { flex: 1 1 auto; text-align: center; }
    .c3667da { flex-direction: column; }
    .c3667da .c36f41a { order: -1; }
    .c365fc4 { flex-direction: column; }
    .c365fc4 .c3642a0 { order: -1; }
}

/* Hero split — when no image, constrain text width */
.c362f6a .c36c0fb:not(:has(.c36f41a)) .c3642a0 {
    max-width: 640px;
}

/* ============================================================
   FEATURE SPLIT BLOCK (icon grid left, arched image right)
   ============================================================ */
.c366d8b {
    background: #f3f6f7;
    padding: 60px 0;
}
.c369d25 {
    display: flex;
    align-items: flex-start;
    gap: 56px;
    flex-wrap: wrap;
    width: 100%;
}
/* LEFT */
.c369d18 { flex: 1 1 45%; min-width: 0; }
.c361732 {
    font-size: var(--font-size-h2);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 14px;
    color: #111;
}
.c3639b6 {
    font-size: var(--font-size-body);
    color: #555;
    margin: 0 0 28px;
    line-height: 1.7;
}
/* 2-column icon grid */
.c366c0f {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
}
.c36f4ad {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.c36927e {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}
.c363884 {}
.c362e94 {
    font-size: var(--font-size-body);
    font-weight: 700;
    margin: 0 0 6px;
    color: #fd783b;
}
.c360f4f {
    font-size: var(--font-size-small);
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* RIGHT */
.c36ff7e {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
/* Rounded rectangle image frame */
.c36e9b0 {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.c36ba7d {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
/* Star badge */
.c36ab8c {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f8f8;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 20px;
    width: 100%;
    max-width: 380px;
}
.c360985 {
    color: #f5a623;
    font-size: var(--font-size-lead);
    letter-spacing: 2px;
}
.c36d9b3 {
    font-weight: 700;
    font-size: var(--font-size-body);
    color: #111;
}

/* Mobile */
@media (max-width: 768px) {
    .c366d8b { padding: 36px 0; }
    .c369d25 { gap: 32px; flex-direction: column; align-items: stretch; }
    .c361732 { font-size: var(--font-size-h2); }
    .c366c0f { grid-template-columns: 1fr; gap: 18px; }
    .c36ff7e { flex: 1 1 100%; }
    .c36e9b0 { max-width: 100%; margin: 0 auto; }
    .c36932b { flex-direction: column; }
    .c36932b .c36ff7e { order: -1; }
    .c36d7b3 { flex-direction: column; }
    .c36d7b3 .c369d18 { order: -1; }
}

/* ============================================================
   SPLIT CTA BLOCK (two colored panels side by side)
   ============================================================ */
.c369314 {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    min-height: 180px;
    margin-bottom: 0;
    align-items: stretch;
}
.c365e01 {
    flex: 1 1 50%;
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.c3695af {}
.c36e92e {
    font-size: var(--font-size-h4);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}
.c36cbe7 {
    font-size: var(--font-size-small);
    color: rgba(255,255,255,0.85);
    margin: 0;
    line-height: 1.7;
    max-width: 480px;
}
.c36d9d4 {
    align-items: center;
    text-align: center;
}
.c36ef0d {
    font-size: var(--font-size-body);
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
    font-weight: 500;
}
.c36c02b {
    font-size: var(--font-size-h2);
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: opacity 0.15s;
}
.c36c02b:hover { opacity: 0.85; text-decoration: none; }

@media (max-width: 768px) {
    .c369314 { flex-direction: column; }
    .c365e01 { padding: 32px 24px; }
    .c36d9d4 { align-items: flex-start; text-align: left; }
    .c36c02b { font-size: var(--font-size-h2); }
}

/* ============================================================
   TAB SERVICES BLOCK
   ============================================================ */
.c36f362 {
    padding: 48px 0 56px;
    background: #fff;
}
/* Badges */
.c3686ff {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.c368edd {
    display: inline-block;
    padding: 4px 12px;
    font-size: var(--font-size-eyebrow);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
}
.c364955  { background: var(--color-accent,#fd783b); color: #fff; }
.c366317 { background: transparent; border: 2px solid var(--color-accent,#fd783b); color: var(--color-accent,#fd783b); }
/* Heading */
.c368a18 {
    font-size: var(--font-size-h3);
    font-weight: 800;
    margin: 0 0 28px;
    color: #111;
}
/* Layout */
.c36d025 {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}
/* Tab list */
.c365457 {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e5e7eb;
    background: #fff;
}
.ts-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    font-size: var(--font-size-body);
    font-weight: 600;
    color: #333;
    text-align: left;
    transition: background 0.15s, color 0.15s;
}
.ts-tab:last-child { border-bottom: none; }
.ts-tab:hover:not(.ts-tab-active) { background: #f8f9fa; }
.ts-tab-active { color: #fff; }
.c36d0d0 {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    filter: none;
}
.ts-tab-active .c36d0d0 {
    filter: brightness(0) invert(1);
}
/* Panel */
.c368ca1 { background: #fff; }
.ts-panel { height: 100%; }
.c363376 {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.c36b08c {
    padding: 18px 24px;
    font-size: var(--font-size-body);
    color: #555;
    background: #f8f8f8;
    border-top: 1px solid #e5e7eb;
    line-height: 1.65;
}
/* Mobile */
@media (max-width: 768px) {
    .c36d025 {
        grid-template-columns: 1fr;
    }
    .c365457 {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    .ts-tab {
        flex-direction: column;
        gap: 6px;
        padding: 12px 16px;
        font-size: var(--font-size-body);
        border-bottom: none;
        border-right: 1px solid #e5e7eb;
        min-width: 90px;
        text-align: center;
    }
    .ts-tab:last-child { border-right: none; }
    .c363376 { height: 240px; }
}

/* ============================================================
   HERO GRID BLOCK (image left, icon grid right)
   ============================================================ */
.c3661af {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0 !important;
    margin-bottom: 0;
    align-items: stretch;
}
/* LEFT: background image + dark overlay */
.c3693e3 {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 480px;
}
.c365bd1 {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 40px;
    color: #fff;
}
.c36c227 {
    font-size: var(--font-size-small);
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.c365beb {
    font-size: var(--font-size-h3);
    font-weight: 800;
    margin: 0 0 16px;
    color: #fff;
    line-height: 1.2;
}
.c364cc9 p {
    font-size: var(--font-size-small);
    color: rgba(255,255,255,0.85);
    margin: 0 0 12px;
    line-height: 1.65;
}
.c36eed4 {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 26px;
    background: var(--color-accent,#fd783b);
    color: #fff;
    border-radius: var(--btn-radius,5px);
    font-weight: 700;
    font-size: var(--font-size-body);
    text-decoration: none;
    align-self: flex-start;
    transition: opacity 0.15s;
}
.c36eed4:hover { opacity: 0.85; text-decoration: none; }

/* RIGHT: 3×2 icon grid */
.c360e9f {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
}
.c363e25 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px;
    min-height: 160px;
    border: 1px solid rgba(255,255,255,0.08);
}
/* --- flip cards (hero_grid hg_flip): front icon+label -> hover/tap flips to description --- */
.c36b3e5 .c363e25.flip-card { position: relative; padding: 0; min-height: 170px; border: 0; perspective: 1000px; background: transparent !important; }
.c36ee93 { position: relative; width: 100%; height: 100%; min-height: 170px; transition: transform .6s; transform-style: preserve-3d; }
.flip-card:hover .c36ee93, .flip-card.is-flipped .c36ee93 { transform: rotateY(180deg); }
.c36c0c5, .c360f6c { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 18px; box-sizing: border-box; color: #fff; border: 1px solid #fff; -webkit-backface-visibility: hidden; backface-visibility: hidden; }
.c360f6c { transform: rotateY(180deg); overflow: auto; }
.c36e030, .c362cc6 { width: auto; height: 46px; max-width: 60px; margin-bottom: 12px; fill: #fff; object-fit: contain; flex-shrink: 0; }
.c36a70d { font-weight: 700; font-size: var(--font-size-body); line-height: 1.2; }
.c36d840 { font-size: var(--font-size-small); line-height: 1.45; margin: 0; color: #fff; }

.c36f0f1 {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.c36e020 {
    color: #fff;
    font-size: var(--font-size-small);
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* Mobile */
@media (max-width: 768px) {
    .c3661af { grid-template-columns: 1fr; }
    .c3693e3 { min-height: 300px; }
    .c365bd1 { padding: 32px 24px; }
    .c365beb { font-size: var(--font-size-h3); }
    .c360e9f { grid-template-columns: repeat(3, 1fr); }
    .c363e25 { min-height: 120px; padding: 20px 10px; gap: 8px; }
    .c36f0f1 { width: 36px; height: 36px; }
    .c36e020 { font-size: var(--font-size-small); }
}
/* Very small screens: 2 columns so long pest labels don't cram into 3 narrow cells */
@media (max-width: 480px) {
    .c360e9f { grid-template-columns: repeat(2, 1fr); }
    .c363e25 { min-height: 108px; }
}

/* ============================================================
   SERVICE CARDS GRID (icon circle + heading + text, centered)
   ============================================================ */
.c364541 {
    padding: 56px 0;
    background: #fff;
    display: block;
}
.c364052 {
    text-align: center;
    margin-bottom: 14px;
}
.c36f3dd {
    display: inline-block;
    padding: 5px 14px;
    font-size: var(--font-size-eyebrow);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
}
.c36676a {
    text-align: center;
    font-size: var(--font-size-h2);
    font-weight: 800;
    margin: 0 0 40px;
}
.c36d8b1 {
    display: grid;
    gap: 20px;
    width: 100%;
}
.c36a0a2 { grid-template-columns: repeat(2, 1fr); }
.c3602c3 { grid-template-columns: repeat(3, 1fr); }
.c364c5a { grid-template-columns: repeat(4, 1fr); }
.c3624a8 {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}
.c3624a8:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.10); }
a.c3624a8 { text-decoration: none; color: inherit; cursor: pointer; }
a.c3624a8:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.13); transform: translateY(-2px); transition: box-shadow 0.2s, transform 0.2s; }
.c36cf01 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
}
.c3670dc {
    width: 56px;
    height: 56px;
    object-fit: contain;
}
.c3619c6 {
    font-size: var(--font-size-body);
    font-weight: 700;
    margin: 0 0 10px;
    color: #111;
    line-height: 1.4;
}
.c36728f {
    font-size: var(--font-size-small);
    color: #555;
    margin: 0;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .c3602c3, .c364c5a { grid-template-columns: repeat(2, 1fr); }
    .c36676a { font-size: var(--font-size-h2); }
}
@media (max-width: 480px) {
    .c36a0a2, .c3602c3, .c364c5a { grid-template-columns: 1fr; }
}

/* ============================================================
   WIDE BANNER BLOCK (full-width bg image, heading left, btn right)
   ============================================================ */
.c36c4fa {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 0;
    overflow: hidden;
}
.c36b142 {
    padding: 56px 0;
    width: 100%;
}
.c363ebf {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.c36fae2 { flex: 1 1 400px; }
.c363ebf.c36f781 { flex-direction: column; align-items: stretch; }
.c363ebf.c36f781 .c36fae2 { width: 100%; text-align: center; }
.c363ebf.c36f781 .c366015 { max-width: 780px; margin-left: auto; margin-right: auto; }
.c363ebf.c36f781 .c368369 { text-align: center; }
.c363ebf.c36f781 .c36c365 { display: block; }
.c363ebf.c36f781 .c36bdd0 { display: inline-block; margin-top: 8px; }
.c36c365 {
    display: inline-block;
    padding: 4px 12px;
    font-size: var(--font-size-eyebrow);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 12px;
}
.c367683 {
    font-size: var(--font-size-h2, 2rem);
    font-family: var(--font-heading, inherit);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}
.c368369 { flex-shrink: 0; }
.c36bdd0 {
    display: inline-block;
    padding: 13px 32px;
    font-weight: 700;
    font-size: var(--font-size-body);
    border-radius: var(--btn-radius, 5px);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s;
    border: 2px solid transparent;
}
.c36bdd0:hover { opacity: 0.85; text-decoration: none; }
.c36488d { color: #fff; }
.c36bf90 { background: transparent !important; color: #fff !important; border-color: #fff !important; }

@media (max-width: 768px) {
    .c36b142 { padding: 36px 0; }
    .c367683 { font-size: var(--font-size-h2); }
    .c363ebf { flex-direction: column; align-items: flex-start; }
    .c36bdd0 { padding: 11px 24px; font-size: var(--font-size-body); }
}

/* ============================================================
   IMAGE FEATURES BLOCK (photo left, checklist + phone right)
   ============================================================ */
.c36a790 {
    background: #f3f6f7;
    padding: 60px 0;
}
.c361b8f {
    display: flex;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
    width: 100%;
}
/* LEFT photo */
.c36d394 {
    flex: 1 1 420px;
    max-width: 520px;
}
.c36f5ab {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.14);
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
}
/* RIGHT content */
.c36928f8 {
    flex: 1 1 360px;
    min-width: 0;
}
.c363bc3 {
    font-size: var(--font-size-h2);
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.2;
    color: #120575; /* fallback — overridden by inline style */
}
.c36aad5 {
    font-size: var(--font-size-body);
    color: #444;
    line-height: 1.7;
    margin: 0 0 24px;
}
/* Feature grid */
.c361a8b {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.c36d9a6 {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px 16px;
    background: #fff;
}
.c36934a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: var(--font-size-small);
    font-weight: 700;
    flex-shrink: 0;
}
.c36c30d {
    font-size: var(--font-size-small);
    font-weight: 600;
    line-height: 1.35;
    color: #1a1a2e;
}
.c36f75c {
    font-size: var(--font-size-small);
    color: #555;
    line-height: 1.7;
    margin: 0 0 24px;
}
/* Phone CTA row */
.c36177e {
    display: flex;
    align-items: center;
    gap: 16px;
}
.c36eed8 {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-h4);
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.15s;
}
.c36eed8:hover { opacity: 0.85; }
.c3675a4 {}
.c36fa8a {
    font-size: var(--font-size-eyebrow);
    color: #777;
    margin-bottom: 2px;
}
.c369fdc {
    font-size: var(--font-size-h4);
    font-weight: 800;
    text-decoration: none;
    transition: opacity 0.15s;
}
.c369fdc:hover { opacity: 0.85; text-decoration: none; }

@media (max-width: 768px) {
    .c36a790 { padding: 36px 0; }
    .c361b8f { gap: 28px; flex-direction: column; align-items: stretch; }
    .c36d394 { flex: 1 1 100%; }
    .c363bc3 { font-size: var(--font-size-h2); }
    .c361a8b { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ TWO COLUMN BLOCK
   ============================================================ */
.c36043f {
    padding: 56px 0;
    background: #fff;
}
.c36dece {
    text-align: center;
    font-size: var(--font-size-h2, 2rem);
    font-family: var(--font-heading, inherit);
    font-weight: 800;
    color: var(--color-heading, #120575);
    margin: 0 0 40px;
    line-height: 1.2;
}
.c36616c {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.c36dedc {
    border-radius: 10px;
    overflow: hidden;
}
.c36b48d {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}
.c36b48d:hover { opacity: 0.9; }
.fq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: var(--font-size-lead);
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.2s;
}
.c362d74 {
    font-size: var(--font-size-body);
    font-weight: 700;
    color: #111;
    line-height: 1.4;
}
.c364c4c {
    padding: 0 20px 16px 64px;
    font-size: var(--font-size-small);
    color: #555;
    line-height: 1.7;
}
.c364c4c p { margin: 0 0 8px; }
.c364c4c p:last-child { margin: 0; }

@media (max-width: 768px) {
    .c36616c { grid-template-columns: 1fr; }
    .c36dece { font-size: var(--font-size-h2); }
    .c364c4c { padding-left: 48px; }
}

/* ============================================================
   CTA BANNER BLOCK (solid color, centered text)
   ============================================================ */
/* ---- Email Banner ---- */
.c363bb8 { padding: 36px 0; }
.c3693f6 { display: flex; align-items: center; gap: 48px; }
.c36f16d { flex: 1 1 380px; }
.c36c439 { flex: 0 0 480px; }
.c360c72 { font-size: var(--font-size-h2); font-family: var(--font-heading, inherit); font-weight: 900; color: #fff; line-height: 1.15; margin: 0 0 10px; }
.c36bf29 { font-size: var(--font-size-body); color: rgba(255,255,255,0.85); margin: 0; }
.c365137 { display: flex; gap: 10px; margin-bottom: 16px; }
.c36e208 { flex: 1; padding: 12px 16px; border: none; border-radius: var(--btn-radius, 4px); font-size: var(--font-size-body); outline: none; }
.c36b05b { white-space: nowrap; padding: 12px 20px; background: #0d1f3c; color: #fff; border-radius: var(--btn-radius, 4px); font-size: var(--font-size-small); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; transition: opacity .15s; }
.c36b05b:hover { opacity: 0.88; }
.c36c92c { display: flex; align-items: center; gap: 12px; }
.c360158 { width: 44px; height: 44px; object-fit: contain; border-radius: 50%; flex-shrink: 0; }
.c369c64 { font-size: var(--font-size-eyebrow); font-weight: 700; color: #fff; line-height: 1.4; }
@media (max-width: 900px) {
    .c3693f6 { flex-direction: column; gap: 28px; }
    .c36c439 { flex: 1 1 auto; width: 100%; }
}
@media (max-width: 600px) {
    .c365137 { flex-direction: column; }
    .c360c72 { font-size: var(--font-size-h2); }
}

.c364897 { margin-bottom: 0; }
.c363c0b {
    font-size: var(--font-size-h2, 2rem);
    font-family: var(--font-heading, inherit);
    font-weight: 800;
    margin: 0 0 8px;
    line-height: 1.2;
}
.c36b7d1 {
    font-size: 1rem;
    margin: 0 0 16px;
    opacity: 0.9;
}
.c36ed5d {
    display: inline-block;
    padding: 11px 28px;
    border-radius: var(--btn-radius, 5px);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 6px;
    transition: opacity 0.15s;
}
.c36ed5d:hover { opacity: 0.85; text-decoration: none; }

@media (max-width: 768px) {
    .c363c0b { font-size: 1.15rem; }
}

/* ============================================================
   LINKS GRID BLOCK (bg image, heading, link buttons grid)
   ============================================================ */
.c36a07f {
    display: block !important;
    background-size: cover;
    background-position: center;
    margin-bottom: 0;
    padding: 0;
}
.c369ac9 {
    padding: 40px 0 48px;
}
.c36a4cd {
    text-align: center;
    margin-bottom: 28px;
    max-width: 100% !important;
    width: 100%;
    padding: 0 20px;
}
.c36f269 {
    padding: 0 16px;
    max-width: 100% !important;
    width: 100%;
}
.c365576 {
    font-size: var(--font-size-h3);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    text-align: center;
}
.c36d747 {
    font-size: var(--font-size-small);
    color: rgba(255,255,255,0.85);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}
.c361ef3 {
    display: grid;
    gap: 8px;
}
.c369730 { grid-template-columns: repeat(2,1fr); }
.c36a74f { grid-template-columns: repeat(3,1fr); }
.c363c3c { grid-template-columns: repeat(4,1fr); }
.c36a12e { grid-template-columns: repeat(5,1fr); }
.c361b43 { grid-template-columns: repeat(6,1fr); }
.c36980c {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 12px;
    background: rgba(255,255,255,0.67);
    border-radius: var(--btn-radius, 5px);
    color: #000000;
    font-size: var(--font-size-body);
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s;
    line-height: 1.3;
    min-height: 64px;
}
.c36980c:hover {
    background: rgba(255,255,255,0.90);
    text-decoration: none;
    color: #000000;
}

@media (max-width: 1024px) {
    .c36a12e, .c361b43 { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 768px) {
    .c363c3c, .c36a12e, .c361b43 { grid-template-columns: repeat(3,1fr); }
    .c365576 { font-size: var(--font-size-h3); }
}
@media (max-width: 480px) {
    .c361ef3 { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   CTA CARD BLOCK (colored box, heading left, phone right)
   ============================================================ */
.c368ac1 { padding: 32px 0; }
.c36f317 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px 48px;
    flex-wrap: wrap;
    /* inside container, so wrapping is fine */
}
.c3669cd { flex: 1 1 380px; }
.c36403d {
    font-size: var(--font-size-h4);
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.25;
}
.c365d3d {
    font-size: var(--font-size-body);
    color: rgba(255,255,255,0.88);
    margin: 0;
    line-height: 1.7;
}
.c367c0e { flex-shrink: 0; }
.c36ede1 {
    display: inline-block;
    padding: 13px 28px;
    font-weight: 700;
    font-size: var(--font-size-body);
    border-radius: var(--btn-radius,5px);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.15s;
    border: 2px solid #fff;
}
.c36ede1:hover { opacity: 0.85; text-decoration: none; }
.c36e1ef { background: transparent; color: #fff; }
.c360e4e  { background: #fff; color: var(--color-accent,#fd783b); }

@media (max-width: 768px) {
    .c36f317 { padding: 28px 24px; flex-direction: column; }
    .c36403d { font-size: var(--font-size-h4); }
}

/* ============================================================
   MAP + INFO BLOCK
   ============================================================ */
.c36f6b4 { padding: 40px 0; }
.c369632 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.c36fad5 {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 24px;
    background: #fff;
}
.c3679b3 {
    font-size: var(--font-size-lead);
    font-weight: 700;
    margin: 0 0 16px;
}
.c369c53 iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 6px;
    display: block;
}
.c36d6d0 {
    font-size: var(--font-size-small);
    color: #444;
    line-height: 1.7;
    margin: 0 0 18px;
}
.c364db3 {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    max-height: 320px;
}

/* Map on top: one full-width column, with the city text and photo side by side beneath.
   For the Area Map plugin's diagram, which is wide (diagram + a column of nearby towns) and
   becomes unreadable squeezed into half the width. */
.c369632.c36402a { grid-template-columns: 1fr; }
.c36f5eb {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}
.c36f5eb .c36d6d0 { margin: 0; }
/* A diagram must never be cropped — its labels live at the edges. */
.c369c53 img { width: 100%; height: auto; display: block; border-radius: 6px; }
/* Across the full width the diagram is bigger than it needs to be, so hold it to 75% and
   centre it. Scoped to the stacked layout — in the half-width left/right panels it is
   already small enough.

   The width lives on the WRAPPER, not the <img>, so the heading and caption can share the same
   column and line up with the picture instead of with the panel. */
.c36402a .c3667bf .c369c53,
.c36402a .c3667bf .c3679b3,
.c36402a .c3667bf .c367ace {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
}
.c36402a .c3667bf .c3679b3 { text-align: left; }
.c36402a .c369c53 img { width: 100%; }

@media (max-width: 768px) {
    .c369632 { grid-template-columns: 1fr; }
    .c36f5eb { grid-template-columns: 1fr; }
    .c369c53 iframe { height: 280px; }
    /* On a phone there is no spare width to give away. */
    .c36402a .c369c53 img { width: 100%; }
}

/* CTA Card — centered layout (full width, no container) */
.c3690e5 {
    /* .c361204 is display:flex, so this box is a flex item — without a full
       width it shrinks to content and sits left-aligned. flex-basis:100% makes the
       centered band span the full section so its centered content reads centered. */
    flex: 1 1 100%;
    width: 100%;
    padding: 48px 10%;
    border-radius: 0 !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.c3690e5 .c36403d {
    font-size: var(--font-size-h3);
    margin-bottom: 18px;
}

/* ============================================================
   LINKS GRID — LIGHT STYLE (white bg, gray bordered boxes)
   ============================================================ */
.c3622fc {
    padding: 48px 0;
}
.c369f4c {
    text-align: center;
    margin-bottom: 32px;
}
.c361804 {
    font-size: var(--font-size-small);
    font-weight: 600;
    margin-bottom: 8px;
}
.c363762 {
    font-size: var(--font-size-h2);
    font-weight: 800;
    color: #111;
    margin: 0;
}
.c363fd4 {
    gap: 12px;
}
.c363a47 {
    display: block;
    text-align: center;
    padding: 18px 12px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #1a1a1a;
    font-size: var(--font-size-body);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
    line-height: 1.3;
}
.c363a47:hover {
    background: #ebebeb;
    border-color: #ccc;
    text-decoration: none;
    color: #111;
}

@media (max-width: 768px) {
    .c363762 { font-size: var(--font-size-h2); }
}

/* Hero grid tile — label only (no icon) centered */
.c363e25:not(:has(.c36f0f1)) .c36e020 {
    font-size: var(--font-size-body);
    font-weight: 700;
}

/* ============================================================
   FULL-WIDTH BLOCK OVERRIDES
   Reset content-block flex defaults for full-width layouts
   ============================================================ */
.c369314,
.c3661af,
.c364897,
.c36c4fa,
.c36a07f,
.c3622fc {
    gap: 0 !important;
    flex-wrap: nowrap !important;
    margin-bottom: 0;
}

/* Mobile: allow split_cta to stack */
@media (max-width: 768px) {
    .c369314 {
        flex-direction: column !important;
        flex-wrap: wrap !important;
    }
}

/* Links grid — wider container so 5-col grid breathes */
.c36f269.container {
    max-width: 1400px;
    padding: 0 24px;
}
.c36a4cd.container {
    max-width: 860px;
}

/* ── Media Library ──────────────────────────────────────── */
#media-dropzone:hover, #media-dropzone.c36c595 {
    border-color: #fd783b;
    background: #fff8f5;
}
.c36bde2 {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.c364041 {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: #e5e7eb;
}
.c364041 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .2s;
}
.c364041:hover img { opacity: 0.75; }
.c367390 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transition: opacity .2s;
    background: rgba(0,0,0,0.4);
}
.c364041:hover .c367390 { opacity: 1; }
.c3605cd { padding: 10px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.c364ddc { font-size: .78rem; font-weight: 600; color: #374151; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.c36b16d { font-size: .72rem; color: #9ca3af; }
.c365c61 { font-size: .78rem; padding: 4px 7px; border: 1px solid #d1d5db; border-radius: 4px; width: 100%; box-sizing: border-box; }
.c36535e { display: flex; gap: 6px; margin-top: auto; }
.c36f9ee { background: #dc2626; color: #fff; border-color: #dc2626; }
.c36f9ee:hover { background: #b91c1c; border-color: #b91c1c; }
.c36ea98 {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: .9rem;
    z-index: 99999;
    animation: toast-in .25s ease;
}
@keyframes toast-in { from { opacity:0; transform: translateX(-50%) translateY(10px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }

.c366015 { color: rgba(255,255,255,0.88); font-size: var(--font-size-body); margin-top: 10px; max-width: 540px; line-height: 1.6; }

/* feature_split — image left: DOM order handles position, no flex override needed */

/* feature_split — bullet list style */
.c36d3df { margin: 12px 0 16px 0; padding-left: 20px; }
.c36d3df li { margin-bottom: 10px; line-height: 1.5; color: var(--color-body, #555); }
.c36d3df li strong { color: #1a1a2e; }

/* feature_split — trailing paragraph */
.c3605a0 { margin-top: 12px; color: var(--color-body, #555); line-height: 1.6; }

/* feature_split — phone CTA */
.c36594f { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.c3693f2 { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: var(--font-size-lead); color: #fff; flex-shrink: 0; }
.c3654b6 { display: flex; flex-direction: column; }
.c36986f { font-size: var(--font-size-eyebrow); color: #666; }
.c36e992 { font-size: var(--font-size-lead); font-weight: 700; text-decoration: none; }

/* ============================================================
   BLOG
   ============================================================ */
.c36c62e { padding: 48px 0 64px; }
.c3650e5 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #6b7280;
    text-align: center;
    margin-bottom: 10px;
}
.c36a37b {
    text-align: center;
    color: #6b7280;
    max-width: 640px;
    margin: 0 auto 28px;
    line-height: 1.6;
}
.c3690dc {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.c36421f {
    display: inline-block;
    background: #fff;
    border: 1px solid #fbd5b8;
    color: var(--color-accent, #fd783b);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}
.c36421f:hover { background: #fef3ec; }
.c36421f.is-active {
    background: var(--color-accent, #fd783b);
    border-color: var(--color-accent, #fd783b);
    color: #fff;
}
.c368d6e { text-align: center; color: #6b7280; padding: 40px 0; }

.c366a0e {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 8px;
}
@media (max-width: 720px) {
    .c366a0e { grid-template-columns: 1fr; }
}

.c366e20 {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    transition: transform .18s ease, box-shadow .18s ease;
}
.c366e20:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.c367814 {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.c366eed { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.c36dcd1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.c36298e {
    font-size: .8rem;
    color: #9ca3af;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.c36842e {
    display: inline-block;
    background: #fef3ec;
    color: var(--color-accent, #fd783b);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    padding: 4px 10px;
    border-radius: 999px;
}
.c3646be {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent, #fd783b);
    line-height: 1.35;
    margin: 4px 0 10px;
}
.c366e20:hover .c3646be { text-decoration: underline; }
.c368d38 {
    color: #6b7280;
    font-size: .95rem;
    line-height: 1.55;
    margin: 0;
}

.c363623 {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.c36d831 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 8px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    font-weight: 600;
    text-decoration: none;
}
.c36d831:hover { border-color: var(--color-accent, #fd783b); color: var(--color-accent, #fd783b); }
.c36681c {
    background: var(--color-accent, #fd783b);
    border-color: var(--color-accent, #fd783b);
    color: #fff;
}

/* Single post header (post_meta block) */
.c3642e5 { padding: 40px 0 8px; }
.c36689b {
    font-size: 2.1rem;
    font-weight: 800;
    color: #2d2d3a;
    line-height: 1.25;
    margin-bottom: 14px;
}
.c36fe2e {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    color: #9ca3af;
    font-size: .9rem;
}
.c361b48, .c36678a { color: #9ca3af; }
.c36ec7a {
    display: inline-block;
    background: #fef3ec;
    color: var(--color-accent, #fd783b);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    padding: 4px 10px;
    border-radius: 999px;
}
.c3629bd {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 8px;
}

/* ============================================================
   BUTTONS GRID BLOCK
   ============================================================ */
.c36a6e0 { padding: 48px 0; }
.c36855f { text-align: center; margin-bottom: 28px; }
.c3616b9 { display: grid; gap: 12px; }
.c3633ee { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.c36c147 { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
.c369621 { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.c369432 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    border-radius: var(--btn-radius, 8px);
    font-size: var(--font-size-body);
    font-weight: 600;
    text-decoration: none;
    transition: opacity .15s, transform .1s;
    line-height: 1.3;
}
.c369432:hover { opacity: .85; transform: translateY(-1px); }

/* ============================================================
   TESTIMONIALS BLOCK
   ============================================================ */
.c360a5b { padding: 56px 0; }
.c3693b5 { margin-bottom: 40px; text-align: center; }
.c36aebe { font-size: var(--font-size-eyebrow); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 10px; }
.c36d166 { font-size: var(--font-size-h1); font-family: var(--font-heading); font-weight: 900; margin: 0 0 12px; line-height: 1.15; }
.c360f82 { font-size: var(--font-size-body); color: #4b5563; margin: 0; }
.c368e1a { text-align: center; margin-bottom: 36px; font-size: var(--font-size-h2, 2rem); font-family: var(--font-heading, inherit); font-weight: 800; line-height: 1.2; color: var(--color-heading, #120575); }
.c36a681 { display: grid; gap: 24px; }
.c36fcb8 { grid-template-columns: repeat(2, 1fr); }
.c36c0e3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) {
    .c36fcb8, .c36c0e3 { grid-template-columns: 1fr; }
}
.c360ff5 {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.c365232 { font-size: var(--font-size-lead); letter-spacing: 2px; }
.c366946 { font-size: var(--font-size-body); line-height: 1.65; flex: 1; margin: 0; text-align: center; width: 100%; }
.c366b0b { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.c369ce3 {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: var(--font-size-small);
    letter-spacing: .5px;
}
.c36bc07 { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.c3638b7 { font-weight: 700; font-size: var(--font-size-small); }
.c363616 { font-size: var(--font-size-eyebrow); color: #9ca3af; }
.c368f94 {
    margin-top: 4px;
    display: block;
    align-self: center;
    font-size: var(--font-size-eyebrow);
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1.5px solid;
    white-space: nowrap;
}

/* ============================================================
   STAGE / CAREER PATH CARDS BLOCK
   ============================================================ */
.c369280 { padding: 56px 0; }
.c365871 { margin-bottom: 36px; }
.c364842 { font-size: var(--font-size-eyebrow); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 10px; color: var(--color-accent, #2563eb); }
.c36c448 { text-align: left; margin: 0 0 4px; font-size: var(--font-size-h1); font-family: var(--font-heading, inherit); font-weight: 900; line-height: 1.1; color: var(--color-heading, #1a2e5a); }
.c36b512 { text-align: left; font-size: var(--font-size-h1); font-family: var(--font-heading, inherit); font-weight: 900; line-height: 1.1; margin: 0 0 18px; color: var(--color-accent, #2563eb); }
.c36fc98 { text-align: left; margin: 0; font-size: var(--font-size-body); color: #4b5563; line-height: 1.7; max-width: none; }
.c36ec29 { border: 1.5px solid #e2e8f0; border-radius: 12px; overflow: hidden; background: #fff; }
.c3676c4 { display: grid; gap: 0; }
.c36d109 { grid-template-columns: repeat(2, 1fr); }
.c3649b3 { grid-template-columns: repeat(3, 1fr); }
.c36185b { grid-template-columns: repeat(4, 1fr); }
.c36963c { grid-template-columns: repeat(5, 1fr); }
.c3647c9 { padding: 28px 22px; border-right: 1.5px solid #e2e8f0; }
.c3647c9:last-child { border-right: none; }
.c36b264 { font-size: var(--font-size-eyebrow); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.c360f0a { font-size: var(--font-size-eyebrow); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #9ca3af; margin-bottom: 8px; }
.c364eba { font-size: var(--font-size-body); font-weight: 700; margin: 0 0 16px; line-height: 1.35; color: var(--color-heading, #1a2e5a); }
.c3653ba { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.c360ea5 {}
.c3679a3 { display: block; background: #eff6ff; border: 1.5px solid #bfdbfe; border-radius: 8px; padding: 10px 12px; text-decoration: none; transition: border-color .15s; }
a.c3679a3:hover { border-color: var(--color-accent, #2563eb); }
.c36dd82 { display: block; font-size: var(--font-size-eyebrow); font-weight: 700; color: #2563eb; margin-bottom: 3px; }
.c367e30 { display: block; font-size: var(--font-size-eyebrow); color: #475569; line-height: 1.5; }
@media (max-width: 900px) {
    .c36185b, .c36963c { grid-template-columns: repeat(2, 1fr); }
    .c3647c9 { border-bottom: 1.5px solid #e2e8f0; }
    .c3647c9:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
    .c36d109, .c3649b3, .c36185b, .c36963c { grid-template-columns: 1fr 1fr; }
    .c36c448, .c36b512 { font-size: var(--font-size-h1); }
}
@media (max-width: 400px) {
    .c36d109, .c3649b3, .c36185b, .c36963c { grid-template-columns: 1fr; }
}

/* ============================================================
   LOGO / TRUST BAR BLOCK
   ============================================================ */
.c36ff68 { padding: 36px 0; }
.c36752f { text-align: center; font-size: var(--font-size-small); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #9ca3af; margin-bottom: 24px; }
.c36911f {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px 48px;
}
.c3613e6 { display: flex; align-items: center; }
.c36dfed { display: block; object-fit: contain; transition: opacity .2s, filter .2s; }
a.c3613e6:hover .c36dfed { opacity: 1; filter: none !important; }

/* ============================================================
   VIDEO EMBED BLOCK
   ============================================================ */
.c36b8a6 { padding: 40px 0; }
.c36e94f { text-align: center; margin-bottom: 24px; }
.c36ddf0 { max-width: 800px; margin-left: auto; margin-right: auto; }
.c36d55b { max-width: 100%; }
.c362478 {
    position: relative;
    padding-top: 56.25%;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}
.c362478 iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.c36f62f { text-align: center; color: #6b7280; font-size: var(--font-size-small); margin-top: 12px; }

/* =========================================================
   Block Picker Modal
   ========================================================= */
#block-picker-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}
#block-picker-modal.is-open { display: block; }
.c366dd4 {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
}
.c3609ba {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 10px;
    padding: 24px 24px 20px;
    width: 90vw;
    max-width: 820px;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.c3609ba h3 {
    margin: 0 0 16px;
    font-size: 1.1rem;
    padding-right: 32px;
}
.c364ab1 {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 0 4px;
}
.c364ab1:hover { color: #000; }
.c3647a8 { margin-bottom: 20px; }
.c368cd9 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #888;
    margin-bottom: 8px;
}
.c36f8fc {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 7px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: .88rem;
    margin-bottom: 16px;
    outline: none;
}
.c36f8fc:focus { border-color: #4f46e5; box-shadow: 0 0 0 3px rgba(79,70,229,.12); }
.c36e758 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
}
.c36357e {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 6px 8px;
    cursor: pointer;
    text-align: center;
    background: #fff;
    transition: border-color .15s, background .15s;
}
.c36357e:hover { border-color: #4f46e5; background: #f5f4ff; }
.c36357e.c365d2f { border-color: #4f46e5; background: #eeeeff; }
.c36d25b { display: block; width: 100%; }
.c36d25b svg { width: 100%; height: auto; display: block; }
.c36cabd {
    font-size: .75rem;
    font-weight: 600;
    color: #222;
    margin-top: 6px;
    line-height: 1.25;
}
.c368e61 {
    font-size: .65rem;
    color: #777;
    margin-top: 3px;
    line-height: 1.35;
}

/* Trigger button (replaces visible type select in block header) */
.c361383 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    padding: 4px 10px 4px 6px;
    cursor: pointer;
    font-size: .82rem;
    color: #333;
    min-width: 130px;
    max-width: 210px;
}
.c361383:hover { border-color: #4f46e5; background: #f9f9ff; }
.c367bea { width: 36px; flex-shrink: 0; }
.c367bea svg { width: 36px; height: auto; display: block; }
.c3643c6 { flex: 1; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.c36902a { color: #999; font-size: .65rem; flex-shrink: 0; }

/* ---- Inner tab strip (used in Starters tab + Add Page picker) ---- */
.c36d4a7 { display: flex; flex-wrap: wrap; gap: 4px; }
.c362e05 {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    background: #f1f5f9;
    color: #374151;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    transition: background .15s, color .15s;
    white-space: nowrap;
}
.c362e05:hover { background: #e0e7ff; color: #3730a3; border-color: #c7d2fe; }
.c362e05.active { background: #4f46e5; color: #fff; border-color: #4f46e5; }

/* ---- Starter picker (Add Page form) ---- */
.c368244 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.c3629e8 {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
    background: #fff;
    min-width: 120px;
    transition: border-color .15s, background .15s;
}
.c3629e8:hover { border-color: #4f46e5; background: #f5f4ff; }
.c3629e8.c365d2f { border-color: #4f46e5; background: #eeeeff; }
.c3694ef { font-size: .85rem; font-weight: 700; color: #111; }
.c366168 { font-size: .72rem; color: #777; margin-top: 3px; line-height: 1.3; }

/* ---- Contact Form block ---- */
.c362965 { padding: 60px 20px; background: var(--color-content-bg, #fff); }
.c362965 .c360837 { text-align: center; margin-bottom: 8px; }
.c362965 .c369e80 { text-align: center; color: #64748b; margin-bottom: 28px; }
.c36b0b6 { max-width: 640px; margin: 0 auto; }
.c36c818 { display: flex; gap: 16px; }
.c36c818 .c365e4f { flex: 1 1 0; }
.c365e4f { display: flex; flex-direction: column; margin-bottom: 16px; }
.c365e4f label { font-size: .875rem; font-weight: 600; margin-bottom: 5px; color: #374151; }
.c365e4f input,
.c365e4f textarea { width: 100%; padding: 10px 14px; border: 1px solid #d1d5db; border-radius: 6px; font-size: .95rem; font-family: inherit; background: #fff; transition: border-color .15s; box-sizing: border-box; }
.c365e4f input:focus,
.c365e4f textarea:focus { outline: none; border-color: var(--color-accent, #fd783b); box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-accent, #fd783b) 15%, transparent); }
.c365e4f textarea { resize: vertical; min-height: 120px; }
.c362118 { color: #ef4444; }
.c360c32 { max-width: 640px; margin: 0 auto 20px; padding: 14px 18px; border-radius: 6px; font-size: .92rem; }
.c367ba9a { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.c36ffe2   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.c36b0b6 .c3650b7 { margin-top: 8px; }
@media (max-width: 560px) { .c36c818 { flex-direction: column; gap: 0; } }

/* ── Block skin system ─────────────────────────────────────────────────────── */
.c361d3e { display: block; }
/* Non-full-width blocks: add vertical breathing room via the contained wrapper */
.c361d3e > .container { padding-top: 56px; padding-bottom: 56px; }
.c361d3e.c36a72d  { background: var(--skin-light-bg);  color: var(--skin-light-text); }
.c361d3e.c36b7a8   { background: var(--skin-dark-bg);   color: var(--skin-dark-text); }
.c361d3e.c36a667 { background: var(--skin-accent-bg); color: var(--skin-accent-text); }
.c361d3e.c36d9cf { background: var(--skin-subtle-bg); color: var(--skin-subtle-text); }

/* Force the block's own inline background out of the way so the skin shows */
.c361d3e.c36a72d .c361204,
.c361d3e.c36b7a8 .c361204,
.c361d3e.c36a667 .c361204,
.c361d3e.c36d9cf .c361204 { background: transparent !important; }

/* Override inline heading colors set by block renderers */
.c361d3e.c36a72d  h1,.c361d3e.c36a72d  h2,.c361d3e.c36a72d  h3,.c361d3e.c36a72d  h4 { color: var(--skin-light-heading)  !important; }
.c361d3e.c36b7a8   h1,.c361d3e.c36b7a8   h2,.c361d3e.c36b7a8   h3,.c361d3e.c36b7a8   h4 { color: var(--skin-dark-heading)   !important; }
.c361d3e.c36a667 h1,.c361d3e.c36a667 h2,.c361d3e.c36a667 h3,.c361d3e.c36a667 h4 { color: var(--skin-accent-heading) !important; }
.c361d3e.c36d9cf h1,.c361d3e.c36d9cf h2,.c361d3e.c36d9cf h3,.c361d3e.c36d9cf h4 { color: var(--skin-subtle-heading) !important; }

/* Override inline paragraph/label colors */
.c361d3e.c36b7a8   p,.c361d3e.c36b7a8   li { color: var(--skin-dark-text)   !important; }
.c361d3e.c36a667 p,.c361d3e.c36a667 li { color: var(--skin-accent-text) !important; }

/* ── Skin contrast pass (Phase A) ──────────────────────────────────────────
   Sub-elements that carry a fixed dark color (or a light color that the blanket
   overrides above wrongly force onto their own light background) so every block
   stays legible under Dark / Accent / Subtle. Each rule is scoped to a specific
   block class — deliberately none of these classes are used by blocks that
   Granite skins (cards/pricing_cards/stats/testimonials/hero_split/cta_banner),
   so Granite's skinned sections are unaffected. */

/* feature_split — bold bullet lead-ins are hardcoded #1a1a2e (invisible on dark/accent) */
.c361d3e.c36b7a8   .c36d3df li strong { color: var(--skin-dark-heading)   !important; }
.c361d3e.c36a667 .c36d3df li strong { color: var(--skin-accent-heading) !important; }

/* tab_services — outline badge (dark border+text) disappears on dark/accent */
.c361d3e.c36b7a8   .c366317 { border-color: var(--skin-dark-heading)   !important; color: var(--skin-dark-heading)   !important; }
.c361d3e.c36a667 .c366317 { border-color: var(--skin-accent-heading) !important; color: var(--skin-accent-heading) !important; }

/* service_cards — the cards keep their own WHITE background, so their text must
   stay dark regardless of the section skin (the blanket p/hN overrides above
   were leaking the skin's light text onto the white card). */
.c361d3e[class*="skin-"] .c3624a8 { background: #fff !important; }
.c361d3e[class*="skin-"] .c3624a8 .c3619c6 { color: #111 !important; }
.c361d3e[class*="skin-"] .c3624a8 .c36728f    { color: #555 !important; }

/* faq_two_col — items are always light pills, so their question/answer text must
   stay dark under any skin (the blanket p/li override was leaking light text
   onto the pill, making open answers unreadable on Dark/Accent). */
.c361d3e[class*="skin-"] .c36dedc .c362d74 { color: #1a2e5a !important; }
.c361d3e[class*="skin-"] .c36dedc .c364c4c,
.c361d3e[class*="skin-"] .c36dedc .c364c4c p,
.c361d3e[class*="skin-"] .c36dedc .c364c4c li { color: #374151 !important; }

/* image_features — phone label/number + intro carry dark colors that vanish on dark */
.c361d3e.c36b7a8 .c36fa8a,
.c361d3e.c36b7a8 .c369fdc { color: var(--skin-dark-heading) !important; }
.c361d3e.c36b7a8 .c36aad5,
.c361d3e.c36b7a8 .c36f75c,
.c361d3e.c36b7a8 .c36c30d { color: var(--skin-dark-text) !important; }

/* links_grid — light-variant links on a dark skin */
/* links_grid light-variant links are always light-gray pills, so keep their text
   dark under any skin (the earlier rule wrongly forced light text -> unreadable) */
.c361d3e[class*="skin-"] .c363a47 { color: #1a1a1a !important; }

/* Skin picker UI (admin editor) */
.c361b01 { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.c364b39 { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border: 2px solid #e5e7eb; border-radius: 6px; cursor: pointer; font-size: 0.8rem; font-weight: 500; color: #374151; transition: border-color .15s, background .15s; user-select: none; }
.c364b39:has(input:checked) { border-color: #2563eb; background: #2563eb; color: #fff; font-weight: 700; }
.c364b39:has(input:checked) .c3623e3 { outline: 2px solid #fff; outline-offset: 1px; }
.c364b39 input { display: none; }
.c3623e3 { width: 18px; height: 18px; border-radius: 3px; border: 1px solid rgba(0,0,0,.12); flex-shrink: 0; }
.c362ac6 { background: repeating-linear-gradient(45deg,#e5e7eb 0,#e5e7eb 3px,#fff 3px,#fff 6px); }
.c360314   { background: var(--skin-light-bg,  #ffffff); }
.c363d10  { background: var(--skin-subtle-bg, #f8fafc); }
.c36d545  { background: var(--skin-accent-bg, #2563eb); }
.c3694bb    { background: var(--skin-dark-bg,   #0d1f3c); }

/* ---- Team / People block ---- */
.c36c82d { padding: 56px 24px; }
.c36b02b { display: grid; gap: 32px; max-width: 1100px; margin: 0 auto; }
.c365579 { grid-template-columns: repeat(2, 1fr); }
.c3629da { grid-template-columns: repeat(3, 1fr); }
.c36106e { grid-template-columns: repeat(4, 1fr); }
.c368848 { text-align: center; }
.c36a535 { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; background: #e2e8f0; }
.c36a535 img { width: 100%; height: 100%; object-fit: cover; }
.c36fe87 { font-size: 1.1rem; font-weight: 700; color: var(--color-heading); margin: 0 0 4px; }
.c3664f4 { font-size: 0.875rem; color: var(--color-accent); font-weight: 600; margin: 0 0 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.c364fd2 { font-size: 0.9rem; margin: 0; line-height: 1.65; }
@media (max-width: 768px) {
    .c3629da, .c36106e { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .c365579, .c3629da, .c36106e { grid-template-columns: 1fr; }
}

/* Image captions — the picture's facts as text, since everything inside a chart or diagram is
   pixels a crawler cannot read. Kept visually quiet: it is a caption, not body copy.

   Title, image and caption share ONE column. Before this they had three different left edges —
   heading at the panel edge, image centred, caption somewhere else again — which read as
   sloppy. The caption is centred under its picture; a heading above stays left-justified to the
   same edge the image starts at. */
.c369354 { margin: 0; }
.c365a35,
.c367ace {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #64748b;
    margin: 10px auto 0;
    text-align: center;
}
/* Match the image's own box so the caption cannot be wider than the picture it describes. */
.c365a35 { max-width: 900px; }
