/* Approved styles in their original cascade order. Keep order when editing. */
.bm-site-nav,
.bm-site-nav * {
box-sizing: border-box;
}

.bm-site-nav {
--bm-navy: #102d4d;
--bm-green: #456f4d;
--bm-green-dark: #365c3e;
--bm-cream: #f7f5ef;
--bm-soft: #eef2ea;
--bm-border: #dfe3da;
--bm-text: #30363a;

position: relative;
z-index: 9999;

width: 100%;
font-family: Arial, Helvetica, sans-serif;
text-align: left;
}

.bm-nav-desktop {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 28px;
width: 100%;
}

.bm-nav-services-item {
margin-right: -6px;
}

.bm-nav-item {
position: relative;
}

.bm-nav-link,
.bm-nav-services-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 7px;

padding: 12px 0;

color: var(--bm-navy);
background: transparent;
border: 0;

font: inherit;
font-size: 15px;
font-weight: 700;
line-height: 1;
text-decoration: none;
white-space: nowrap;

cursor: pointer;
transition:
color 160ms ease,
transform 160ms ease;
}

.bm-nav-link:hover,
.bm-nav-link:focus,
.bm-nav-services-button:hover,
.bm-nav-services-button:focus,
.bm-nav-item.is-open > .bm-nav-services-button {
color: var(--bm-green);
outline: none;
}

.bm-nav-link:hover,
.bm-nav-services-button:hover {
transform: translateY(-1px);
}

.bm-nav-chevron {
display: inline-block;
font-size: 11px;
line-height: 1;
transition: transform 160ms ease;
}

.bm-nav-item:hover .bm-nav-chevron,
.bm-nav-item:focus-within .bm-nav-chevron,
.bm-nav-item.is-open .bm-nav-chevron {
transform: rotate(180deg);
}

/* Dropdown */

.bm-nav-dropdown {
position: absolute;
top: 100%;
left: 50%;

width: 330px;
padding: 10px;

visibility: hidden;
opacity: 0;
pointer-events: none;

background: #ffffff;
border: 1px solid var(--bm-border);
border-radius: 14px;
box-shadow: 0 20px 48px rgba(16, 45, 77, 0.16);

transform: translate(-50%, -8px);
transition:
opacity 160ms ease,
transform 160ms ease,
visibility 160ms ease;
}

.bm-nav-item:hover .bm-nav-dropdown,
.bm-nav-item:focus-within .bm-nav-dropdown,
.bm-nav-item.is-open .bm-nav-dropdown {
visibility: visible;
opacity: 1;
pointer-events: auto;
transform: translate(-50%, 0);
}

.bm-nav-service-link {
display: block;
padding: 14px 15px;
color: var(--bm-navy);
border-radius: 9px;
text-decoration: none;
transition:
background 150ms ease,
color 150ms ease;
}

.bm-nav-service-link:hover,
.bm-nav-service-link:focus {
color: var(--bm-green-dark);
background: var(--bm-soft);
outline: none;
}

.bm-nav-service-title {
display: block;
margin-bottom: 4px;
font-size: 14px;
font-weight: 700;
line-height: 1.25;
}

.bm-nav-service-description {
display: block;
color: var(--bm-text);
font-size: 12px;
font-weight: 400;
line-height: 1.4;
}

/* Primary CTA */

.bm-nav-cta {
display: inline-flex;
align-items: center;
justify-content: center;

min-height: 46px;
padding: 0 20px;

color: #ffffff !important;
background: var(--bm-green);
border: 1px solid var(--bm-green);
border-radius: 6px;

font-size: 15px;
font-weight: 700;
line-height: 1;
text-decoration: none;
white-space: nowrap;

box-shadow: 0 8px 20px rgba(54, 92, 62, 0.15);
transition:
background 160ms ease,
transform 160ms ease,
box-shadow 160ms ease;
}

.bm-nav-cta:hover,
.bm-nav-cta:focus {
color: #ffffff !important;
background: var(--bm-green-dark);
border-color: var(--bm-green-dark);
transform: translateY(-2px);
box-shadow: 0 12px 25px rgba(54, 92, 62, 0.22);
outline: none;
}

/* Mobile */

.bm-nav-mobile-toggle {
display: none;
}

.bm-nav-mobile-menu {
display: none;
}

@media (max-width: 1200px) {
.bm-nav-desktop {
display: none;
}

.bm-nav-mobile-toggle {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;

width: 100%;
min-height: 48px;
padding: 0 16px;

color: var(--bm-navy);
background: transparent;
border: 1.5px solid var(--bm-navy);
border-radius: 7px;

font: inherit;
font-size: 14px;
font-weight: 700;
cursor: pointer;
}

.bm-nav-mobile-icon {
position: relative;
width: 19px;
height: 14px;
}

.bm-nav-mobile-icon::before,
.bm-nav-mobile-icon::after,
.bm-nav-mobile-icon span {
content: "";
position: absolute;
left: 0;
width: 19px;
height: 2px;
background: currentColor;
border-radius: 999px;
}

.bm-nav-mobile-icon::before {
top: 0;
}

.bm-nav-mobile-icon span {
top: 6px;
}

.bm-nav-mobile-icon::after {
top: 12px;
}

.bm-site-nav.mobile-open .bm-nav-mobile-menu {
display: block;
}

.bm-nav-mobile-menu {
margin-top: 10px;
padding: 10px;
background: #ffffff;
border: 1px solid var(--bm-border);
border-radius: 12px;
box-shadow: 0 16px 38px rgba(16, 45, 77, 0.14);
}

.bm-nav-mobile-menu > a,
.bm-nav-mobile-services-button {
display: flex;
align-items: center;
justify-content: space-between;

width: 100%;
padding: 13px 14px;

color: var(--bm-navy);
background: transparent;
border: 0;
border-radius: 8px;

font: inherit;
font-size: 14px;
font-weight: 700;
text-decoration: none;
text-align: left;
cursor: pointer;
}

.bm-nav-mobile-menu > a:hover,
.bm-nav-mobile-services-button:hover {
color: var(--bm-green-dark);
background: var(--bm-soft);
}

.bm-nav-mobile-services {
display: none;
margin: 4px 0 6px;
padding-left: 10px;
}

.bm-nav-mobile-services.is-open {
display: block;
}

.bm-nav-mobile-services a {
display: block;
padding: 11px 14px;
color: var(--bm-text);
border-radius: 7px;
font-size: 13px;
text-decoration: none;
}

.bm-nav-mobile-services a:hover {
color: var(--bm-green-dark);
background: var(--bm-soft);
}

.bm-nav-mobile-menu .bm-nav-cta {
width: 100%;
margin-top: 8px;
}
}
@media (max-width: 1200px) {
.bm-nav-mobile-menu > a.bm-nav-cta,
.bm-nav-mobile-menu > a.bm-nav-cta:visited {
display: flex !important;
align-items: center !important;
justify-content: center !important;

width: 100% !important;
min-height: 48px !important;
margin-top: 8px !important;
padding: 0 18px !important;

color: #ffffff !important;
-webkit-text-fill-color: #ffffff !important;

background: #456f4d !important;
border: 1px solid #456f4d !important;
border-radius: 6px !important;

opacity: 1 !important;
visibility: visible !important;

font-size: 15px !important;
font-weight: 700 !important;
line-height: 1 !important;
text-align: center !important;
}

.bm-nav-mobile-menu > a.bm-nav-cta:hover,
.bm-nav-mobile-menu > a.bm-nav-cta:focus {
color: #ffffff !important;
-webkit-text-fill-color: #ffffff !important;
background: #365c3e !important;
}
}

.bmh-home-heading,
.bmh-home-heading * {
box-sizing: border-box;
}

.bmh-home-heading {
width: 100%;
margin: 0;
padding: 0;
text-align: left;
}

.bmh-home-heading h1 {
width: 100%;
max-width: 100%;
margin: 0;
padding: 0;

color: #102d4d;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(35px, 4.0vw, 65px);
font-weight: 700;
letter-spacing: -0.04em;
line-height: 0.96;

overflow-wrap: normal;
word-break: normal;
text-align: left;
}

/* Tablet */
@media (min-width: 641px) and (max-width: 980px) {
.bmh-home-heading h1 {
max-width: 100%;
font-size: clamp(46px, 7vw, 64px);
line-height: 0.98;
letter-spacing: -0.035em;
}
}

/* Phone */
@media (max-width: 640px) {
.bmh-home-heading h1 {
max-width: 100%;
font-size: clamp(39px, 11vw, 54px);
line-height: 1;
letter-spacing: -0.03em;
overflow-wrap: break-word;
text-align: center;
}
}

.bmh-trust,
.bmh-trust * {
box-sizing: border-box;
}

.bmh-trust {
--green: #456f4d;
--text: #1f2529;

width: 100%;
margin: 0;
padding: 18px 0 8px;

font-family: Arial, Helvetica, sans-serif;
}

/* The whole group starts at the left edge */
.bmh-trust-row {
display: flex;
flex-wrap: nowrap;
align-items: flex-start;
justify-content: flex-start;

gap: 18px;
width: 100%;
margin: 0;
padding: 0;
}

/* Each icon-and-label group */
.bmh-trust-item {
display: flex;
flex: 0 0 118px;
flex-direction: column;
align-items: center;

min-width: 0;
margin: 0;
padding: 0;

text-align: center;
}

/* Icon container */
.bmh-trust-graphic {
display: flex;
align-items: center;
justify-content: center;

width: 54px;
height: 54px;
margin: 0 0 0px;
padding: 0;

color: var(--green);
}

/* Actual SVG */
.bmh-trust-graphic svg {
display: block !important;

width: 52px !important;
height: 52px !important;
max-width: none !important;

margin: 0 !important;
padding: 0 !important;

fill: none !important;
stroke: currentColor !important;
stroke-width: 2.4 !important;
stroke-linecap: round !important;
stroke-linejoin: round !important;

overflow: visible;
}

/* Labels */
.bmh-trust-item p {
margin: 0 !important;
padding: 0 !important;

color: var(--text);
font-size: 16px;
font-weight: 500;
line-height: 1.25;
text-align: center;
}

/* Tablet */
@media (max-width: 700px) {
.bmh-trust-row {
display: grid;
grid-template-columns: repeat(2, 118px);
gap: 26px 22px;
justify-content: start;
}
}

/* Phone */
@media (max-width: 430px) {
.bmh-trust {
padding: 14px 0 6px;
}

.bmh-trust-row {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 24px 14px;
}

.bmh-trust-item {
width: 100%;
flex-basis: auto;
}

.bmh-trust-graphic {
width: 48px;
height: 48px;
}

.bmh-trust-graphic svg {
width: 46px !important;
height: 46px !important;
}

.bmh-trust-item p {
font-size: 15px;
}
}

:root {
--bmf-bg: #f7f5ef;
--bmf-card: #ffffff;
--bmf-navy: #071b3d;
--bmf-green: #3f744b;
--bmf-text: #171717;
--bmf-radius: 18px;
}

* {
box-sizing: border-box;
}

html,
body {
margin: 0;
padding: 0;
background: transparent;
font-family: Arial, Helvetica, sans-serif;
color: var(--bmf-text);
}

.bmf-why {
width: min(94%, 1280px);
margin: 0 auto;
background: transparent;
padding: 34px 28px 40px;
}

.bmf-why__inner {
width: 100%;
margin: 0 auto;
}

.bmf-why__heading {
margin: 0;
text-align: center;
color: var(--bmf-navy);
font-size: clamp(28px, 3.2vw, 46px);
line-height: 1.1;
font-weight: 800;
letter-spacing: -0.035em;
}

.bmf-why__rule {
width: 64px;
height: 6px;
margin: 18px auto 30px;
border-radius: 999px;
background: var(--bmf-green);
}

.bmf-why__grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 18px;
}

.bmf-why__card {
min-height: 300px;
padding: 24px 18px;
border-radius: var(--bmf-radius);
background-color: #F7F4ED !important;
border: 1px solid rgba(7, 27, 61, 0.08);
box-shadow: 0 6px 18px rgba(7, 27, 61, 0.04);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.bmf-why__icon {
width: 82px;
height: 82px;
margin-bottom: 18px;
color: var(--bmf-green);
flex: 0 0 auto;
}

.bmf-why__icon svg {
display: block;
width: 100%;
height: 100%;
fill: none;
stroke: currentColor;
stroke-width: 4.5;
stroke-linecap: round;
stroke-linejoin: round;
}

.bmf-why__title {
margin: 0 0 14px;
color: var(--bmf-navy);
font-size: clamp(17px, 1.2vw, 21px);
line-height: 1.2;
font-weight: 800;
text-transform: uppercase;
}

.bmf-why__copy {
margin: 0;
max-width: 285px;
font-size: clamp(15px, 1vw, 18px);
line-height: 1.55;
}

@media (max-width: 1050px) {
.bmf-why__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
}

.bmf-why__card {
min-height: 310px;
padding: 24px 20px;
}

.bmf-why__icon {
width: 74px;
height: 74px;
}
}

