/* === TRUST SECTION (notice banner style) === */
.ebc-trust {
    position: relative;
    overflow: hidden;
}
.ebc-trust-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--ebc-white);
    border: 1px solid var(--ebc-gray-200);
    border-radius: 12px;
    padding: 24px 32px;
    box-shadow: var(--ebc-shadow);
    position: relative;
}
.ebc-trust-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--ebc-blue);
    border-radius: 12px 0 0 12px;
}
.ebc-trust-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #dbeafe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
}
.ebc-trust-text {
    font-size: 15px;
    color: var(--ebc-gray-600);
    line-height: 1.7;
    margin: 0;
}

/* === COUNTRY GRID (dark navy cards per design) === */
.ebc-countries-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.ebc-countries-header .ebc-section-title {
    margin-bottom: 0;
}
.ebc-countries-link {
    font-size: 13px;
    color: var(--ebc-blue);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ebc-countries-link:hover {
    text-decoration: underline;
}


.ebc-country-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.ebc-country-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 12px;
    background: var(--ebc-gray-50);
    border: 1px solid var(--ebc-gray-200);
    border-radius: var(--ebc-radius);
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
}
.ebc-country-card:hover {
    background: var(--ebc-white);
    transform: translateY(-2px);
    box-shadow: var(--ebc-shadow-md);
    border-color: var(--ebc-gray-300);
}
.ebc-country-flag {
    font-size: 28px;
    margin-bottom: 8px;
}
.ebc-country-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--ebc-navy);
    margin-bottom: 2px;
}
.ebc-country-label {
    font-size: 10px;
    color: var(--ebc-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.ebc-country-arrow {
    font-size: 14px;
    color: var(--ebc-blue);
    margin-top: 6px;
    opacity: 0.6;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: block;
}
.ebc-country-card:hover .ebc-country-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* === HOW IT WORKS (per design: left border title) === */
.ebc-howworks-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}
.ebc-howworks-header .ebc-section-title {
    text-align: left;
    margin-bottom: 0;
    padding-left: 12px;
    border-left: 3px solid var(--ebc-navy);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ebc-fee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.ebc-fee-card {
    background: var(--ebc-white);
    border: 1px solid var(--ebc-gray-200);
    border-radius: var(--ebc-radius);
    padding: 24px 20px;
    transition: all 0.2s ease;
}
.ebc-fee-card:hover {
    box-shadow: var(--ebc-shadow-md);
    transform: translateY(-2px);
}
.ebc-fee-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: var(--ebc-gray-100);
    border-radius: 10px;
    color: var(--ebc-navy);
}
.ebc-fee-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ebc-navy);
    margin-bottom: 8px;
}
.ebc-fee-card p {
    font-size: 13px;
    color: var(--ebc-gray-500);
    line-height: 1.6;
}

/* === FORMULA (dark navy background) === */
.ebc-formula .ebc-section-title {
    text-align: center;
}
.ebc-formula-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}
.ebc-formula-item {
    padding: 14px 22px;
    border-radius: var(--ebc-radius-sm);
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}
.ebc-formula-add {
    background: var(--ebc-navy-light);
    color: var(--ebc-white);
    border: 1px solid var(--ebc-gray-700);
}
.ebc-formula-sub {
    background: var(--ebc-navy-light);
    color: var(--ebc-gray-400);
    border: 1px solid var(--ebc-gray-700);
}
.ebc-formula-result {
    background: var(--ebc-green);
    color: var(--ebc-white);
    font-size: 16px;
    padding: 16px 28px;
    border-radius: var(--ebc-radius);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}
.ebc-formula-operator {
    color: var(--ebc-gray-400);
    font-size: 20px;
    font-weight: 700;
}

/* === USE CASES === */
.ebc-usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 32px;
}
.ebc-usecase-item {
    background: var(--ebc-white);
    border: 1px solid var(--ebc-gray-200);
    border-radius: var(--ebc-radius);
    padding: 24px 18px;
    text-align: center;
    transition: all 0.2s ease;
}
.ebc-usecase-item:hover {
    box-shadow: var(--ebc-shadow-md);
    transform: translateY(-2px);
}
.ebc-usecase-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}
.ebc-usecase-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--ebc-navy);
    margin-bottom: 6px;
}
.ebc-usecase-item p {
    font-size: 13px;
    color: var(--ebc-gray-500);
    line-height: 1.6;
}

/* Universal Tool Page Overrides */
.ebc-universal-tool-page .ebc-content-section {
    padding: 32px 0 !important;
}
.ebc-universal-tool-page .ebc-content-section p {
    margin-bottom: 8px;
}
.ebc-universal-tool-page .ebc-faq {
    padding-top: 40px;
    padding-bottom: 40px;
}
