.en-page {
    --en-bg: var(--color-background, #0C0C1F);
    --en-surface: var(--glass, rgba(255, 255, 255, 0.03));
    --en-surface-strong: var(--color-surface-deep, #161A28);
    --en-border: var(--line2, rgba(37, 99, 235, 0.12));
    --en-border-strong: rgba(37, 99, 235, 0.28);
    --en-text: var(--color-text-primary, #eaf4ff);
    --en-muted: var(--color-text-muted, #c7d2e5);
    --en-accent: #f59e0b;
    --en-accent-deep: #d97706;
    --en-success: #34d399;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.16), transparent 28rem),
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.045), transparent 26rem),
        var(--en-bg);
    color: var(--en-text);
}
.en-page a:focus-visible,
.en-page button:focus-visible {
    outline: 3px solid rgba(245, 158, 11, 0.55);
    outline-offset: 3px;
}
.en-shell,
.en-section .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.en-hero {
    padding: 4.75rem 0 3.5rem;
}
.en-hero__panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--en-border);
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(22, 26, 40, 0.96), rgba(12, 12, 31, 0.94));
    box-shadow: 0 28px 90px rgba(2, 6, 23, 0.34);
}
.en-hero__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(245, 158, 11, 0.18), transparent 24rem),
        radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.055), transparent 26rem);
    pointer-events: none;
}
.en-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
    padding: 2.4rem;
}
.en-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    background: rgba(245, 158, 11, 0.1);
    color: #ffd89d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.en-badge svg {
    width: 0.95rem;
    height: 0.95rem;
}
.en-hero h1 {
    margin: 1.15rem 0 1rem;
    font-size: clamp(2.35rem, 5.2vw, 4.25rem);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.en-hero h1 .grad,
.en-section-title .grad,
.en-cta-section .grad {
    background: linear-gradient(135deg, var(--en-accent), #fbbf24 45%, var(--en-accent-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.en-hero-subtitle {
    max-width: 48rem;
    margin: 0 0 1.5rem;
    color: var(--en-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}
.en-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.en-price-display {
    display: inline-flex;
    align-items: baseline;
    gap: 0.8rem;
    border: 1px solid rgba(52, 211, 153, 0.24);
    border-radius: 18px;
    padding: 0.85rem 1rem;
    background: var(--en-surface);
}
.en-price-amount {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    font-weight: 800;
    line-height: 1;
}
.en-price-from {
    color: var(--en-muted);
    font-size: 0.92rem;
}
.en-price-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #d1fae5;
    font-size: 0.9rem;
    font-weight: 600;
}
.en-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.en-hero-highlights,
.en-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.en-hero-highlights {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.8rem;
}
.en-hero-highlights li,
.en-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--en-muted);
    line-height: 1.6;
}
.en-hero-highlights svg,
.en-info-list svg,
.en-feature-icon svg,
.en-why-icon svg {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
}
.en-hero__aside {
    display: grid;
    gap: 1rem;
}
.en-glass-card {
    border: 1px solid var(--en-border);
    border-radius: 22px;
    background: var(--en-surface);
    backdrop-filter: blur(18px);
    padding: 1.35rem;
}
.en-glass-card h2,
.en-glass-card h3 {
    margin: 0 0 0.65rem;
}
.en-glass-card p {
    margin: 0;
    color: var(--en-muted);
    line-height: 1.7;
}
.en-quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1rem;
}
.en-quote-grid strong,
.en-info-list strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--en-text);
    font-size: 0.9rem;
}
.en-info-list {
    display: grid;
    gap: 0.9rem;
}
.en-section {
    padding: 3.75rem 0;
}
.en-section--surface {
    background: linear-gradient(180deg, rgba(12, 12, 31, 0), rgba(37, 99, 235, 0.025));
}
.en-section-title {
    margin: 0 0 1.3rem;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.en-section-intro {
    max-width: 46rem;
    margin: 0 0 2rem;
    color: var(--en-muted);
    line-height: 1.75;
}
.en-overview {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.85fr);
}
.en-overview__content {
    border: 1px solid var(--en-border);
    border-radius: 24px;
    background: var(--en-surface);
    padding: 1.75rem;
}
.en-overview__content p {
    margin: 0 0 1rem;
    color: var(--en-muted);
    line-height: 1.85;
}
.en-overview__content p:last-child {
    margin-bottom: 0;
}
.en-features-grid,
.en-pricing-grid,
.en-why-grid,
.en-related-links {
    display: grid;
    gap: 1.1rem;
}
.en-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.en-pricing-grid,
.en-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.en-feature-card,
.en-pricing-card,
.en-why-card,
.en-faq-item,
.en-related-link {
    border: 1px solid var(--en-border);
    border-radius: 22px;
    background: var(--en-surface);
    backdrop-filter: blur(16px);
}
.en-feature-card,
.en-pricing-card,
.en-why-card,
.en-faq-item {
    padding: 1.35rem;
}
.en-feature-card:hover,
.en-pricing-card:hover,
.en-why-card:hover,
.en-related-link:hover {
    border-color: var(--en-border-strong);
    transform: translateY(-2px);
}
.en-feature-card,
.en-pricing-card,
.en-why-card,
.en-related-link {
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.en-feature-card h3,
.en-pricing-card h3,
.en-why-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.08rem;
}
.en-feature-card p,
.en-pricing-card p,
.en-why-card p,
.en-faq-item p,
.en-related-link span {
    margin: 0;
    color: var(--en-muted);
    line-height: 1.7;
}
.en-feature-icon,
.en-why-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 1rem;
}
.en-feature-icon {
    background: rgba(59, 130, 246, 0.18);
    color: #bfdbfe;
}
.en-why-icon {
    background: rgba(245, 158, 11, 0.18);
    color: #fde68a;
}
.en-pricing-card__eyebrow {
    display: inline-flex;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.1);
    color: #fcd34d;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.en-pricing-card__price {
    margin: 1rem 0 0.65rem;
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
}
.en-faq-list {
    display: grid;
    gap: 1rem;
}
.en-faq-item h3 {
    margin: 0 0 0.65rem;
    font-size: 1.02rem;
}
.en-related-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.25rem;
}
.en-related-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    color: var(--en-text);
    text-decoration: none;
}
.en-related-link strong {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--en-text);
}
.en-related-link svg {
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
    color: #fcd34d;
}
.en-cta-section {
    padding: 4.5rem 0 5rem;
}
.en-cta-panel {
    overflow: hidden;
    position: relative;
    border-radius: 28px;
    border: 1px solid rgba(245, 158, 11, 0.28);
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.94), rgba(146, 64, 14, 0.88), rgba(120, 53, 15, 0.96));
    padding: 2.3rem;
    text-align: center;
    box-shadow: 0 24px 80px rgba(120, 53, 15, 0.22);
}
.en-cta-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 18rem),
        radial-gradient(circle at bottom right, rgba(245, 158, 11, 0.25), transparent 16rem);
    pointer-events: none;
}
.en-cta-panel > * {
    position: relative;
    z-index: 1;
}
.en-cta-section h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.1;
}
.en-cta-section p {
    max-width: 40rem;
    margin: 0 auto 1.6rem;
    color: #f8fafc;
    line-height: 1.8;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    padding: 0.9rem 1.5rem;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover {
    transform: translateY(-1px);
}
.btn-cta {
    background: linear-gradient(135deg, var(--en-accent), #fbbf24);
    color: #1f2937; /* dark on bright orange: ~7.8:1 contrast â†’ WCAG AA pass */
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.32);
}
.btn-cta:hover {
    background: linear-gradient(135deg, var(--en-accent-deep), #b45309); /* deeper amber */
    color: #ffffff; /* white on deep amber ~7.1:1 â†’ WCAG AA pass */
    box-shadow: 0 18px 44px rgba(245, 158, 11, 0.45);
}
.btn-secondary {
    background: var(--en-surface);
    border-color: var(--en-border);
    color: var(--en-text);
}
.btn-secondary:hover {
    border-color: rgba(245, 158, 11, 0.34);
}
@media (max-width: 1080px) {
    .en-hero__grid,
    .en-overview,
    .en-features-grid,
    .en-pricing-grid,
    .en-why-grid,
    .en-related-links {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 720px) {
    .en-hero {
        padding: 3rem 0 2.5rem;
    }
    .en-hero__grid,
    .en-cta-panel,
    .en-overview__content,
    .en-feature-card,
    .en-pricing-card,
    .en-why-card,
    .en-faq-item,
    .en-glass-card {
        padding: 1.2rem;
    }
    .en-hero-actions {
        flex-direction: column;
    }
    .en-price-display {
        width: 100%;
        justify-content: space-between;
    }
    .en-quote-grid {
        grid-template-columns: 1fr;
    }
}

/* === ENTERPRISE TEMPLATE â€” LIGHT MODE === */
@media (prefers-color-scheme: light) {
    html:not([data-theme="dark"]) .en-page {
        --en-bg: #f8fafc;
        --en-surface: rgba(255, 255, 255, 0.95);
        --en-surface-strong: #ffffff;
        --en-border: rgba(15, 23, 42, 0.08);
        --en-border-strong: rgba(245, 158, 11, 0.45);
        --en-text: #0f172a;
        --en-muted: #475569;
        background:
            radial-gradient(circle at top left, rgba(245, 158, 11, 0.07), transparent 28rem),
            radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent 26rem),
            var(--en-bg);
    }
    html:not([data-theme="dark"]) .en-hero__panel {
        background: linear-gradient(145deg, #ffffff, #f1f5f9);
        box-shadow: 0 28px 90px rgba(15, 23, 42, 0.08);
        border-color: rgba(15, 23, 42, 0.08);
    }
    html:not([data-theme="dark"]) .en-hero__panel::before {
        background:
            radial-gradient(circle at 0% 0%, rgba(245, 158, 11, 0.09), transparent 24rem),
            radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.07), transparent 26rem);
    }
    html:not([data-theme="dark"]) .en-glass-card,
    html:not([data-theme="dark"]) .en-feature-card,
    html:not([data-theme="dark"]) .en-pricing-card,
    html:not([data-theme="dark"]) .en-why-card,
    html:not([data-theme="dark"]) .en-faq-item,
    html:not([data-theme="dark"]) .en-related-link {
        background: var(--en-surface);
        backdrop-filter: none;
        box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    }
    html:not([data-theme="dark"]) .en-overview__content {
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(15, 23, 42, 0.08);
        box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    }
    html:not([data-theme="dark"]) .en-price-display {
        background: rgba(255, 255, 255, 0.95);
        border-color: rgba(52, 211, 153, 0.4);
        box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    }
    html:not([data-theme="dark"]) .en-price-label {
        color: #047857;
    }
    html:not([data-theme="dark"]) .en-section--surface {
        background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.025));
    }
    html:not([data-theme="dark"]) .en-feature-icon {
        background: rgba(59, 130, 246, 0.1);
        color: #1d4ed8;
    }
    html:not([data-theme="dark"]) .en-why-icon {
        background: rgba(245, 158, 11, 0.12);
        color: #b45309;
    }
    html:not([data-theme="dark"]) .en-pricing-card__eyebrow {
        background: rgba(245, 158, 11, 0.12);
        color: #b45309;
    }
    html:not([data-theme="dark"]) .en-badge {
        background: rgba(245, 158, 11, 0.12);
        color: #b45309;
    }
    html:not([data-theme="dark"]) .en-related-link svg {
        color: #b45309;
    }
    html:not([data-theme="dark"]) .btn-secondary {
        background: rgba(255, 255, 255, 0.9);
        border-color: rgba(15, 23, 42, 0.12);
    }
}
[data-theme="light"] .en-page {
    --en-bg: #f8fafc;
    --en-surface: rgba(255, 255, 255, 0.95);
    --en-surface-strong: #ffffff;
    --en-border: rgba(15, 23, 42, 0.08);
    --en-border-strong: rgba(245, 158, 11, 0.45);
    --en-text: #0f172a;
    --en-muted: #475569;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.07), transparent 28rem),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent 26rem),
        var(--en-bg);
}
[data-theme="light"] .en-hero__panel {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    box-shadow: 0 28px 90px rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.08);
}
[data-theme="light"] .en-hero__panel::before {
    background:
        radial-gradient(circle at 0% 0%, rgba(245, 158, 11, 0.09), transparent 24rem),
        radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.07), transparent 26rem);
}
[data-theme="light"] .en-glass-card,
[data-theme="light"] .en-feature-card,
[data-theme="light"] .en-pricing-card,
[data-theme="light"] .en-why-card,
[data-theme="light"] .en-faq-item,
[data-theme="light"] .en-related-link {
    background: var(--en-surface);
    backdrop-filter: none;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
[data-theme="light"] .en-overview__content {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
[data-theme="light"] .en-price-display {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
[data-theme="light"] .en-price-label {
    color: #047857;
}
[data-theme="light"] .en-section--surface {
    background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.025));
}
[data-theme="light"] .en-feature-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
}
[data-theme="light"] .en-why-icon {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
}
[data-theme="light"] .en-pricing-card__eyebrow {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
}
[data-theme="light"] .en-badge {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
}
[data-theme="light"] .en-related-link svg {
    color: #b45309;
}
[data-theme="light"] .btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(15, 23, 42, 0.12);
}