@media (max-width: 620px) {
.bmf-why {
padding: 28px 14px;
}

.bmf-why__heading {
font-size: 30px;
}

.bmf-why__rule {
width: 52px;
height: 5px;
margin: 16px auto 24px;
}

.bmf-why__grid {
grid-template-columns: 1fr;
gap: 12px;
}

.bmf-why__card {
min-height: 0;
padding: 24px 18px;
}

.bmf-why__icon {
width: 68px;
height: 68px;
margin-bottom: 14px;
}

.bmf-why__title {
margin-bottom: 10px;
font-size: 17px;
}

.bmf-why__copy {
max-width: 340px;
font-size: 16px;
line-height: 1.5;
}
}

:root {
--bmf-bg: #f7f5ef;
--bmf-card: #ffffff;
--bmf-navy: #071b3d;
--bmf-green: #3f744b;
--bmf-text: #171717;
--bmf-radius: 18px;
}

* {
box-sizing: border-box;
}

html,
body {
margin: 0;
padding: 0;
background: transparent;
font-family: Arial, Helvetica, sans-serif;
color: var(--bmf-text);
}

.bmf-services {
width: min(94%, 1280px);
margin: 0 auto;
background: transparent;
padding: 34px 28px 0px;
}

.bmf-services__inner {
width: 100%;
margin: 0 auto;
}

.bmf-services__heading {
margin: 0;
text-align: center;
color: var(--bmf-navy);
font-size: clamp(28px, 3.2vw, 46px);
line-height: 1.1;
font-weight: 800;
letter-spacing: -0.035em;
}

.bmf-services__rule {
width: 64px;
height: 6px;
margin: 18px auto 30px;
border-radius: 999px;
background: var(--bmf-green);
}

.bmf-services__grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 18px;
}

.bmf-service {
min-height: 300px;
padding: 24px 18px;
border-radius: var(--bmf-radius);
background-color: #F7F4ED !important;
border: 1px solid rgba(7, 27, 61, 0.08);
box-shadow: 0 6px 18px rgba(7, 27, 61, 0.04);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.bmf-service__visual {
width: 82px;
height: 82px;
margin-bottom: 18px;
color: var(--bmf-green);
flex: 0 0 auto;
display: flex;
align-items: center;
justify-content: center;
}

.bmf-service__visual svg {
display: block;
width: 100%;
height: 100%;
fill: none;
stroke: currentColor;
stroke-width: 4.5;
stroke-linecap: round;
stroke-linejoin: round;
}

.bmf-service__body {
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
}

.bmf-service__title {
margin: 0 0 14px;
color: var(--bmf-navy);
font-size: clamp(17px, 1.2vw, 21px);
line-height: 1.2;
font-weight: 800;
text-transform: uppercase;
}

.bmf-service__copy {
margin: 0;
max-width: 285px;
font-size: clamp(15px, 1vw, 18px);
line-height: 1.55;
}

@media (max-width: 1050px) {
.bmf-services__grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
}

.bmf-service {
min-height: 310px;
padding: 24px 20px;
}

.bmf-service__visual {
width: 74px;
height: 74px;
}
}

@media (max-width: 620px) {
.bmf-services {
padding: 28px 14px;
}

.bmf-services__heading {
font-size: 30px;
}

.bmf-services__rule {
width: 52px;
height: 5px;
margin: 16px auto 24px;
}

.bmf-services__grid {
grid-template-columns: 1fr;
gap: 12px;
}

.bmf-service {
min-height: 0;
padding: 24px 18px;
}

.bmf-service__visual {
width: 68px;
height: 68px;
margin-bottom: 14px;
}

.bmf-service__title {
margin-bottom: 10px;
font-size: 17px;
}

.bmf-service__copy {
max-width: 340px;
font-size: 16px;
line-height: 1.5;
}
}

:root {
--bmf-bg: #F7F4ED;
--bmf-card: #ffffff;
--bmf-navy: #071b3d;
--bmf-green: #3f744b;
--bmf-text: #171717;
--bmf-border: rgba(7, 27, 61, 0.12);
--bmf-radius: 18px;
}

* {
box-sizing: border-box;
}

html,
body {
margin: 0;
padding: 0;
background: transparent;
font-family: Arial, Helvetica, sans-serif;
color: var(--bmf-text);
}

.bmf-results {
width: min(94%, 1280px);
margin: 0 auto;
background: var(--bmf-bg);
padding: 34px 28px 40px;
border-radius: 18px;
}

.bmf-results__inner {
width: 100%;
margin: 0 auto;
}

.bmf-results__heading {
margin: 0;
text-align: center;
color: var(--bmf-navy);
font-size: clamp(28px, 3.2vw, 46px);
line-height: 1.1;
font-weight: 800;
letter-spacing: -0.035em;
}

.bmf-results__rule {
width: 64px;
height: 6px;
margin: 18px auto 30px;
border-radius: 999px;
background: var(--bmf-green);
}

/* Testimonial */
.bmf-testimonial {
position: relative;
background: var(--bmf-card);
border: 1px solid var(--bmf-border);
border-radius: var(--bmf-radius);
padding: 32px 34px 30px 92px;
margin-bottom: 18px;
}

.bmf-testimonial__mark {
position: absolute;
top: 18px;
left: 28px;
color: var(--bmf-green);
font-size: 78px;
line-height: 1;
font-weight: 800;
}

.bmf-testimonial__text {
margin: 0;
color: var(--bmf-text);
font-size: clamp(17px, 1.25vw, 21px);
line-height: 1.65;
font-style: italic;
}

.bmf-testimonial__attribution {
margin: 18px 0 0;
color: var(--bmf-green);
font-size: 16px;
line-height: 1.4;
font-weight: 800;
}

/* Case study layout */
.bmf-case-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 18px;
align-items: stretch;
}

.bmf-case {
background: var(--bmf-card);
border: 1px solid var(--bmf-border);
border-radius: var(--bmf-radius);
padding: 22px;
display: flex;
flex-direction: column;
}

/* Fixed two-column header keeps both cards aligned */
.bmf-case__header {
display: grid;
grid-template-columns: 60px minmax(0, 1fr);
gap: 14px;
align-items: center;
min-height: 82px;
padding-bottom: 16px;
border-bottom: 1px solid rgba(63, 116, 75, 0.45);
}

.bmf-case__icon {
width: 60px;
height: 60px;
border: 1.5px solid var(--bmf-green);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--bmf-green);
}

.bmf-case__icon svg {
width: 34px;
height: 34px;
fill: none;
stroke: currentColor;
stroke-width: 2.8;
stroke-linecap: round;
stroke-linejoin: round;
}

.bmf-case__heading-group {
min-width: 0;
text-align: left;
}

.bmf-case__title {
margin: 0 0 5px;
color: var(--bmf-navy);
font-size: clamp(20px, 1.55vw, 25px);
line-height: 1.2;
font-weight: 800;
}

.bmf-case__industry {
margin: 0;
color: var(--bmf-green);
font-size: 16px;
line-height: 1.35;
font-weight: 700;
}

/* Equal, consistently aligned information columns */
.bmf-case__columns {
display: grid;
grid-template-columns: 1fr 1.14fr 1fr;
margin-top: 18px;
flex: 1;
align-items: stretch;
}

.bmf-case__column {
min-width: 0;
padding: 0 15px;
border-left: 1px solid rgba(7, 27, 61, 0.10);
}

.bmf-case__column:first-child {
padding-left: 0;
border-left: 0;
}

.bmf-case__column:last-child {
padding-right: 0;
}

.bmf-case__column-title {
min-height: 38px;
margin: 0 0 10px;
color: var(--bmf-green);
font-size: 15px;
line-height: 1.25;
font-weight: 800;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}

.bmf-case__list {
margin: 0;
padding-left: 0;
list-style: none;
font-size: 14.5px;
line-height: 1.55;
text-align: center;
}

.bmf-case__list li {
padding: 0px;
}

.bmf-case__list li + li {
margin-top: 7px;
}

.bmf-case__highlight {
color: var(--bmf-green);
font-weight: 800;
}

@media (max-width: 1050px) {
.bmf-case-grid {
grid-template-columns: 1fr;
}

.bmf-case__header {
min-height: 0;
}
}

@media (max-width: 760px) {
.bmf-case__columns {
grid-template-columns: 1fr;
gap: 16px;
}

.bmf-case__column {
padding: 16px 0 0;
border-left: 0;
border-top: 1px solid rgba(7, 27, 61, 0.10);
}

.bmf-case__column:first-child {
border-top: 0;
padding-top: 0;
}

.bmf-case__column-title {
min-height: 0;
margin-bottom: 8px;
}
}

@media (max-width: 620px) {
.bmf-results {
padding: 28px 14px;
}

.bmf-results__heading {
font-size: 30px;
}

.bmf-results__rule {
width: 52px;
height: 5px;
margin: 16px auto 24px;
}

.bmf-testimonial {
padding: 58px 20px 22px;
}

.bmf-testimonial__mark {
top: 10px;
left: 18px;
font-size: 58px;
}

.bmf-testimonial__text {
font-size: 16px;
line-height: 1.55;
}

.bmf-testimonial__attribution {
font-size: 15px;
}

.bmf-case {
padding: 18px;
}

.bmf-case__header {
grid-template-columns: 52px minmax(0, 1fr);
gap: 12px;
}

.bmf-case__icon {
width: 52px;
height: 52px;
}

.bmf-case__title {
font-size: 20px;
}

.bmf-case__industry {
font-size: 15px;
}

.bmf-case__list {
font-size: 15px;
}
}

.bm-services,
.bm-services * {
box-sizing: border-box;
}

.bm-services {
--bm-navy: #102d4d;
--bm-green: #456f4d;
--bm-soft-green: #e7ede3;
--bm-cream: #f7f5ef;
--bm-border: #e2e3dc;
--bm-text: #30363a;

width: 100%;
max-width: 1180px;
margin: 0 auto;
padding: 24px 18px 54px;
font-family: Arial, Helvetica, sans-serif;
}

.bm-services-header {
max-width: 720px;
margin: 0 auto 38px;
text-align: center;
}

.bm-eyebrow {
margin: 0 0 10px;
color: var(--bm-green);
font-size: 13px;
font-weight: 700;
letter-spacing: 0.18em;
text-transform: uppercase;
}

.bm-services-header h2 {
margin: 0 0 13px;
color: var(--bm-navy);
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(32px, 4vw, 48px);
line-height: 1.08;
font-weight: 700;
}

.bm-services-header p {
margin: 0;
color: var(--bm-text);
font-size: 17px;
line-height: 1.65;
}

.bm-services-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 24px;
}

.bm-service-card {
position: relative;
display: grid;
grid-template-columns: 74px 1fr;
gap: 22px;
min-height: 330px;
padding: 32px;
overflow: hidden;
background: #ffffff;
border: 1px solid var(--bm-border);
border-radius: 14px;
box-shadow: 0 12px 32px rgba(16, 45, 77, 0.07);
transition:
transform 180ms ease,
box-shadow 180ms ease,
border-color 180ms ease;
}

.bm-service-card::after {
content: "";
position: absolute;
right: -45px;
bottom: -55px;
width: 150px;
height: 150px;
border-radius: 50%;
background: rgba(69, 111, 77, 0.045);
}

.bm-service-card:hover {
transform: translateY(-4px);
border-color: rgba(69, 111, 77, 0.45);
box-shadow: 0 18px 42px rgba(16, 45, 77, 0.12);
}

.bm-icon {
display: flex;
align-items: center;
justify-content: center;
width: 74px;
height: 74px;
border-radius: 50%;
background: var(--bm-soft-green);
color: var(--bm-green);
}

.bm-icon svg {
width: 36px;
height: 36px;
fill: none;
stroke: currentColor;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
}

.bm-card-content {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
min-width: 0;
align-items: flex-start;
}

.bm-number {
margin: 0 0 7px;
color: var(--bm-green);
font-size: 12px;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
}

.bm-service-card h3 {
margin: 0;
color: var(--bm-navy);
font-family: Georgia, "Times New Roman", serif;
font-size: 23px;
line-height: 1.2;
font-weight: 700;
text-align: left;
}

.bm-divider {
width: 38px;
height: 2px;
margin: 16px 0;
background: var(--bm-green);
}

.bm-service-card p {
margin: 0 0 16px;
color: var(--bm-text);
font-size: 15px;
line-height: 1.65;
text-align: left;
}

