/* =====================================================================
   business-email-support.css
   Business Email Support in Trichy — Freshora Digital Technologies
   Scoped stylesheet — all classes prefixed with `bes-`.
   No body{}, *{}, or font-family rules used — inherits theme typography.
===================================================================== */

/* ---------- Layout Primitives ---------- */
.bes-container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.bes-section {
    padding: 64px 0;
}

.bes-section--white {
    background-color: #ffffff;
}

.bes-section--dark {
    background-color: #000000;
}

.bes-mt-24 {
    margin-top: 24px;
}

.bes-mt-40 {
    margin-top: 40px;
}

/* ---------- Breadcrumb ---------- */
.bes-breadcrumb {
    position: relative;
    padding: 60px 0 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bes-breadcrumb__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.bes-breadcrumb__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.bes-breadcrumb__title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.bes-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.bes-breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #cfd2da;
}

.bes-breadcrumb__item a {
    color: #cfd2da;
    text-decoration: none;
    transition: color 0.25s ease;
}

.bes-breadcrumb__item a:hover {
    color: #91d904;
}

.bes-breadcrumb__item.active {
    color: #ffffff;
    font-weight: 600;
}

/* ---------- Typography ---------- */
.bes-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    font-weight: 700;
    color: #91d904;
    margin-bottom: 12px;
}

.bes-eyebrow--light {
    color: #91d904;
}

.bes-h1 {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.2;
    font-weight: 800;
    color: #14161b;
    margin: 0 0 16px;
}

.bes-h2 {
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.25;
    font-weight: 700;
    color: #14161b;
    margin: 0 0 18px;
}

.bes-h2--light {
    color: #ffffff;
}

.bes-h3 {
    font-size: clamp(19px, 2.2vw, 24px);
    line-height: 1.3;
    font-weight: 700;
    color: #14161b;
    margin: 0 0 12px;
}

.bes-h3--light {
    color: #ffffff;
}

.bes-h4 {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: #14161b;
    margin: 0 0 8px;
}

.bes-h4--light {
    color: #ffffff;
}

.bes-paragraph {
    font-size: 16px;
    line-height: 1.75;
    color: #4b4f5a;
    text-align: justify;
    margin: 0 0 14px;
}

.bes-paragraph--light {
    color: #cfd2da;
}

.bes-strong {
    font-weight: 700;
}

/* ---------- Section Headings ---------- */
.bes-section-heading {
    margin-bottom: 36px;
}

.bes-section-heading--center {
    text-align: center;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.bes-section-heading--center .bes-paragraph {
    text-align: center;
}

/* ---------- Buttons ---------- */
.bes-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.bes-btn--primary {
    background-color: #91d904;
    color: #0e1207;
    box-shadow: 0 8px 20px rgba(145, 217, 4, 0.28);
}

.bes-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(145, 217, 4, 0.38);
}

.bes-btn--outline {
    background-color: transparent;
    color: #14161b;
    border-color: #14161b;
}

.bes-btn--outline:hover {
    background-color: #14161b;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ---------- Hero ---------- */
.bes-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.bes-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.bes-hero__tagline {
    font-size: 18px;
    font-weight: 600;
    color: #3b3f47;
    text-align: justify;
    margin-bottom: 20px;
}

.bes-hero__image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(20, 22, 27, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bes-hero__image img:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(20, 22, 27, 0.18);
}

/* ---------- Tags / Chips ---------- */
.bes-tag-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.bes-tag-chip {
    display: inline-block;
    background-color: #eef8dc;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #3b3f47;
}

/* ---------- Bullet Lists ---------- */
.bes-bullet-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bes-bullet-list li {
    position: relative;
    padding-left: 26px;
    font-size: 15.5px;
    line-height: 1.65;
    color: #4b4f5a;
    text-align: justify;
}

.bes-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #91d904;
}

.bes-bullet-list--light li {
    color: #cfd2da;
}

.bes-bullet-list--two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}

.bes-bullet-list--two-col li {
    padding-left: 26px;
}

/* ---------- Numbered List ---------- */
.bes-numbered-list {
    margin: 0 0 16px;
    padding-left: 24px;
}

.bes-numbered-list li {
    font-size: 15.5px;
    line-height: 1.75;
    color: #4b4f5a;
    text-align: justify;
    margin-bottom: 8px;
}

/* ---------- Email Examples ---------- */
.bes-email-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.bes-email-example {
    background-color: #1a1a1a;
    color: #91d904;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid #333;
}

/* ---------- Compare Box ---------- */
.bes-compare-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0 24px;
    padding: 20px;
    background: #c5ffbc;
    border-radius: 16px;
}

.bes-compare-box--inline {
    background: transparent;
    padding: 0;
    gap: 12px;
}

.bes-compare-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    min-width: 200px;
}