/* === ENTERPRISE TEMPLATE Ã¢â‚¬â€ FAQ ACCORDION === */
.en-section--surface.faq-section .faq-list {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}
.en-section--surface.faq-section .faq-item {
    background: var(--en-surface);
    border: 1px solid var(--en-border);
    border-radius: 22px;
    backdrop-filter: blur(16px);
    padding: 0;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.18s ease, transform 0.18s ease;
}
.en-section--surface.faq-section .faq-item:hover {
    border-color: var(--en-border-strong);
}
.en-section--surface.faq-section .faq-item.is-open {
    border-color: var(--en-border-strong);
}
.en-section--surface.faq-section .faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 0;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: var(--en-text);
    background: transparent;
}
.en-section--surface.faq-section .faq-question:hover {
    background: rgba(15, 23, 42, 0.18);
}
.en-section--surface.faq-section .faq-question:focus-visible {
    outline: 3px solid var(--en-accent);
    outline-offset: 2px;
}
.en-section--surface.faq-section .faq-question__text {
    flex: 1 1 auto;
    min-width: 0;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--en-text);
}
.en-section--surface.faq-section .faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex: 0 0 1.25rem;
    display: block;
    color: var(--en-muted);
    transition: transform 0.25s ease, color 0.25s ease;
}
.en-section--surface.faq-section .faq-item.is-open .faq-icon {
    color: var(--en-accent);
    transform: rotate(180deg);
}
.en-section--surface.faq-section .faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}
.en-section--surface.faq-section .faq-item.is-open .faq-answer {
    display: block;
}
.en-section--surface.faq-section .faq-answer__body {
    color: var(--en-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}
[data-theme="light"] .en-section--surface.faq-section .faq-item {
    background: var(--en-surface);
    border-color: var(--en-border);
    backdrop-filter: none;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
[data-theme="light"] .en-section--surface.faq-section .faq-question:hover {
    background: rgba(15, 23, 42, 0.04);
}
@media (prefers-color-scheme: light) {
    html:not([data-theme="dark"]) .en-section--surface.faq-section .faq-item {
        background: var(--en-surface);
        border-color: var(--en-border);
        backdrop-filter: none;
        box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    }
    html:not([data-theme="dark"]) .en-section--surface.faq-section .faq-question:hover {
        background: rgba(15, 23, 42, 0.04);
    }
}

/* Explicit premium default palette and accessible interaction states. */
.en-page { --en-bg: #0c0c1f; --en-surface: #18182b; --en-surface-strong: #161a28; --en-border: rgba(37, 99, 235, .12); --en-border-strong: rgba(37, 99, 235, .22); --en-text: #eaf4ff; --en-muted: #cfe3ff; color-scheme: dark; }
html[data-theme="dark"] .en-page { --en-bg: #0c0c1f; --en-surface: #18182b; --en-surface-strong: #161a28; --en-border: rgba(37, 99, 235, .12); --en-border-strong: rgba(37, 99, 235, .22); --en-text: #eaf4ff; --en-muted: #cfe3ff; color-scheme: dark; }
html[data-theme="light"] .en-page { --en-bg: #f8fafc; --en-surface: #fff; --en-surface-strong: #f1f5f9; --en-border: rgba(15, 23, 42, .12); --en-border-strong: rgba(15, 23, 42, .2); --en-text: #0f172a; --en-muted: #475569; color-scheme: light; }
@media (prefers-color-scheme: light) { html:not([data-theme]) .en-page { --en-bg: #f8fafc; --en-surface: #fff; --en-surface-strong: #f1f5f9; --en-border: rgba(15, 23, 42, .12); --en-border-strong: rgba(15, 23, 42, .2); --en-text: #0f172a; --en-muted: #475569; color-scheme: light; } }
.en-page .btn { min-height: 44px; }
.en-hero-actions--centered { justify-content: center; }
.en-glass-card > .en-info-list { margin-top: 1rem; }
.en-page a:focus-visible, .en-page button:focus-visible { outline: 3px solid var(--en-accent); outline-offset: 4px; border-radius: 8px; }
@media (max-width: 390px) { .en-shell, .en-section .container { padding-inline: 11px; } .en-hero__panel { border-radius: 22px; } }
@media (max-width: 320px) { .en-actions { flex-direction: column; } .en-actions .btn { width: 100%; justify-content: center; } .en-badge { max-width: 100%; border-radius: 14px; overflow-wrap: anywhere; } }
@media (prefers-reduced-motion: reduce) { .en-page *, .en-page *::before, .en-page *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; } }
@media (forced-colors: active) { .en-hero__panel, .en-glass-card, .en-feature-card, .en-pricing-card, .en-why-card, .en-faq-item, .en-related-link { border: 1px solid CanvasText; } .en-page .btn { border: 1px solid ButtonText; } }