.bm-feature-list {
width: 100%;
text-align: left;
display: flex;
flex-direction: column;
gap: 8px;
margin: 0 0 24px;
padding: 0;
}

.bm-feature-row {
display: flex;
align-items: flex-start;
gap: 10px;
margin: 0;
padding: 0;
color: var(--bm-text);
font-size: 14px;
line-height: 1.45;
}

.bm-feature-check {
flex: 0 0 auto;
margin: 0;
padding: 0;
color: var(--bm-green);
font-weight: 700;
line-height: 1.45;
}

.bm-feature-text {
margin: 0;
padding: 0;
}

.bm-learn-more {
display: inline-flex;
align-items: center;
gap: 8px;
width: fit-content;
margin-top: auto;
color: var(--bm-green);
font-size: 15px;
font-weight: 700;
text-decoration: none;
transition: gap 180ms ease;
}

.bm-learn-more:hover {
gap: 13px;
}

.bm-services-cta {
display: grid;
grid-template-columns: 1fr auto;
align-items: center;
gap: 28px;
margin-top: 30px;
padding: 28px 32px;
background: linear-gradient(
135deg,
#f2f1e9 0%,
#e9ede4 100%
);
border: 1px solid var(--bm-border);
border-radius: 14px;
}

.bm-services-cta h3 {
margin: 0 0 6px;
color: var(--bm-navy);
font-family: Georgia, "Times New Roman", serif;
font-size: 24px;
}

.bm-services-cta p {
margin: 0;
color: var(--bm-text);
font-size: 15px;
line-height: 1.5;
}

.bm-cta-button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 50px;
padding: 0 25px;
color: #ffffff;
background: var(--bm-green);
border-radius: 5px;
font-size: 14px;
font-weight: 700;
text-decoration: none;
white-space: nowrap;
transition:
transform 180ms ease,
background 180ms ease;
}

.bm-cta-button:hover {
transform: translateY(-2px);
background: #365c3e;
}

@media (max-width: 820px) {
.bm-services-grid {
grid-template-columns: 1fr;
}

.bm-service-card {
min-height: unset;
}
}

@media (max-width: 560px) {
.bm-services {
padding: 16px 10px 36px;
}

.bm-services-header {
margin-bottom: 26px;
}

.bm-service-card {
grid-template-columns: 1fr;
gap: 18px;
padding: 26px 22px;
}

.bm-icon {
width: 62px;
height: 62px;
}

.bm-icon svg {
width: 31px;
height: 31px;
}

.bm-service-card h3 {
font-size: 23px;
}

.bm-services-cta {
grid-template-columns: 1fr;
padding: 25px 22px;
}

.bm-cta-button {
width: 100%;
}
}

.bm-monthly,
.bm-monthly * {
box-sizing: border-box;
}

.bm-monthly {
--navy: #102d4d;
--green: #456f4d;
--green-dark: #365c3e;
--soft-green: #e8eee5;
--border: #dfe3da;
--text: #30363a;
--muted: #65706b;

width: 100%;
margin: 0 auto;
color: var(--text);
font-family: Arial, Helvetica, sans-serif;
text-align: left;
}

.bm-monthly a {
text-decoration: none;
}

.bm-monthly svg {
display: block;
max-width: 100%;
}

.bm-container {
width: min(1180px, calc(100% - 36px));
margin: 0 auto;
}

/* Small category label */

.bm-label {
display: flex;
align-items: center;
gap: 12px;
margin: 0 0 14px;

color: var(--green);
font-size: 12px;
font-weight: 700;
letter-spacing: 0.16em;
line-height: 1.3;
text-transform: uppercase;
}

.bm-label::after {
content: "";
width: 34px;
height: 1px;
background: var(--green);
}

/* CTA button */

.bm-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 9px;

width: fit-content;
min-height: 50px;
padding: 0 24px;

color: #ffffff !important;
background: var(--green);
border: 1px solid var(--green);
border-radius: 5px;

font-size: 14px;
font-weight: 700;
line-height: 1;

box-shadow: 0 10px 24px rgba(54, 92, 62, 0.16);

transition:
transform 180ms ease,
background 180ms ease,
box-shadow 180ms ease;
}

.bm-button:hover {
transform: translateY(-2px);
background: var(--green-dark);
box-shadow: 0 14px 28px rgba(54, 92, 62, 0.23);
}

/* Entire hero */

.bm-hero {
position: relative;
overflow: hidden;

background: linear-gradient(
135deg,
#fbfaf7 0%,
#f6f4ed 100%
);

border: 1px solid var(--border);
border-radius: 18px;
}

.bm-hero-grid {
display: grid;
grid-template-columns:
minmax(0, 0.88fr)
minmax(440px, 1.12fr);

align-items: stretch;
min-height: 510px;
}

/* Left side */

.bm-hero-copy {
display: flex;
flex-direction: column;
justify-content: center;

padding: 64px 34px 64px 54px;
}

.bm-hero h1 {
max-width: 520px;
margin: 0;

color: var(--navy);
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(35px, 4vw, 65px);
font-weight: 700;
letter-spacing: -0.035em;
line-height: 0.98;
text-align: left;
}

.bm-title-line {
width: 42px;
height: 3px;
margin: 24px 0 22px;
background: var(--green);
}

.bm-hero-copy > p {
max-width: 495px;
margin: 0 0 26px;

color: var(--text);
font-size: 17px;
line-height: 1.7;
text-align: left;
}

.bm-note {
display: flex;
align-items: center;
gap: 9px;

margin-top: 18px;

color: var(--muted);
font-size: 13px;
line-height: 1.5;
}

.bm-note svg {
width: 17px;
height: 17px;
flex: 0 0 auto;
color: var(--green);
}

/* Right side */

.bm-visual {
position: relative;

display: flex;
align-items: center;
justify-content: center;

min-height: 510px;
padding: 48px 44px;
overflow: hidden;

background: transparent;
}

.bm-visual::before,
.bm-visual::after {
display: none;
content: none;
}

/* Dashboard card */

.bm-dashboard {
position: relative;
z-index: 1;

width: min(92%, 560px);
margin: auto;
padding: 22px;

background: #ffffff;
border: 1px solid rgba(16, 45, 77, 0.12);
border-radius: 16px;

box-shadow:
0 26px 65px rgba(16, 45, 77, 0.18);

transform: rotate(-1deg);
}

.bm-dashboard-top {
display: flex;
align-items: center;
justify-content: space-between;
gap: 18px;

padding-bottom: 16px;
border-bottom: 1px solid #e7e9e4;
}

.bm-dashboard-eyebrow {
margin: 0 0 4px;

color: var(--muted);
font-size: 10px;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
}

.bm-dashboard strong {
display: block;

color: var(--navy);
font-family: Georgia, "Times New Roman", serif;
font-size: 21px;
line-height: 1.2;
}

.bm-status {
flex: 0 0 auto;

padding: 7px 10px;

color: var(--green-dark);
background: var(--soft-green);
border-radius: 999px;

font-size: 10px;
font-weight: 700;
}

/* Dashboard graph */

.bm-chart {
position: relative;

height: 150px;
margin-top: 18px;
padding: 16px 14px;
overflow: hidden;

background:
repeating-linear-gradient(
to bottom,
#ffffff 0,
#ffffff 29px,
#eef0ec 30px
);

border: 1px solid #e4e7e1;
border-radius: 10px;
}

.bm-chart svg {
position: absolute;
inset: 18px 12px 12px;

width: calc(100% - 24px);
height: calc(100% - 30px);
}

/* Dashboard metrics */

.bm-metrics {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;

margin-top: 14px;
}

.bm-metric {
padding: 14px;

background: #f8f9f6;
border: 1px solid #e6e8e3;
border-radius: 9px;
}

.bm-metric span {
display: block;
margin-bottom: 5px;

color: var(--muted);
font-size: 9px;
font-weight: 700;
letter-spacing: 0.07em;
text-transform: uppercase;
}

.bm-metric strong {
display: block;

color: var(--navy);
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
}

.bm-metric small {
display: block;
margin-top: 4px;

color: var(--green);
font-size: 9px;
font-weight: 700;
}

/* Tablet */

@media (max-width: 980px) {
.bm-hero-grid {
grid-template-columns: 1fr;
}

.bm-hero-copy {
padding: 58px 46px 42px;
}

.bm-visual {
min-height: 430px;
}
}

/* Mobile */

@media (max-width: 640px) {
.bm-container {
width: min(100% - 20px, 1180px);
}

.bm-hero {
border-radius: 12px;
}

.bm-hero-copy {
padding: 42px 24px 34px;
}

.bm-hero h1 {
max-width: 100%;
font-size: clamp(34px, 11vw, 50px);
line-height: 1;
overflow-wrap: break-word;
}

.bm-hero-copy > p {
font-size: 16px;
}

.bm-button {
width: 100%;
}

.bm-visual {
width: 100%;
min-width: 0;
padding: 24px 14px 36px;
}

.bm-dashboard {
width: 100%;
max-width: 100%;
transform: none;
}

.bm-chart {
height: 120px;
}

.bm-metrics {
gap: 7px;
}

.bm-metric {
padding: 10px 8px;
}

.bm-metric strong {
font-size: 14px;
}
.bm-bottom-phone-icon {
margin: 0 auto;
}
}

/* BENEFITS */

.bm-benefits {
margin-top: 26px;
padding: 26px 16px;
background: linear-gradient(
120deg,
#eef2ea 0%,
#faf9f5 48%,
#eef2ea 100%
);
border: 1px solid var(--border);
border-radius: 14px;
}

.bm-benefits-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
}

.bm-benefit {
padding: 8px 28px;
text-align: center;
}

.bm-benefit + .bm-benefit {
border-left: 1px solid #dce1d8;
}

.bm-benefit-icon {
display: flex;
align-items: center;
justify-content: center;
width: 58px;
height: 58px;
margin: 0 auto 14px;
color: var(--green);
background: #ffffff;
border: 1px solid #e1e5de;
border-radius: 50%;
}

.bm-benefit-icon svg {
width: 29px;
height: 29px;
fill: none;
stroke: currentColor;
stroke-width: 1.9;
stroke-linecap: round;
stroke-linejoin: round;
}

.bm-benefit h3 {
margin: 0 0 7px;
color: var(--green-dark);
font-family: Georgia, "Times New Roman", serif;
font-size: 18px;
line-height: 1.25;
}

.bm-benefit p {
margin: 0;
color: var(--text);
font-size: 13px;
line-height: 1.6;
}

/* WHAT'S INCLUDED */

.bm-included {
padding: 76px 0 70px;
}

.bm-included-grid {
display: grid;
grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
gap: 76px;
align-items: start;
}

.bm-included-copy h2,
.bm-process h2 {
margin: 0;
color: var(--navy);
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(34px, 4vw, 50px);
font-weight: 700;
letter-spacing: -0.025em;
line-height: 1.08;
}

.bm-included-copy > p {
margin: 20px 0 26px;
color: var(--text);
font-size: 16px;
line-height: 1.72;
}

.bm-contractor-note {
display: grid;
grid-template-columns: 54px 1fr;
gap: 18px;
padding: 22px;
background: linear-gradient(135deg, #f1f3ed, #e9ede4);
border: 1px solid var(--border);
border-radius: 11px;
}

.bm-contractor-note-icon {
display: flex;
align-items: center;
justify-content: center;
width: 54px;
height: 54px;
color: var(--green);
background: rgba(255, 255, 255, 0.64);
border-radius: 9px;
}

.bm-contractor-note-icon svg {
width: 31px;
height: 31px;
fill: none;
stroke: currentColor;
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
}

.bm-contractor-note h3 {
margin: 0 0 7px;
color: var(--green-dark);
font-family: Georgia, "Times New Roman", serif;
font-size: 18px;
line-height: 1.3;
}

.bm-contractor-note p {
margin: 0;
color: var(--text);
font-size: 13px;
line-height: 1.62;
}

.bm-included-list {
display: flex;
flex-direction: column;
gap: 24px;
padding-top: 6px;
}

.bm-included-item {
display: grid;
grid-template-columns: 28px 1fr;
gap: 14px;
align-items: start;
}

.bm-included-check {
display: flex;
align-items: center;
justify-content: center;
width: 22px;
height: 22px;
margin-top: 1px;
color: var(--green);
border: 1.5px solid var(--green);
border-radius: 50%;
font-size: 12px;
font-weight: 700;
}

.bm-included-item h3 {
margin: 0 0 4px;
color: var(--text);
font-family: Georgia, "Times New Roman", serif;
font-size: 18px;
line-height: 1.3;
}

.bm-included-item p {
margin: 0;
color: var(--muted);
font-size: 14px;
line-height: 1.55;
}

/* PROCESS */

.bm-process {
padding: 66px 0 68px;
background: linear-gradient(
180deg,
rgba(247, 245, 239, 0.75),
rgba(255, 255, 255, 0.9)
);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}

.bm-process-header {
margin-bottom: 42px;
text-align: center;
}

.bm-process-header .bm-label {
justify-content: center;
}

.bm-process-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
}