.bes-compare-item--bad {
    border-left: 4px solid #e74c3c;
}

.bes-compare-item--good {
    border-left: 4px solid #91d904;
}

.bes-compare-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 4px;
}

.bes-compare-email {
    font-size: 16px;
    font-weight: 700;
    color: #14161b;
}

.bes-compare-arrow {
    font-size: 20px;
    font-weight: 700;
    color: #91d904;
}

/* ---------- Benefit Grid ---------- */
.bes-benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.bes-benefit-card {
    background: #c5ffbc;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #ecedf1;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bes-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

.bes-benefit-icon {
    font-size: 24px;
    color: #91d904;
    display: block;
    margin-bottom: 8px;
}

.bes-benefit-card .bes-h4 {
    margin-bottom: 6px;
}

/* ---------- Service Grid ---------- */
.bes-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

.bes-service-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1a;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: transform 0.2s, border-color 0.2s;
}

.bes-service-card:hover {
    transform: translateY(-3px);
    border-color: #91d904;
}

.bes-service-icon {
    color: #91d904;
    font-weight: 700;
    font-size: 16px;
}

.bes-service-name {
    font-size: 14px;
    font-weight: 600;
    color: #cfd2da;
}

/* ---------- Support Grid ---------- */
.bes-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.bes-support-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #c5ffbc;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #ecedf1;
}

.bes-support-icon {
    font-size: 18px;
    color: #e74c3c;
    font-weight: 700;
}

.bes-support-card .bes-paragraph {
    margin: 0;
}

/* ---------- Timeline ---------- */
.bes-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 8px;
}

.bes-timeline::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, #91d904 0%, rgba(145, 217, 4, 0.1) 100%);
}

.bes-timeline__item {
    position: relative;
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.bes-timeline__marker {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background-color: #14161b;
    color: #91d904;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(20, 22, 27, 0.18);
}

.bes-timeline__body {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 20px 24px;
    flex: 1;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bes-timeline__body:hover {
    box-shadow: 0 14px 32px rgba(0,0,0,0.3);
    transform: translateY(-3px);
}

.bes-timeline__body .bes-h4 {
    margin-bottom: 6px;
}

/* ---------- Configuration Grid ---------- */
.bes-config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.bes-config-item {
    background: #c5ffbc;
    padding: 10px 16px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #14161b;
    border: 1px solid #ecedf1;
    transition: background 0.2s, transform 0.2s;
}

.bes-config-item:hover {
    background: #eef8dc;
    transform: translateY(-2px);
}

/* ---------- Tech Grid (MX, SPF, etc.) ---------- */
.bes-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.bes-tech-card {
    background: #1a1a1a;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #333;
    transition: transform 0.25s, border-color 0.25s;
}

.bes-tech-card:hover {
    transform: translateY(-4px);
    border-color: #91d904;
}

.bes-tech-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 12px 0;
    font-weight: 600;
    color: #cfd2da;
    font-size: 14px;
}

.bes-tech-flow span {
    background: #2a2a2a;
    padding: 4px 12px;
    border-radius: 6px;
}

.bes-auth-box {
    margin-top: 32px;
    padding: 24px;
    background: #1a1a1a;
    border-radius: 16px;
    border-left: 6px solid #91d904;
    text-align: center;
}

/* ---------- Support Triggers ---------- */
.bes-support-triggers {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bes-trigger-item {
    background: #1a1a1a;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: #cfd2da;
    border: 1px solid #333;
}

/* ---------- Webmail Devices ---------- */
.bes-webmail-devices,
.bes-setup-steps,
.bes-webmail-benefits,
.bes-shared-grid,
.bes-security-grid,
.bes-deliverability-grid,
.bes-device-grid,
.bes-industry-grid,
.bes-connect-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bes-device-chip,
.bes-step-chip,
.bes-benefit-chip,
.bes-shared-item,
.bes-security-item,
.bes-deliverability-item,
.bes-device-card,
.bes-industry-chip,
.bes-connect-chip {
    background: #c5ffbc;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: #14161b;
    border: 1px solid #ecedf1;
}

.bes-device-chip:hover,
.bes-step-chip:hover,
.bes-benefit-chip:hover,
.bes-shared-item:hover,
.bes-security-item:hover,
.bes-deliverability-item:hover,
.bes-device-card:hover,
.bes-industry-chip:hover,
.bes-connect-chip:hover {
    background: #eef8dc;
    transform: translateY(-2px);
}

/* ---------- Split Layout ---------- */
.bes-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 28px;
}

.bes-split__image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}

.bes-split__image img:hover {
    transform: scale(1.02);
}

/* ---------- Protocol Grid ---------- */
.bes-protocol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bes-protocol-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #333;
    transition: transform 0.25s;
}