.bm-process-step {
position: relative;
padding: 0 28px;
text-align: center;
}

.bm-process-step + .bm-process-step {
border-left: 1px solid #dfe3db;
}

.bm-step-number {
display: flex;
align-items: center;
justify-content: center;
width: 34px;
height: 34px;
margin: 0 auto 18px;
color: #ffffff;
background: var(--green);
border-radius: 50%;
font-size: 13px;
font-weight: 700;
}

.bm-step-icon {
display: flex;
align-items: center;
justify-content: center;
height: 48px;
margin-bottom: 15px;
color: var(--green);
}

.bm-step-icon svg {
width: 42px;
height: 42px;
fill: none;
stroke: currentColor;
stroke-width: 1.75;
stroke-linecap: round;
stroke-linejoin: round;
}

.bm-process-step h3 {
margin: 0 0 8px;
color: var(--navy);
font-family: Georgia, "Times New Roman", serif;
font-size: 19px;
line-height: 1.3;
}

.bm-process-step p {
margin: 0;
color: var(--text);
font-size: 13px;
line-height: 1.62;
}

/* FINAL CTA */

.bm-monthly-bottom {
padding: 42px 0 12px;
}

.bm-bottom-cta {
position: relative;
display: grid;
grid-template-columns: 80px 1fr auto;
gap: 26px;
align-items: center;
overflow: hidden;
padding: 30px 34px;
background: linear-gradient(135deg, #edf1e9 0%, #f7f6f0 68%);
border: 1px solid var(--border);
border-radius: 15px;
}

.bm-bottom-cta::after {
content: "";
position: absolute;
right: -55px;
bottom: -105px;
width: 280px;
height: 220px;
border: 2px solid rgba(69, 111, 77, 0.08);
border-radius: 50%;
}

.bm-bottom-phone-icon {
position: relative;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
width: 72px;
height: 72px;
color: var(--green);
background: rgba(255, 255, 255, 0.75);
border-radius: 50%;
}

.bm-bottom-phone-icon svg {
width: 36px;
height: 36px;
fill: none;
stroke: currentColor;
stroke-width: 1.7;
stroke-linecap: round;
stroke-linejoin: round;
}

.bm-bottom-copy {
position: relative;
z-index: 1;
}

.bm-bottom-copy h2 {
margin: 0 0 7px;
color: var(--navy);
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(27px, 3vw, 38px);
line-height: 1.1;
}

.bm-bottom-copy p {
margin: 0;
color: var(--text);
font-size: 14px;
line-height: 1.55;
}

.bm-bottom-actions {
position: relative;
z-index: 1;
display: flex;
align-items: center;
gap: 22px;
}

.bm-visible-phone {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--navy) !important;
font-size: 14px;
font-weight: 700;
white-space: nowrap;
}

.bm-visible-phone svg {
width: 18px;
height: 18px;
fill: none;
stroke: var(--green);
stroke-width: 1.8;
stroke-linecap: round;
stroke-linejoin: round;
}

/* TABLET */

@media (max-width: 980px) {
.bm-benefits-grid {
grid-template-columns: repeat(2, 1fr);
}

.bm-benefit:nth-child(3) {
border-left: none;
}

.bm-benefit:nth-child(n + 3) {
margin-top: 24px;
padding-top: 26px;
border-top: 1px solid #dce1d8;
}

.bm-included-grid {
grid-template-columns: 1fr;
gap: 46px;
}

.bm-process-grid {
grid-template-columns: repeat(2, 1fr);
row-gap: 40px;
}

.bm-process-step:nth-child(3) {
border-left: none;
}

.bm-process-step:nth-child(n + 3) {
padding-top: 36px;
border-top: 1px solid #dfe3db;
}

.bm-bottom-cta {
grid-template-columns: 72px 1fr;
}

.bm-bottom-actions {
grid-column: 1 / -1;
justify-content: flex-start;
padding-left: 98px;
}
}

/* MOBILE */

@media (max-width: 640px) {
.bm-benefits {
padding: 20px 18px;
}

.bm-benefits-grid {
grid-template-columns: 1fr;
}

.bm-benefit {
padding: 20px 8px;
}

.bm-benefit + .bm-benefit,
.bm-benefit:nth-child(3) {
margin-top: 0;
border-left: none;
border-top: 1px solid #dce1d8;
}

.bm-included {
padding: 58px 0 54px;
}

.bm-included-copy h2,
.bm-process h2 {
font-size: 36px;
}

.bm-contractor-note {
grid-template-columns: 1fr;
}

.bm-process {
padding: 54px 0;
}

.bm-process-grid {
grid-template-columns: 1fr;
}

.bm-process-step {
padding: 30px 12px;
}

.bm-process-step + .bm-process-step,
.bm-process-step:nth-child(3) {
border-left: none;
border-top: 1px solid #dfe3db;
}

.bm-process-step:first-child {
padding-top: 0;
}

.bm-bottom-cta {
grid-template-columns: 1fr;
gap: 20px;
padding: 27px 22px;
}

.bm-bottom-phone-icon {
width: 62px;
height: 62px;
}

.bm-bottom-actions {
grid-column: auto;
flex-direction: column;
align-items: stretch;
padding-left: 0;
}

.bm-bottom-actions .bm-button {
width: 100%;
}

.bm-visible-phone {
justify-content: center;
}
}