.bes-protocol-card:hover {
    transform: translateY(-4px);
    border-color: #91d904;
}

/* ---------- Migration Flow ---------- */
.bes-migration-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 20px;
    margin: 20px 0;
    padding: 16px;
    background: #c5ffbc;
    border-radius: 16px;
    font-weight: 600;
}

.bes-arrow {
    font-size: 24px;
    color: #91d904;
}

/* ---------- Department Grid ---------- */
.bes-dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.bes-dept-card {
    background: #1a1a1a;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
}

.bes-dept-name {
    display: block;
    font-weight: 700;
    color: #91d904;
    font-size: 15px;
}

.bes-dept-email {
    display: block;
    font-size: 14px;
    color: #cfd2da;
    margin-top: 4px;
}

/* ---------- Forward Flow ---------- */
.bes-forward-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 20px;
    margin: 16px 0;
    padding: 12px 20px;
    background: #1a1a1a;
    border-radius: 12px;
    font-weight: 600;
    color: #cfd2da;
}

.bes-forward-flow span {
    background: #2a2a2a;
    padding: 4px 14px;
    border-radius: 6px;
}

/* ---------- Troubleshoot Grid ---------- */
.bes-troubleshoot-grid {
    display: grid;
    gap: 20px;
}

.bes-troubleshoot-card {
    background: #1a1a1a;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #333;
}

.bes-troubleshoot-card .bes-h4 {
    margin-bottom: 6px;
}

/* ---------- Domain Flow ---------- */
.bes-domain-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 16px;
    margin: 20px 0;
    padding: 16px;
    background: #c5ffbc;
    border-radius: 16px;
    font-weight: 600;
}

.bes-domain-flow span {
    background: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* ---------- New Company Grid ---------- */
.bes-newco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(203px, 1fr));
    gap: 16px;
}

.bes-newco-card {
    background: #1a1a1a;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #333;
    text-align: center;
}

/* ---------- Integration Example ---------- */
.bes-integration-example {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin: 16px 0;
    padding: 16px;
    background: #c5ffbc;
    border-radius: 16px;
}

.bes-integration-example > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bes-integration-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #888;
}

.bes-integration-value {
    font-weight: 700;
    font-size: 15px;
    color: #14161b;
}

/* ---------- Signature Box ---------- */
.bes-signature-box {
    background: #c5ffbc;
    padding: 20px 24px;
    border-radius: 16px;
    border-left: 6px solid #91d904;
    margin: 16px 0;
}

.bes-signature-box .bes-paragraph {
    margin-bottom: 4px;
}

/* ---------- Process Flow ---------- */
.bes-process-flow {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bes-process-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #c5ffbc;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid #ecedf1;
    transition: transform 0.2s;
}

.bes-process-step:hover {
    transform: translateX(6px);
    background: #eef8dc;
}

.bes-process-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #91d904;
    color: #0e1207;
    font-weight: 800;
    font-size: 16px;
}

.bes-process-content {
    flex: 1;
}

.bes-process-content .bes-h4 {
    margin-bottom: 4px;
}

.bes-process-content .bes-paragraph {
    margin-bottom: 0;
}

/* ---------- FAQ ---------- */
.bes-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
}

.bes-faq-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 14px;
    padding: 6px 22px;
    transition: box-shadow 0.25s ease;
}

.bes-faq-item[open] {
    box-shadow: 0 12px 28px rgba(0,0,0,0.5);
}

.bes-faq-item__question {
    padding: 16px 0;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.bes-faq-item__question::after {
    content: "+";
    font-size: 22px;
    color: #91d904;
    margin-left: 12px;
    transition: transform 0.25s ease;
}

.bes-faq-item[open] .bes-faq-item__question::after {
    transform: rotate(45deg);
}

.bes-faq-item__answer {
    padding: 0 0 18px;
}

.bes-faq-item__answer .bes-paragraph {
    margin-bottom: 0;
}

/* ---------- CTA Block ---------- */
.bes-cta-block__inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.bes-cta-block__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.bes-service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.bes-service-tags .bes-tag-chip {
    background: #eef8dc;
}

/* ---------- Shared / Department extras ---------- */
.bes-shared-item {
    background: #1a1a1a;
    color: #cfd2da;
    border-color: #333;
}

.bes-shared-item:hover {
    background: #2a2a2a;
    border-color: #91d904;
}

/* ---------- Utility for dark section overrides ---------- */
.bes-section--dark .bes-compare-box {
    background: #1a1a1a;
}

.bes-section--dark .bes-compare-item {
    background: #2a2a2a;
    border-color: #444;
}

.bes-section--dark .bes-compare-email {
    color: #ffffff;
}

.bes-section--dark .bes-benefit-card {
    background: #1a1a1a;
    border-color: #333;
}

.bes-section--dark .bes-benefit-card .bes-paragraph {
    color: #cfd2da;
}

.bes-section--dark .bes-support-card {
    background: #1a1a1a;
    border-color: #333;
}

.bes-section--dark .bes-support-card .bes-paragraph {
    color: #cfd2da;
}

.bes-section--dark .bes-config-item {
    background: #1a1a1a;
    color: #cfd2da;
    border-color: #333;
}

.bes-section--dark .bes-config-item:hover {
    background: #2a2a2a;
}

.bes-section--dark .bes-device-chip,
.bes-section--dark .bes-step-chip,
.bes-section--dark .bes-benefit-chip,
.bes-section--dark .bes-security-item,
.bes-section--dark .bes-deliverability-item,
.bes-section--dark .bes-device-card,
.bes-section--dark .bes-industry-chip,
.bes-section--dark .bes-connect-chip {
    background: #1a1a1a;
    color: #cfd2da;
    border-color: #333;
}

.bes-section--dark .bes-device-chip:hover,
.bes-section--dark .bes-step-chip:hover,
.bes-section--dark .bes-benefit-chip:hover,
.bes-section--dark .bes-security-item:hover,
.bes-section--dark .bes-deliverability-item:hover,
.bes-section--dark .bes-device-card:hover,
.bes-section--dark .bes-industry-chip:hover,
.bes-section--dark .bes-connect-chip:hover {
    background: #2a2a2a;
    border-color: #91d904;
}

.bes-section--dark .bes-process-step {
    background: #1a1a1a;
    border-color: #333;
}

.bes-section--dark .bes-process-step:hover {
    background: #2a2a2a;
}

.bes-section--dark .bes-process-step .bes-paragraph {
    color: #cfd2da;
}

.bes-section--dark .bes-integration-example {
    background: #1a1a1a;
}

.bes-section--dark .bes-integration-value {
    color: #ffffff;
}

.bes-section--dark .bes-signature-box {
    background: #1a1a1a;
    border-color: #333;
}

.bes-section--dark .bes-signature-box .bes-paragraph {
    color: #cfd2da;
}

.bes-section--dark .bes-domain-flow {
    background: #1a1a1a;
}

.bes-section--dark .bes-domain-flow span {
    background: #2a2a2a;
    color: #cfd2da;
}

.bes-section--dark .bes-migration-flow {
    background: #1a1a1a;
    color: #cfd2da;
}

.bes-section--dark .bes-compare-box--inline .bes-compare-item {
    background: transparent;
    box-shadow: none;
}

/* =====================================================================
   RESPONSIVE BREAKPOINTS
===================================================================== */

@media (min-width: 1440px) {
    .bes-container {
        max-width: 1320px;
    }
}

/* Laptops */
@media (max-width: 1199px) {
    .bes-tech-grid,
    .bes-protocol-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 991px) {
    .bes-section {
        padding: 48px 0;
    }

    .bes-hero__grid,
    .bes-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bes-hero__image {
        order: -1;
    }

    .bes-bullet-list--two-col {
        grid-template-columns: 1fr;
    }

    .bes-timeline::before {
        left: 22px;
    }

    .bes-timeline__marker {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 15px;
    }

    .bes-protocol-grid {
        grid-template-columns: 1fr;
    }

    .bes-compare-box {
        flex-direction: column;
        gap: 12px;
    }
}

/* Small Tablets & Mobile */
@media (max-width: 767px) {
    .bes-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .bes-section {
        padding: 40px 0;
    }

    .bes-hero__cta,
    .bes-cta-block__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .bes-btn {
        width: 100%;
        justify-content: center;
    }

    .bes-timeline__item {
        gap: 14px;
    }

    .bes-timeline__body {
        padding: 18px;
    }

    .bes-service-grid,
    .bes-dept-grid,
    .bes-newco-grid,
    .bes-tech-grid,
    .bes-troubleshoot-grid {
        grid-template-columns: 1fr;
    }

    .bes-benefit-grid {
        grid-template-columns: 1fr;
    }

    .bes-compare-item {
        min-width: unset;
        width: 100%;
    }

    .bes-email-examples {
        justify-content: center;
    }

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

/* Mobile Phones */
@media (max-width: 480px) {
    .bes-h1 {
        font-size: 26px;
    }

    .bes-h2 {
        font-size: 22px;
    }

    .bes-h3 {
        font-size: 18px;
    }

    .bes-paragraph,
    .bes-bullet-list li {
        font-size: 14.5px;
    }

    .bes-timeline__marker {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 13px;
    }

    .bes-tag-chip {
        font-size: 12px;
        padding: 4px 10px;
    }

    .bes-config-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bes-service-tags .bes-tag-chip {
        font-size: 12px;
    }

    .bes-process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bes-process-num {
        margin-bottom: 8px;
    }
}