.bmc,.bmc *{box-sizing:border-box}.bmc{--navy:#102d4d;--green:#456f4d;--green2:#365c3e;--soft:#e8eee5;--cream:#f7f5ef;--border:#dfe3da;--text:#30363a;--muted:#65706b;width:100%;color:var(--text);font-family:Arial,Helvetica,sans-serif;text-align:left}.bmc a{text-decoration:none}.bmc svg{display:block;max-width:100%}.bmc-c{width:min(1180px,calc(100% - 36px));margin:0 auto}.bmc-label{display:flex;align-items:center;gap:12px;margin:0 0 14px;color:var(--green);font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase}.bmc-label:after{content:"";width:34px;height:1px;background:var(--green)}.bmc-btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;width:fit-content;min-height:50px;padding:0 24px;color:#fff!important;background:var(--green);border:1px solid var(--green);border-radius:5px;font-size:14px;font-weight:700;box-shadow:0 10px 24px rgba(54,92,62,.16)}.bmc-btn:hover{background:var(--green2);transform:translateY(-2px)}
							.bmc-hero{overflow:hidden;background:linear-gradient(135deg,#fbfaf7,#f6f4ed);border:1px solid var(--border);border-radius:18px}.bmc-hero-grid{display:grid;grid-template-columns:minmax(0,.95fr) minmax(430px,1.05fr);min-height:520px}.bmc-copy{display:flex;flex-direction:column;justify-content:center;padding:62px 36px 62px 54px}.bmc-hero h1{max-width: 520px;
							margin: 0;

							color: var(--navy);
							font-family: Georgia, "Times New Roman", serif;
							font-size: clamp(35px, 4vw, 65px);
							font-weight: 700;
							letter-spacing: -0.035em;
							line-height: 0.98;
							text-align: left;}.bmc-line{width:42px;height:3px;margin:24px 0 22px;background:var(--green)}.bmc-copy>p{max-width:520px;margin:0 0 26px;font-size:17px;line-height:1.7}.bmc-note{display:flex;gap:9px;margin-top:18px;color:var(--muted);font-size:13px;line-height:1.5}.bmc-note svg{width:17px;height:17px;flex:0 0 auto;color:var(--green)}
							.bmc-visual{display:flex;align-items:center;justify-content:center;min-height:520px;padding:46px 40px}.bmc-review{width:min(94%,570px);padding:22px;background:#fff;border:1px solid rgba(16,45,77,.12);border-radius:16px;box-shadow:0 26px 65px rgba(16,45,77,.18);transform:rotate(-.7deg)}.bmc-review-top{display:flex;justify-content:space-between;gap:18px;padding-bottom:16px;border-bottom:1px solid #e7e9e4}.bmc-eyebrow{margin:0 0 4px;color:var(--muted);font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase}.bmc-review-title{display:block;color:var(--navy);font:700 21px/1.2 Georgia,serif}.bmc-status{flex:0 0 auto;
							align-self:center;

							padding:6px 14px;

							color:#9a6a2f;
							background:#f6e7d1;

							border-radius:999px;

							font-size:10px;
							font-weight:700;
							line-height:1;}.bmc-issues {
							display: grid;
							gap: 10px;
							margin-top: 16px;
							}

							.bmc-issue {
							display: grid;
							grid-template-columns: 36px minmax(0, 1fr) auto;
							gap: 12px;
							align-items: center;

							padding: 12px 13px;

							background: #f8f9f6;
							border: 1px solid #e6e8e3;
							border-radius: 9px;
							}.bmc-issue i{display:flex;align-items:center;justify-content:center;width:34px;height:34px;color:var(--green);background:var(--soft);border-radius:50%;font-style:normal;font-weight:700}.bmc-issue strong{display:block;margin-bottom:3px;color:var(--navy);font-size:13px}.bmc-issue span{color:var(--muted);font-size:10px}.bmc-count{color:#9a6a2f;font-size:12px;font-weight:700}.bmc-progress{margin-top:16px;padding:14px;background:#f5f6f2;border:1px solid #e3e6df;border-radius:10px}.bmc-progress-top{display:flex;justify-content:space-between;margin-bottom:9px;color:var(--muted);font-size:10px;font-weight:700}.bmc-bar{height:9px;background:#e4e8e0;border-radius:999px;overflow:hidden}.bmc-fill{width:67%;height:100%;background:linear-gradient(90deg,var(--green),#6f8f70)}
							.bmc-strip{margin-top:26px;padding:26px 16px;background:linear-gradient(120deg,#eef2ea,#faf9f5 48%,#eef2ea);border:1px solid var(--border);border-radius:14px}.bmc-strip-grid{display:grid;grid-template-columns:repeat(4,1fr)}.bmc-mini{padding:8px 26px;text-align:center}.bmc-mini+.bmc-mini{border-left:1px solid #dce1d8}.bmc-mini-icon{display:flex;align-items:center;justify-content:center;width:58px;height:58px;margin:0 auto 14px;color:var(--green);background:#fff;border:1px solid #e1e5de;border-radius:50%;font-size:24px}.bmc-mini h3{margin:0 0 7px;color:var(--green2);font:700 18px/1.25 Georgia,serif}.bmc-mini p{margin:0;font-size:13px;line-height:1.6}
							.bmc-scope{padding:76px 0 70px}.bmc-head{max-width:760px;margin-bottom:34px}.bmc h2{margin:0;color:var(--navy);font:700 clamp(34px,4vw,50px)/1.08 Georgia,serif;letter-spacing:-.025em}.bmc-head>p{margin:18px 0 0;font-size:16px;line-height:1.72}.bmc-scope-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}.bmc-card{padding:28px;background:#fff;border:1px solid var(--border);border-radius:14px;box-shadow:0 12px 32px rgba(16,45,77,.07)}.bmc-card:nth-child(2){background:linear-gradient(135deg,#f4f6f1,#edf1e9)}.bmc-kicker{margin:0 0 8px;color:var(--green);font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase}.bmc-card h3{margin:0 0 12px;color:var(--navy);font:700 27px/1.2 Georgia,serif}.bmc-card>p{margin:0 0 20px;font-size:14px;line-height:1.65}.bmc-list{display:flex;flex-direction:column;gap:9px}.bmc-row{display:flex;gap:9px;font-size:14px;line-height:1.45}.bmc-check{color:var(--green);font-weight:700}
							.bmc-included{padding:68px 0 70px;background:linear-gradient(180deg,rgba(247,245,239,.76),rgba(255,255,255,.92));border-top:1px solid var(--border);border-bottom:1px solid var(--border)}.bmc-included-grid{display:grid;grid-template-columns:minmax(0,.78fr) minmax(0,1.22fr);gap:72px}.bmc-included-copy>p{margin:20px 0 24px;font-size:16px;line-height:1.72}.bmc-note-box{padding:20px;background:linear-gradient(135deg,#f1f3ed,#e9ede4);border:1px solid var(--border);border-radius:11px}.bmc-note-box h3{margin:0 0 7px;color:var(--green2);font:700 18px Georgia,serif}.bmc-note-box p{margin:0;font-size:13px;line-height:1.62}.bmc-included-list{display:flex;flex-direction:column;gap:23px}.bmc-item{display:grid;grid-template-columns:28px 1fr;gap:14px}.bmc-circle{display:flex;align-items:center;justify-content:center;width:22px;height:22px;color:var(--green);border:1.5px solid var(--green);border-radius:50%;font-size:12px;font-weight:700}.bmc-item h3{margin:0 0 4px;font:700 18px/1.3 Georgia,serif}.bmc-item p{margin:0;color:var(--muted);font-size:14px;line-height:1.55}
							.bmc-process{padding:66px 0 68px}.bmc-process-head{text-align:center;margin-bottom:42px}.bmc-process-head .bmc-label{justify-content:center}.bmc-process-grid{display:grid;grid-template-columns:repeat(4,1fr)}.bmc-step{padding:0 27px;text-align:center}.bmc-step+.bmc-step{border-left:1px solid #dfe3db}.bmc-num{display:flex;align-items:center;justify-content:center;width:34px;height:34px;margin:0 auto 18px;color:#fff;background:var(--green);border-radius:50%;font-size:13px;font-weight:700}.bmc-step-icon{height:48px;margin-bottom:15px;color:var(--green);font-size:34px}.bmc-step h3{margin:0 0 8px;color:var(--navy);font:700 19px/1.3 Georgia,serif}.bmc-step p{margin:0;font-size:13px;line-height:1.62}
							.bmc-bottom{padding:42px 0 12px}.bmc-cta{display:grid;grid-template-columns:80px 1fr auto;gap:26px;align-items:center;padding:30px 34px;background:linear-gradient(135deg,#edf1e9,#f7f6f0 68%);border:1px solid var(--border);border-radius:15px}.bmc-cta-icon{display:flex;align-items:center;justify-content:center;width:72px;height:72px;color:var(--green);background:rgba(255,255,255,.75);border-radius:50%;font-size:32px}.bmc-cta h2{font-size:clamp(27px,3vw,38px)}.bmc-cta p{margin:7px 0 0;font-size:14px;line-height:1.55}.bmc-actions{display:flex;align-items:center;gap:22px}.bmc-phone{color:var(--navy)!important;font-size:14px;font-weight:700;white-space:nowrap}
							@media(max-width:980px){.bmc-hero-grid{grid-template-columns:1fr}.bmc-copy{padding:58px 46px 42px}.bmc-strip-grid{grid-template-columns:repeat(2,1fr)}.bmc-mini:nth-child(3){border-left:none}.bmc-mini:nth-child(n+3){border-top:1px solid #dce1d8;margin-top:24px;padding-top:26px}.bmc-included-grid{grid-template-columns:1fr;gap:44px}.bmc-process-grid{grid-template-columns:repeat(2,1fr);row-gap:40px}.bmc-step:nth-child(3){border-left:none}.bmc-step:nth-child(n+3){padding-top:36px;border-top:1px solid #dfe3db}.bmc-cta{grid-template-columns:72px 1fr}.bmc-actions{grid-column:1/-1;padding-left:98px}}
							@media(max-width:640px){.bmc-c{width:min(100% - 20px,1180px)}.bmc-copy{padding:42px 24px 34px}.bmc-hero h1{max-width: 100%; font-size: clamp(34px, 11vw, 50px);
							line-height: 1;
							overflow-wrap: break-word;}.bmc-visual{width: 100%;
							min-width: 0;
							padding: 24px 14px 36px;}.bmc-review{width: 100%;
							max-width: 100%;
							transform: none;}.bmc-strip-grid,.bmc-scope-grid,.bmc-process-grid{grid-template-columns:1fr}.bmc-mini{padding:20px 8px}.bmc-mini+.bmc-mini,.bmc-mini:nth-child(3){border-left:none;border-top:1px solid #dce1d8;margin-top:0}.bmc h2{font-size:36px}.bmc-step{padding:30px 12px}.bmc-step+.bmc-step,.bmc-step:nth-child(3){border-left:none;border-top:1px solid #dfe3db}.bmc-cta{grid-template-columns:1fr;padding:27px 22px}.bmc-actions {
							grid-column: auto;
							display: flex;
							flex-direction: column;
							align-items: center;
							padding-left: 0;
							}.bmc-phone{text-align:center}.bmc-cta-icon {
							margin: 0 auto;
							}}

@media (max-width: 640px) {
.bmc-process { padding: 40px 0 16px; }
.bmc-process-head { margin-bottom: 22px; }
.bmc-process-grid { row-gap: 0; }
.bmc-step,
.bmc-step:nth-child(n+3) { padding: 20px 12px; }
.bmc-num { margin-bottom: 8px; }
.bmc-step-icon { height: 34px; line-height: 1; margin-bottom: 8px; }
.bmc-step h3 { margin-bottom: 6px; }
.bmc-bottom { padding-top: 12px; }
}

.bmj,.bmj *{box-sizing:border-box}.bmj{--navy:#102d4d;--green:#456f4d;--green2:#365c3e;--soft:#e8eee5;--cream:#f7f5ef;--border:#dfe3da;--text:#30363a;--muted:#65706b;width:100%;color:var(--text);font-family:Arial,Helvetica,sans-serif;text-align:left}.bmj a{text-decoration:none}.bmj svg{display:block;max-width:100%}.bmj-c{width:min(1180px,calc(100% - 36px));margin:0 auto}.bmj-label{display:flex;align-items:center;gap:12px;margin:0 0 14px;color:var(--green);font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase}.bmj-label:after{content:"";width:34px;height:1px;background:var(--green)}.bmj-btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;width:fit-content;min-height:50px;padding:0 24px;color:#fff!important;background:var(--green);border:1px solid var(--green);border-radius:5px;font-size:14px;font-weight:700;box-shadow:0 10px 24px rgba(54,92,62,.16);transition:transform .18s ease,background .18s ease,box-shadow .18s ease}.bmj-btn:hover{background:var(--green2);transform:translateY(-2px);box-shadow:0 14px 28px rgba(54,92,62,.23)}
.bmj-hero{overflow:hidden;background:linear-gradient(135deg,#fbfaf7,#f6f4ed);border:1px solid var(--border);border-radius:18px}.bmj-hero-grid{display:grid;grid-template-columns:minmax(0,.92fr) minmax(440px,1.08fr);min-height:520px}.bmj-copy{display:flex;flex-direction:column;justify-content:center;padding:62px 36px 62px 54px}.bmj-hero h1{max-width: 520px;
margin: 0;

color: var(--navy);
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(35px, 4vw, 65px);
font-weight: 700;
letter-spacing: -0.035em;
line-height: 0.98;
text-align: left;}.bmj-line{width:42px;height:3px;margin:24px 0 22px;background:var(--green)}.bmj-copy>p{max-width:525px;margin:0 0 26px;font-size:17px;line-height:1.7}.bmj-note{display:flex;align-items:flex-start;gap:9px;margin-top:18px;color:var(--muted);font-size:13px;line-height:1.5}.bmj-note svg{width:17px;height:17px;flex:0 0 auto;margin-top:1px;color:var(--green)}
.bmj-visual{display:flex;align-items:center;justify-content:center;min-height:520px;padding:46px 40px}.bmj-dashboard{width:min(94%,580px);padding:22px;background:#fff;border:1px solid rgba(16,45,77,.12);border-radius:16px;box-shadow:0 26px 65px rgba(16,45,77,.18);transform:rotate(-.7deg)}.bmj-dashboard-top{display:flex;align-items:center;justify-content:space-between;gap:18px;padding-bottom:16px;border-bottom:1px solid #e7e9e4}.bmj-eyebrow{margin:0 0 4px;color:var(--muted);font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase}.bmj-dashboard-title{display:block;color:var(--navy);font:700 21px/1.2 Georgia,"Times New Roman",serif}.bmj-status{flex:0 0 auto;padding:6px 12px;color:var(--green2);background:var(--soft);border-radius:999px;font-size:10px;font-weight:700;line-height:1}.bmj-job-table{display:grid;gap:10px;margin-top:16px}.bmj-job{display:grid;grid-template-columns:minmax(0,1.4fr) repeat(3,minmax(64px,.7fr));gap:10px;align-items:center;padding:12px 13px;background:#f8f9f6;border:1px solid #e6e8e3;border-radius:9px}.bmj-job-head{color:var(--muted);font-size:9px;font-weight:700;letter-spacing:.06em;text-transform:uppercase}.bmj-job-name strong{display:block;color:var(--navy);font-size:12px;line-height:1.25}.bmj-job-name span{color:var(--muted);font-size:9px}.bmj-job-value{color:var(--navy);font-size:11px;font-weight:700;text-align:right}.bmj-job-margin{display:inline-flex;justify-content:flex-end;color:var(--green2);font-size:11px;font-weight:700}.bmj-job-margin.low{color:#9a6a2f}.bmj-summary{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:14px}.bmj-summary-card{padding:12px;background:#f5f6f2;border:1px solid #e3e6df;border-radius:9px}.bmj-summary-card span{display:block;margin-bottom:4px;color:var(--muted);font-size:9px;font-weight:700;text-transform:uppercase}.bmj-summary-card strong{display:block;color:var(--navy);font-size:16px}.bmj-summary-card small{display:block;margin-top:3px;color:var(--green);font-size:9px;font-weight:700}
.bmj-strip{margin-top:26px;padding:26px 16px;background:linear-gradient(120deg,#eef2ea,#faf9f5 48%,#eef2ea);border:1px solid var(--border);border-radius:14px}.bmj-strip-grid{display:grid;grid-template-columns:repeat(4,1fr)}.bmj-mini{padding:8px 26px;text-align:center}.bmj-mini+.bmj-mini{border-left:1px solid #dce1d8}.bmj-mini-icon{display:flex;align-items:center;justify-content:center;width:58px;height:58px;margin:0 auto 14px;color:var(--green);background:#fff;border:1px solid #e1e5de;border-radius:50%}.bmj-mini-icon svg{width:29px;height:29px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}.bmj-mini h3{margin:0 0 7px;color:var(--green2);font:700 18px/1.25 Georgia,serif}.bmj-mini p{margin:0;font-size:13px;line-height:1.6}
.bmj-explain{padding:76px 0 70px}.bmj-explain-grid{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);gap:70px;align-items:start}.bmj h2{margin:0;color:var(--navy);font:700 clamp(34px,4vw,50px)/1.08 Georgia,serif;letter-spacing:-.025em}.bmj-explain-copy>p{margin:20px 0 24px;font-size:16px;line-height:1.72}.bmj-callout{padding:20px;background:linear-gradient(135deg,#f1f3ed,#e9ede4);border:1px solid var(--border);border-radius:11px}.bmj-callout h3{margin:0 0 7px;color:var(--green2);font:700 18px Georgia,serif}.bmj-callout p{margin:0;font-size:13px;line-height:1.62}.bmj-flow{display:flex;flex-direction:column;gap:18px;padding-top:4px}.bmj-flow-item{display:grid;grid-template-columns:46px 1fr;gap:15px;align-items:start}.bmj-flow-icon{display:flex;align-items:center;justify-content:center;width:44px;height:44px;color:var(--green);background:var(--soft);border-radius:10px}.bmj-flow-icon svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.bmj-flow-item h3{margin:0 0 4px;color:var(--text);font:700 18px/1.3 Georgia,serif}.bmj-flow-item p{margin:0;color:var(--muted);font-size:14px;line-height:1.55}
.bmj-included{padding:68px 0 70px;background:linear-gradient(180deg,rgba(247,245,239,.76),rgba(255,255,255,.92));border-top:1px solid var(--border);border-bottom:1px solid var(--border)}.bmj-included-grid{display:grid;grid-template-columns:minmax(0,.78fr) minmax(0,1.22fr);gap:72px}.bmj-included-copy>p{margin:20px 0 24px;font-size:16px;line-height:1.72}.bmj-note-box{padding:20px;background:linear-gradient(135deg,#f1f3ed,#e9ede4);border:1px solid var(--border);border-radius:11px}.bmj-note-box h3{margin:0 0 7px;color:var(--green2);font:700 18px Georgia,serif}.bmj-note-box p{margin:0;font-size:13px;line-height:1.62}.bmj-included-list{display:flex;flex-direction:column;gap:23px}.bmj-item{display:grid;grid-template-columns:28px 1fr;gap:14px}.bmj-circle{display:flex;align-items:center;justify-content:center;width:22px;height:22px;color:var(--green);border:1.5px solid var(--green);border-radius:50%;font-size:12px;font-weight:700}.bmj-item h3{margin:0 0 4px;font:700 18px/1.3 Georgia,serif}.bmj-item p{margin:0;color:var(--muted);font-size:14px;line-height:1.55}
.bmj-process{padding:66px 0 68px}.bmj-process-head{text-align:center;margin-bottom:42px}.bmj-process-head .bmj-label{justify-content:center}.bmj-process-grid{display:grid;grid-template-columns:repeat(4,1fr)}.bmj-step{padding:0 27px;text-align:center}.bmj-step+.bmj-step{border-left:1px solid #dfe3db}.bmj-num{display:flex;align-items:center;justify-content:center;width:34px;height:34px;margin:0 auto 18px;color:#fff;background:var(--green);border-radius:50%;font-size:13px;font-weight:700}.bmj-step-icon{display:flex;align-items:center;justify-content:center;height:48px;margin-bottom:15px;color:var(--green)}.bmj-step-icon svg{width:42px;height:42px;fill:none;stroke:currentColor;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}.bmj-step h3{margin:0 0 8px;color:var(--navy);font:700 19px/1.3 Georgia,serif}.bmj-step p{margin:0;font-size:13px;line-height:1.62}
.bmj-bottom{padding:42px 0 12px}.bmj-cta{display:grid;grid-template-columns:80px 1fr auto;gap:26px;align-items:center;padding:30px 34px;background:linear-gradient(135deg,#edf1e9,#f7f6f0 68%);border:1px solid var(--border);border-radius:15px}.bmj-cta-icon{display:flex;align-items:center;justify-content:center;width:72px;height:72px;color:var(--green);background:rgba(255,255,255,.75);border-radius:50%}.bmj-cta-icon svg{width:36px;height:36px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}.bmj-cta h2{font-size:clamp(27px,3vw,38px)}.bmj-cta p{margin:7px 0 0;font-size:14px;line-height:1.55}.bmj-actions{display:flex;align-items:center;gap:22px}.bmj-phone{color:var(--navy)!important;font-size:14px;font-weight:700;white-space:nowrap}
@media(max-width:980px){.bmj-hero-grid{grid-template-columns:1fr}.bmj-copy{padding:58px 46px 42px}.bmj-visual{min-height:430px}.bmj-strip-grid{grid-template-columns:repeat(2,1fr)}.bmj-mini:nth-child(3){border-left:none}.bmj-mini:nth-child(n+3){border-top:1px solid #dce1d8;margin-top:24px;padding-top:26px}.bmj-explain-grid,.bmj-included-grid{grid-template-columns:1fr;gap:44px}.bmj-process-grid{grid-template-columns:repeat(2,1fr);row-gap:40px}.bmj-step:nth-child(3){border-left:none}.bmj-step:nth-child(n+3){padding-top:36px;border-top:1px solid #dfe3db}.bmj-cta{grid-template-columns:72px 1fr}.bmj-actions{grid-column:1/-1;padding-left:98px}}
@media(max-width:640px){.bmj-c{width:min(100% - 20px,1180px)}.bmj-copy{padding:42px 24px 34px}.bmj-hero h1{font-size:clamp(40px,12vw,58px)}.bmj-btn{width:100%}.bmj-visual{min-height:340px;padding:30px 18px 38px}.bmj-dashboard{width:100%;padding:16px}.bmj-job{grid-template-columns:minmax(0,1fr) auto;gap:8px}.bmj-job-head{display:none}.bmj-job-value{display:none}.bmj-summary{gap:7px}.bmj-summary-card{padding:10px 8px}.bmj-summary-card strong{font-size:14px}.bmj-strip-grid,.bmj-process-grid{grid-template-columns:1fr}.bmj-mini{padding:20px 8px}.bmj-mini+.bmj-mini,.bmj-mini:nth-child(3){border-left:none;border-top:1px solid #dce1d8;margin-top:0}.bmj h2{font-size:36px}.bmj-step{padding:30px 12px}.bmj-step+.bmj-step,.bmj-step:nth-child(3){border-left:none;border-top:1px solid #dfe3db}.bmj-cta{grid-template-columns:1fr;padding:27px 22px}.bmj-actions{grid-column:auto;flex-direction:column;align-items:stretch;padding-left:0}.bmj-phone{text-align:center}.bmj-cta-icon {
margin: 0 auto;
}}

.bmt,.bmt *{box-sizing:border-box}
.bmt{
--navy:#102d4d;--green:#456f4d;--green2:#365c3e;
--soft:#e8eee5;--cream:#f7f5ef;--border:#dfe3da;
--text:#30363a;--muted:#65706b;
width:100%;color:var(--text);
font-family:Arial,Helvetica,sans-serif;text-align:left
}
.bmt a{text-decoration:none}
.bmt svg{display:block;max-width:100%}
.bmt-c{width:min(1180px,calc(100% - 36px));margin:0 auto}

.bmt-label{
display:flex;align-items:center;gap:12px;margin:0 0 14px;
color:var(--green);font-size:12px;font-weight:700;
letter-spacing:.16em;text-transform:uppercase
}
.bmt-label:after{content:"";width:34px;height:1px;background:var(--green)}

.bmt-btn{
display:inline-flex;align-items:center;justify-content:center;gap:9px;
width:fit-content;min-height:50px;padding:0 24px;
color:#fff!important;background:var(--green);
border:1px solid var(--green);border-radius:5px;
font-size:14px;font-weight:700;
box-shadow:0 10px 24px rgba(54,92,62,.16);
transition:transform .18s ease,background .18s ease,box-shadow .18s ease
}
.bmt-btn:hover{
background:var(--green2);transform:translateY(-2px);
box-shadow:0 14px 28px rgba(54,92,62,.23)
}

/* HERO */

.bmt-hero{
overflow:hidden;
background:linear-gradient(135deg,#fbfaf7,#f6f4ed);
border:1px solid var(--border);border-radius:18px
}
.bmt-hero-grid{
display:grid;
grid-template-columns:minmax(0,.92fr) minmax(440px,1.08fr);
min-height:520px
}
.bmt-copy{
display:flex;flex-direction:column;justify-content:center;
padding:62px 36px 62px 54px
}
.bmt-hero h1{
max-width: 520px;
margin: 0;

color: var(--navy);
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(35px, 4vw, 65px);
font-weight: 700;
letter-spacing: -0.035em;
line-height: 0.98;
text-align: left;
}
.bmt-line{width:42px;height:3px;margin:24px 0 22px;background:var(--green)}
.bmt-copy>p{
max-width:525px;margin:0 0 26px;
font-size:17px;line-height:1.7
}
.bmt-note{
display:flex;align-items:flex-start;gap:9px;margin-top:18px;
color:var(--muted);font-size:13px;line-height:1.5
}
.bmt-note svg{
width:17px;height:17px;flex:0 0 auto;margin-top:1px;color:var(--green)
}

/* HERO TAX ORGANIZER */

.bmt-visual{
display:flex;align-items:center;justify-content:center;
min-height:520px;padding:46px 40px
}
.bmt-tax-card{
width:min(94%,580px);padding:22px;background:#fff;
border:1px solid rgba(16,45,77,.12);border-radius:16px;
box-shadow:0 26px 65px rgba(16,45,77,.18);
transform:rotate(-.7deg)
}
.bmt-tax-top{
display:flex;align-items:center;justify-content:space-between;
gap:18px;padding-bottom:16px;border-bottom:1px solid #e7e9e4
}
.bmt-eyebrow{
margin:0 0 4px;color:var(--muted);font-size:10px;
font-weight:700;letter-spacing:.12em;text-transform:uppercase
}
.bmt-tax-title{
display:block;color:var(--navy);
font:700 21px/1.2 Georgia,"Times New Roman",serif
}
.bmt-status{
flex:0 0 auto;align-self:center;
padding:6px 12px;color:var(--green2);background:var(--soft);
border-radius:999px;font-size:10px;font-weight:700;line-height:1
}
.bmt-organizer{display:grid;gap:10px;margin-top:16px}
.bmt-organizer-row{
display:grid;grid-template-columns:36px 1fr auto;
gap:12px;align-items:center;padding:12px 13px;
background:#f8f9f6;border:1px solid #e6e8e3;border-radius:9px
}
.bmt-organizer-icon{
display:flex;align-items:center;justify-content:center;
width:34px;height:34px;color:var(--green);
background:var(--soft);border-radius:50%
}
.bmt-organizer-icon svg{
width:18px;height:18px;fill:none;stroke:currentColor;
stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round
}
.bmt-organizer-row strong{
display:block;margin-bottom:3px;color:var(--navy);
font-size:13px;line-height:1.25
}
.bmt-organizer-row span{color:var(--muted);font-size:10px;line-height:1.3}
.bmt-ready{
color:var(--green2);font-size:11px;font-weight:700
}
.bmt-tax-summary{
display:grid;grid-template-columns:repeat(3,1fr);
gap:10px;margin-top:14px
}
.bmt-summary-card{
padding:12px;background:#f5f6f2;
border:1px solid #e3e6df;border-radius:9px
}
.bmt-summary-card span{
display:block;margin-bottom:4px;color:var(--muted);
font-size:9px;font-weight:700;text-transform:uppercase
}
.bmt-summary-card strong{
display:block;color:var(--navy);font-size:16px
}
.bmt-summary-card small{
display:block;margin-top:3px;color:var(--green);font-size:9px;font-weight:700
}

/* BENEFITS */

.bmt-strip{
margin-top:26px;padding:26px 16px;
background:linear-gradient(120deg,#eef2ea,#faf9f5 48%,#eef2ea);
border:1px solid var(--border);border-radius:14px
}
.bmt-strip-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.bmt-mini{padding:8px 26px;text-align:center}
.bmt-mini+.bmt-mini{border-left:1px solid #dce1d8}
.bmt-mini-icon{
display:flex;align-items:center;justify-content:center;
width:58px;height:58px;margin:0 auto 14px;
color:var(--green);background:#fff;
border:1px solid #e1e5de;border-radius:50%
}
.bmt-mini-icon svg{
width:29px;height:29px;fill:none;stroke:currentColor;
stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round
}
.bmt-mini h3{
margin:0 0 7px;color:var(--green2);
font:700 18px/1.25 Georgia,serif
}
.bmt-mini p{margin:0;font-size:13px;line-height:1.6}

/* APPROACH */

.bmt-approach{padding:76px 0 70px}
.bmt-approach-grid{
display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);
gap:70px;align-items:start
}
.bmt h2{
margin:0;color:var(--navy);
font:700 clamp(34px,4vw,50px)/1.08 Georgia,serif;
letter-spacing:-.025em
}
.bmt-approach-copy>p{
margin:20px 0 24px;font-size:16px;line-height:1.72
}
.bmt-callout{
padding:20px;background:linear-gradient(135deg,#f1f3ed,#e9ede4);
border:1px solid var(--border);border-radius:11px
}
.bmt-callout h3{
margin:0 0 7px;color:var(--green2);font:700 18px Georgia,serif
}
.bmt-callout p{margin:0;font-size:13px;line-height:1.62}
.bmt-flow{display:flex;flex-direction:column;gap:18px;padding-top:4px}
.bmt-flow-item{
display:grid;grid-template-columns:46px 1fr;gap:15px;align-items:start
}
.bmt-flow-icon{
display:flex;align-items:center;justify-content:center;
width:44px;height:44px;color:var(--green);
background:var(--soft);border-radius:10px
}
.bmt-flow-icon svg{
width:24px;height:24px;fill:none;stroke:currentColor;
stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round
}
.bmt-flow-item h3{
margin:0 0 4px;color:var(--text);font:700 18px/1.3 Georgia,serif
}
.bmt-flow-item p{margin:0;color:var(--muted);font-size:14px;line-height:1.55}

/* INCLUDED */

.bmt-included{
padding:68px 0 70px;
background:linear-gradient(180deg,rgba(247,245,239,.76),rgba(255,255,255,.92));
border-top:1px solid var(--border);border-bottom:1px solid var(--border)
}
.bmt-included-grid{
display:grid;grid-template-columns:minmax(0,.78fr) minmax(0,1.22fr);
gap:72px
}
.bmt-included-copy>p{
margin:20px 0 24px;font-size:16px;line-height:1.72
}
.bmt-note-box{
padding:20px;background:linear-gradient(135deg,#f1f3ed,#e9ede4);
border:1px solid var(--border);border-radius:11px
}
.bmt-note-box h3{
margin:0 0 7px;color:var(--green2);font:700 18px Georgia,serif
}
.bmt-note-box p{margin:0;font-size:13px;line-height:1.62}
.bmt-included-list{display:flex;flex-direction:column;gap:23px}
.bmt-item{display:grid;grid-template-columns:28px 1fr;gap:14px}
.bmt-circle{
display:flex;align-items:center;justify-content:center;
width:22px;height:22px;color:var(--green);
border:1.5px solid var(--green);border-radius:50%;
font-size:12px;font-weight:700
}
.bmt-item h3{margin:0 0 4px;font:700 18px/1.3 Georgia,serif}
.bmt-item p{margin:0;color:var(--muted);font-size:14px;line-height:1.55}

/* PROCESS */

.bmt-process{padding:66px 0 68px}
.bmt-process-head{text-align:center;margin-bottom:42px}
.bmt-process-head .bmt-label{justify-content:center}
.bmt-process-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.bmt-step{padding:0 27px;text-align:center}
.bmt-step+.bmt-step{border-left:1px solid #dfe3db}
.bmt-num{
display:flex;align-items:center;justify-content:center;
width:34px;height:34px;margin:0 auto 18px;
color:#fff;background:var(--green);border-radius:50%;
font-size:13px;font-weight:700
}
.bmt-step-icon{
display:flex;align-items:center;justify-content:center;
height:48px;margin-bottom:15px;color:var(--green)
}
.bmt-step-icon svg{
width:42px;height:42px;fill:none;stroke:currentColor;
stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round
}
.bmt-step h3{
margin:0 0 8px;color:var(--navy);font:700 19px/1.3 Georgia,serif
}
.bmt-step p{margin:0;font-size:13px;line-height:1.62}

/* CTA */

.bmt-bottom{padding:42px 0 12px}
.bmt-cta{
display:grid;grid-template-columns:80px 1fr auto;
gap:26px;align-items:center;padding:30px 34px;
background:linear-gradient(135deg,#edf1e9,#f7f6f0 68%);
border:1px solid var(--border);border-radius:15px
}
.bmt-cta-icon{
display:flex;align-items:center;justify-content:center;
width:72px;height:72px;color:var(--green);
background:rgba(255,255,255,.75);border-radius:50%
}
.bmt-cta-icon svg{
width:36px;height:36px;fill:none;stroke:currentColor;
stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round
}
.bmt-cta h2{font-size:clamp(27px,3vw,38px)}
.bmt-cta p{margin:7px 0 0;font-size:14px;line-height:1.55}
.bmt-actions{display:flex;align-items:center;gap:22px}
.bmt-phone{
color:var(--navy)!important;font-size:14px;font-weight:700;white-space:nowrap
}

/* TABLET */

@media(max-width:980px){
.bmt-hero-grid{grid-template-columns:1fr}
.bmt-copy{padding:58px 46px 42px}
.bmt-visual{min-height:430px}
.bmt-strip-grid{grid-template-columns:repeat(2,1fr)}
.bmt-mini:nth-child(3){border-left:none}
.bmt-mini:nth-child(n+3){
border-top:1px solid #dce1d8;margin-top:24px;padding-top:26px
}
.bmt-approach-grid,.bmt-included-grid{grid-template-columns:1fr;gap:44px}
.bmt-process-grid{grid-template-columns:repeat(2,1fr);row-gap:40px}
.bmt-step:nth-child(3){border-left:none}
.bmt-step:nth-child(n+3){padding-top:36px;border-top:1px solid #dfe3db}
.bmt-cta{grid-template-columns:72px 1fr}
.bmt-actions{grid-column:1/-1;padding-left:98px}
}

/* MOBILE */

@media(max-width:640px){
.bmt-c{width:min(100% - 20px,1180px)}
.bmt-copy{padding:42px 24px 34px}
.bmt-hero h1{font-size:clamp(42px,13vw,60px)}
.bmt-btn{width:100%}
.bmt-visual{min-height:340px;padding:30px 18px 38px}
.bmt-tax-card{width:100%;padding:16px}
.bmt-tax-summary{gap:7px}
.bmt-summary-card{padding:10px 8px}
.bmt-summary-card strong{font-size:14px}
.bmt-strip-grid,.bmt-process-grid{grid-template-columns:1fr}
.bmt-mini{padding:20px 8px}
.bmt-mini+.bmt-mini,.bmt-mini:nth-child(3){
border-left:none;border-top:1px solid #dce1d8;margin-top:0
}
.bmt h2{font-size:36px}
.bmt-step{padding:30px 12px}
.bmt-step+.bmt-step,.bmt-step:nth-child(3){
border-left:none;border-top:1px solid #dfe3db
}
.bmt-cta{grid-template-columns:1fr;padding:27px 22px}
.bmt-actions{
grid-column:auto;flex-direction:column;align-items:stretch;padding-left:0
}
.bmt-phone{text-align:center}
.bmt-cta-icon {
margin: 0 auto;
}
}

:root {
--bg: #f6f8f5;
--card: #ffffff;
--text: #203027;
--muted: #66736b;
--primary: #2f5d45;
--primary-dark: #244936;
--accent: #d7e6dc;
--border: #dfe7e1;
--shadow: 0 14px 35px rgba(31, 52, 41, 0.09);
--radius: 20px;
}

* {
box-sizing: border-box;
}

body {
margin: 0;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
"Segoe UI", sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.6;
}

a {
color: inherit;
}

.pricing-section {
padding: 72px 20px;
}

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

.eyebrow {
margin: 0 0 10px;
color: var(--primary);
font-size: 0.82rem;
font-weight: 800;
letter-spacing: 0.12em;
text-transform: uppercase;
text-align: center;
}

h1 {
max-width: 760px;
margin: 0 auto;
font-size: clamp(2.2rem, 5vw, 4.4rem);
line-height: 1.06;
letter-spacing: -0.04em;
text-align: center;
}

.intro {
max-width: 720px;
margin: 22px auto 0;
color: var(--muted);
font-size: 1.08rem;
text-align: center;
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 24px;
margin-top: 48px;
}

.pricing-card {
position: relative;
display: flex;
flex-direction: column;
min-height: 100%;
padding: 34px;
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: var(--shadow);
}

.pricing-card.featured {
border: 2px solid var(--primary);
}

.badge {
position: absolute;
top: -14px;
right: 24px;
padding: 7px 13px;
background: var(--primary);
color: white;
border-radius: 999px;
font-size: 0.77rem;
font-weight: 800;
letter-spacing: 0.04em;
text-transform: uppercase;
}

.package-name {
margin: 0;
font-size: 1.55rem;
letter-spacing: -0.02em;
}

.price {
display: flex;
justify-content: center;
align-items: baseline;
gap: 5px;
width: 100%;
margin: 18px 0 4px;
text-align: center;
}

.price strong {
font-size: 2.65rem;
line-height: 1;
letter-spacing: -0.05em;
}

.price span {
color: var(--muted);
font-weight: 700;
}

.setup-fee {
margin: 0 0 20px;
color: var(--primary);
font-size: 0.95rem;
font-weight: 700;
}

.description {
margin: 0 0 22px;
color: var(--muted);
}

.feature-list {
padding: 0;
margin: 0 0 28px;
list-style: none;
}

.feature-list li {
position: relative;
padding: 10px 0 10px 30px;
border-bottom: 1px solid #edf1ee;
}

.feature-list li:last-child {
border-bottom: 0;
}

.feature-list li::before {
content: "✓";
position: absolute;
left: 0;
top: 10px;
color: var(--primary);
font-weight: 900;
}

.button {
display: inline-flex;
justify-content: center;
align-items: center;
min-height: 50px;
margin-top: auto;
padding: 13px 20px;
border: 2px solid var(--primary);
border-radius: 12px;
background: var(--primary);
color: white;
font-weight: 800;
text-decoration: none;
transition: 0.2s ease;
}

.button:hover {
background: var(--primary-dark);
border-color: var(--primary-dark);
transform: translateY(-1px);
}

.section-card {
margin-top: 30px;
padding: 34px;
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius);
box-shadow: var(--shadow);
}

.section-card h2 {
margin: 0 0 8px;
font-size: 1.65rem;
letter-spacing: -0.025em;
}

.section-card > p {
margin: 0;
color: var(--muted);
}

.addons-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
margin-top: 24px;
}

.service-note {
margin-top: 20px !important;
padding: 18px 20px;
background: #f8faf8;
border: 1px solid var(--border);
border-radius: 13px;
color: var(--muted) !important;
font-size: 0.95rem;
}

.addon {
display: flex;
justify-content: space-between;
gap: 18px;
padding: 17px 18px;
background: #f8faf8;
border: 1px solid var(--border);
border-radius: 13px;
}

.addon span:first-child {
font-weight: 700;
}

.addon span:last-child {
color: var(--primary);
font-weight: 800;
text-align: right;
white-space: nowrap;
}

.cleanup {
display: grid;
grid-template-columns: 1fr auto;
align-items: center;
gap: 28px;
}

.cleanup .button {
min-width: 220px;
margin-top: 0;
}

.pricing-note {
margin-top: 30px;
padding: 24px 26px;
background: var(--accent);
border-radius: 16px;
}

.pricing-note h2 {
margin: 0 0 8px;
font-size: 1.2rem;
}

.pricing-note p {
margin: 0;
color: #425449;
}

.small-print {
margin: 24px auto 0;
max-width: 850px;
color: var(--muted);
font-size: 0.9rem;
text-align: center;
}

@media (max-width: 760px) {
.pricing-section {
padding: 52px 16px;
}

.pricing-grid,
.addons-grid,
.cleanup {
grid-template-columns: 1fr;
}

.pricing-card,
.section-card {
padding: 26px 22px;
}

.cleanup .button {
width: 100%;
min-width: 0;
}

.pricing-section .addons-grid {
grid-template-columns: minmax(0, 1fr);
}

.pricing-section .addon {
min-width: 0;
flex-direction: column;
align-items: center;
gap: 6px;
text-align: center;
}

.pricing-section .addon span:last-child {
white-space: normal;
text-align: center;
}
}

.gst-page {
--gst-bg: #f6f8f5;
--gst-card: #ffffff;
--gst-text: #203027;
--gst-muted: #66736b;
--gst-primary: #2f5d45;
--gst-primary-dark: #244936;
--gst-accent: #d7e6dc;
--gst-border: #dfe7e1;
--gst-shadow: 0 14px 35px rgba(31, 52, 41, 0.09);
--gst-radius: 20px;

width: 100%;
padding: 72px 20px;
background: var(--gst-bg);
color: var(--gst-text);
font-family: Inter, ui-sans-serif, system-ui, -apple-system,
BlinkMacSystemFont, "Segoe UI", sans-serif;
line-height: 1.65;
}

.gst-page,
.gst-page *,
.gst-page *::before,
.gst-page *::after {
box-sizing: border-box;
}

.gst-container {
width: min(1120px, 100%);
margin: 0 auto;
}

.gst-eyebrow {
margin: 0 0 10px;
color: var(--gst-primary);
font-size: 0.82rem;
font-weight: 800;
letter-spacing: 0.12em;
text-transform: uppercase;
text-align: center;
}

.gst-h1 {
max-width: 800px;
margin: 0 auto;
color: #102d4d;
font-family: Georgia, "Times New Roman", serif;
font-size: clamp(2.25rem, 5vw, 4.5rem);
line-height: 1.06;
letter-spacing: -0.04em;
text-align: center;
}

.gst-intro {
max-width: 760px;
margin: 22px auto 0;
color: var(--gst-muted);
font-size: 1.08rem;
text-align: center;
}

.gst-hero-actions {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 14px;
margin-top: 30px;
}

.gst-button {
display: inline-flex;
justify-content: center;
align-items: center;
min-height: 50px;
padding: 13px 22px;
border: 2px solid var(--gst-primary);
border-radius: 12px;
background: var(--gst-primary);
color: white;
font-weight: 800;
text-decoration: none;
transition: 0.2s ease;
}

.gst-button:hover {
background: var(--gst-primary-dark);
border-color: var(--gst-primary-dark);
transform: translateY(-1px);
}

.gst-button.gst-secondary {
background: transparent;
color: var(--gst-primary);
}

.gst-button.gst-secondary:hover {
background: var(--gst-accent);
color: var(--gst-primary-dark);
}

.gst-section-title {
max-width: 760px;
margin: 72px auto 10px;
font-size: clamp(1.85rem, 3vw, 2.7rem);
line-height: 1.15;
letter-spacing: -0.03em;
text-align: center;
}

.gst-section-intro {
max-width: 720px;
margin: 0 auto;
color: var(--gst-muted);
text-align: center;
}

.gst-steps {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 24px;
margin-top: 38px;
}

.gst-step {
position: relative;
padding: 34px;
background: var(--gst-card);
border: 1px solid var(--gst-border);
border-radius: var(--gst-radius);
box-shadow: var(--gst-shadow);
}

.gst-step-number {
display: inline-flex;
justify-content: center;
align-items: center;
width: 44px;
height: 44px;
margin-bottom: 18px;
border-radius: 999px;
background: var(--gst-primary);
color: white;
font-weight: 900;
}

.gst-step h3 {
margin: 0 0 10px;
font-size: 1.4rem;
letter-spacing: -0.02em;
}

.gst-step p {
margin: 0 0 16px;
color: var(--gst-muted);
}

.gst-check-list {
padding: 0;
margin: 0;
list-style: none;
}

.gst-check-list li {
position: relative;
padding: 8px 0 8px 28px;
}

.gst-check-list li::before {
content: "✓";
position: absolute;
left: 0;
top: 8px;
color: var(--gst-primary);
font-weight: 900;
}

.gst-pricing-box {
margin-top: 72px;
padding: 38px;
background: var(--gst-card);
border: 1px solid var(--gst-border);
border-radius: var(--gst-radius);
box-shadow: var(--gst-shadow);
}

.gst-pricing-box h2 {
margin: 0;
font-size: clamp(1.8rem, 3vw, 2.5rem);
letter-spacing: -0.03em;
}

.gst-pricing-box > p {
margin: 10px 0 0;
color: var(--gst-muted);
}

.gst-price-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 18px;
margin-top: 28px;
}

.gst-price-card {
padding: 24px;
background: #f8faf8;
border: 1px solid var(--gst-border);
border-radius: 15px;
text-align: center;
}

.gst-price-card h3 {
margin: 0 0 6px;
font-size: 1.25rem;
}

.gst-price {
display: block;
width: 100%;
margin: 0;
color: var(--gst-primary);
font-size: 1.65rem;
font-weight: 900;
letter-spacing: -0.03em;
text-align: center;
}

.gst-price-card small {
display: block;
margin-top: 4px;
color: var(--gst-muted);
}

.gst-pricing-note {
margin-top: 22px;
padding: 20px;
background: var(--gst-accent);
border-radius: 14px;
color: #425449;
}

.gst-info-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 24px;
margin-top: 72px;
}

.gst-info-card {
padding: 34px;
background: var(--gst-card);
border: 1px solid var(--gst-border);
border-radius: var(--gst-radius);
box-shadow: var(--gst-shadow);
}

.gst-info-card h2 {
margin: 0 0 12px;
font-size: 1.55rem;
letter-spacing: -0.02em;
}

.gst-info-card p {
margin: 0 0 14px;
color: var(--gst-muted);
}

.gst-cta {
margin-top: 72px;
padding: 44px 34px;
background: var(--gst-primary);
color: white;
border-radius: var(--gst-radius);
text-align: center;
box-shadow: var(--gst-shadow);
}

.gst-cta h2 {
margin: 0;
font-size: clamp(1.9rem, 4vw, 3rem);
letter-spacing: -0.03em;
}

.gst-cta p {
max-width: 680px;
margin: 14px auto 0;
color: rgba(255, 255, 255, 0.82);
}

.gst-cta-actions {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 14px;
margin-top: 26px;
}

.gst-cta .gst-button {
background: white;
border-color: white;
color: var(--gst-primary);
}

.gst-cta .gst-button:hover {
background: #f2f5f2;
border-color: #f2f5f2;
}

.gst-cta .gst-button.gst-secondary {
background: transparent;
border-color: rgba(255, 255, 255, 0.7);
color: white;
}

.gst-cta .gst-button.gst-secondary:hover {
background: rgba(255, 255, 255, 0.1);
border-color: white;
color: white;
}

.gst-small-print {
max-width: 850px;
margin: 24px auto 0;
color: var(--gst-muted);
font-size: 0.9rem;
text-align: center;
}

@media (max-width: 760px) {
.gst-page {
padding: 52px 16px;
}

.gst-steps,
.gst-price-grid,
.gst-info-grid {
grid-template-columns: 1fr;
}

.gst-step,
.gst-pricing-box,
.gst-info-card,
.gst-cta {
padding: 26px 22px;
}

.gst-hero-actions,
.gst-cta-actions {
flex-direction: column;
}

.gst-button {
width: 100%;
}
}

.wcu-root {
--wcu-bg: #F7F5EF;
--wcu-card: #ffffff;
--wcu-navy: #071b3d;
--wcu-green: #3f744b;
--wcu-text: #171717;
--wcu-border: rgba(7, 27, 61, 0.08);
--wcu-radius: 18px;

width: 100%;
background: transparent;
color: var(--wcu-text);
font-family: Arial, Helvetica, sans-serif;
}

.wcu-root,
.wcu-root *,
.wcu-root *::before,
.wcu-root *::after {
box-sizing: border-box;
}

.wcu-bmf {
width: min(94%, 1200px);
margin: auto;
padding: 40px 20px 70px;
}

.wcu-section {
margin-bottom: 70px;
}

.wcu-h1,
.wcu-h2 {
margin-left: 0;
margin-right: 0;
color: var(--wcu-navy);
font-weight: 800;
line-height: 1.15;
text-align: center;
}

.wcu-h1 {
margin-top: 0;
margin-bottom: 0;
font-size: clamp(36px, 5vw, 54px);
text-align: center;
}

.wcu-hero .wcu-h1 {
width: 100% !important;
max-width: none !important;
margin-left: auto !important;
margin-right: auto !important;
padding-left: 0 !important;
padding-right: 0 !important;
text-align: center !important;
}

.wcu-h2 {
margin-top: 15px;
margin-bottom: 18px;
font-size: clamp(28px, 3vw, 42px);
}

.wcu-rule {
width: 60px;
height: 6px;
margin: 18px auto 36px;
border-radius: 999px;
background: var(--wcu-green);
}

.wcu-hero {
max-width: 850px;
margin-left: auto;
margin-right: auto;
text-align: center;
}

.wcu-hero p {
margin-top: 15px;
margin-bottom: 25px;
font-size: 20px;
line-height: 1.7;
}

.wcu-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 22px;
}

.wcu-card {
padding: 28px;
border: 1px solid var(--wcu-border);
border-radius: var(--wcu-radius);
background: var(--wcu-card);
}

.wcu-card h3 {
margin-top: 0;
margin-bottom: 15px;
color: var(--wcu-navy);
font-size: 22px;
}

.wcu-card p {
margin: 0;
line-height: 1.7;
}

/* COMPARISON */

.wcu-compare-table {
display: grid;
grid-template-columns: 1fr 1fr;
overflow: hidden;
border: 1px solid var(--wcu-border);
border-radius: 18px;
background: var(--wcu-card);
}

.wcu-compare-header {
padding: 22px;
color: #ffffff;
font-size: 24px;
font-weight: 800;
text-align: center;
}

.wcu-compare-left {
background: #6b7280;
}

.wcu-compare-right {
background: var(--wcu-green);
}

.wcu-compare-row {
display: contents;
}

.wcu-compare-cell {
padding: 24px;
border-top: 1px solid rgba(7, 27, 61, 0.08);
font-size: 17px;
line-height: 1.7;
}

.wcu-compare-cell:nth-child(odd) {
background: #fafafa;
}

.wcu-highlight {
background: #f8fcf8;
font-weight: 600;
}

/* PROBLEMS */

.wcu-problem-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 18px;
}

.wcu-problem {
padding: 24px;
border: 1px solid var(--wcu-border);
border-radius: 16px;
background: var(--wcu-card);
}

.wcu-problem ul {
margin: 0;
padding-left: 18px;
line-height: 1.8;
}

.wcu-problem li {
margin-bottom: 8px;
}

/* REVIEWS */

.wcu-review-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 20px;
}

.wcu-review {
padding: 26px;
border: 1px solid var(--wcu-border);
border-radius: 18px;
background: var(--wcu-card);
}

.wcu-stars {
margin-bottom: 12px;
color: #d4a017;
font-size: 22px;
}

.wcu-review p {
margin-top: 0;
margin-bottom: 18px;
font-style: italic;
line-height: 1.7;
}

.wcu-review strong {
display: block;
color: var(--wcu-green);
}

.wcu-review small {
display: block;
margin-top: 4px;
color: #666666;
}

/* CTA */

.wcu-cta {
padding: 55px 30px;
border: 1px solid var(--wcu-border);
border-radius: 22px;
background: var(--wcu-card);
text-align: center;
}

.wcu-cta p {
max-width: 700px;
margin: 0 auto 30px;
font-size: 18px;
line-height: 1.8;
}

.wcu-button {
display: inline-block;
padding: 16px 34px;
border-radius: 999px;
background: var(--wcu-green);
color: #ffffff;
font-weight: bold;
text-decoration: none;
transition: transform 0.2s ease;
}

.wcu-button:hover {
color: #ffffff;
transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 850px) {
.wcu-compare-table {
grid-template-columns: repeat(2, minmax(0, 1fr));
border-radius: 12px;
}

.wcu-compare-header {
padding: 16px 10px;
font-size: 16px;
line-height: 1.35;
}

.wcu-compare-cell {
min-width: 0;
padding: 16px 12px;
font-size: 15px;
font-weight: 400;
line-height: 1.5;
text-align: left;
overflow-wrap: break-word;
}

.wcu-compare-cell + .wcu-compare-cell {
border-left: 1px solid var(--wcu-border);
}
}

@media (max-width: 700px) {
.wcu-bmf {
width: 100%;
padding: 35px 16px 55px;
}

.wcu-section {
margin-bottom: 55px;
}

.wcu-hero p {
font-size: 17px;
}

.wcu-review-grid {
grid-template-columns: 1fr;
}

.wcu-cta {
padding: 42px 22px;
}

.wcu-button {
width: 100%;
}
}

.faq-root {
--faq-bg: #F7F5EF;
--faq-card: #ffffff;
--faq-navy: #071b3d;
--faq-green: #3f744b;
--faq-text: #171717;
--faq-border: rgba(7, 27, 61, 0.08);
--faq-radius: 18px;

width: 100%;
background: transparent;
color: var(--faq-text);
font-family: Arial, Helvetica, sans-serif;
}

.faq-root,
.faq-root *,
.faq-root *::before,
.faq-root *::after {
box-sizing: border-box;
}

.faq-wrap {
width: min(94%, 1000px);
margin: 0 auto;
padding: 40px 20px 70px;
}

.faq-heading {
width: 100%;
margin: 0 auto 50px;
text-align: center;
}

.faq-heading h1 {
display: block;
width: 100%;
margin: 0 auto;
padding: 0;
color: var(--faq-navy);
font-size: clamp(34px, 5vw, 52px);
font-weight: 800;
line-height: 1.15;
text-align: center;
}

.faq-heading p {
max-width: 760px;
margin: 18px auto 0;
font-size: 19px;
line-height: 1.7;
text-align: center;
}

.faq-rule {
width: 60px;
height: 6px;
margin: 20px auto 0;
border-radius: 999px;
background: var(--faq-green);
}

.faq-category {
margin-bottom: 55px;
}

.faq-category h2 {
margin: 0 0 24px;
color: var(--faq-navy);
font-size: 30px;
line-height: 1.2;
}

.faq-item {
margin-bottom: 16px;
overflow: hidden;
border: 1px solid var(--faq-border);
border-radius: 16px;
background: var(--faq-card);
transition: 0.2s;
}

.faq-question {
display: flex;
justify-content: space-between;
align-items: center;
padding: 22px 24px;
color: var(--faq-navy);
font-size: 20px;
font-weight: 700;
list-style: none;
cursor: pointer;
}

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

.faq-question::after {
content: "+";
margin-left: 20px;
color: var(--faq-green);
font-size: 28px;
font-weight: 400;
line-height: 1;
transition: 0.2s;
}

.faq-item[open] .faq-question::after {
content: "–";
}

.faq-answer {
padding: 0 24px 24px;
font-size: 17px;
line-height: 1.8;
}

.faq-answer ul {
margin: 12px 0 0;
padding-left: 22px;
}

.faq-answer li {
margin-bottom: 10px;
}

.faq-cta {
margin-top: 70px;
padding: 50px 35px;
border: 1px solid var(--faq-border);
border-radius: 20px;
background: var(--faq-card);
text-align: center;
}

.faq-cta h2 {
margin: 0 0 18px;
color: var(--faq-navy);
font-size: 34px;
line-height: 1.2;
text-align: center;
}

.faq-cta p {
max-width: 700px;
margin: 0 auto 30px;
font-size: 18px;
line-height: 1.8;
text-align: center;
}

.faq-button {
display: inline-block;
padding: 16px 34px;
border-radius: 999px;
background: var(--faq-green);
color: #ffffff;
font-weight: bold;
text-decoration: none;
transition: 0.2s;
}

.faq-button:hover {
color: #ffffff;
transform: translateY(-2px);
}

@media (max-width: 700px) {
.faq-wrap {
width: 100%;
padding: 35px 16px 55px;
}

.faq-question {
padding: 18px;
font-size: 18px;
}

.faq-answer {
padding: 0 18px 18px;
font-size: 16px;
}

.faq-category h2 {
font-size: 26px;
}

.faq-heading p {
font-size: 17px;
}

.faq-cta {
padding: 40px 24px;
}

.faq-button {
width: 100%;
}
}
