:root {
    --le-bg: #f5f7f4;
    --le-surface: #ffffff;
    --le-surface-soft: #edf2ea;

    --le-text: #172017;
    --le-muted: #687568;

    --le-primary: #2f6f44;
    --le-primary-dark: #214d31;
    --le-primary-soft: #dfeee4;
    --le-accent: #c0842d;

    --le-border: #dbe4d8;

    --le-radius-sm: 12px;
    --le-radius-md: 20px;
    --le-radius-lg: 32px;

    --le-shadow: 0 28px 90px rgba(30, 50, 34, 0.13);
    --le-shadow-soft: 0 18px 56px rgba(30, 50, 34, 0.08);

    --le-container: 1180px;
    --le-font-main: Inter, Arial, Helvetica, sans-serif;
    --le-font-display: Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(47, 111, 68, 0.13), transparent 34%),
        linear-gradient(180deg, var(--le-bg), #ffffff);
    color: var(--le-text);
    font-family: var(--le-font-main);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.le-site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.le-main {
    flex: 1;
}

.le-container {
    width: min(var(--le-container), calc(100% - 40px));
    margin: 0 auto;
}

/* Header */

.le-topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid var(--le-border);
    backdrop-filter: blur(18px);
}

.le-topbar-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.le-logo,
.le-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--le-text);
}

.le-logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--le-primary), var(--le-accent));
    box-shadow: 0 12px 30px rgba(47, 111, 68, 0.24);
}

.le-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--le-muted);
    font-size: 14px;
    font-weight: 800;
}

.le-nav a,
.le-header-link {
    transition: color 0.2s ease, border-color 0.2s ease;
}

.le-nav a:hover {
    color: var(--le-primary);
}

.le-header-link {
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid var(--le-border);
    color: var(--le-primary);
    font-size: 14px;
    font-weight: 900;
}

.le-header-link:hover {
    border-color: var(--le-primary);
}

/* Shared */

.le-kicker,
.le-small-label {
    margin: 0 0 12px;
    color: var(--le-accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.le-section-intro {
    max-width: 780px;
    margin-bottom: 34px;
}

.le-section-intro-row {
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 28px;
}

.le-section-intro h2 {
    margin: 0;
    font-family: var(--le-font-display);
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.le-section-intro p:not(.le-kicker) {
    margin: 16px 0 0;
    color: var(--le-muted);
}

.le-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--le-primary);
    color: #ffffff;
    border: 1px solid var(--le-primary);
    font-size: 14px;
    font-weight: 900;
    transition: transform 0.2s ease, background 0.2s ease;
}

.le-button:hover {
    transform: translateY(-2px);
    background: var(--le-primary-dark);
}

.le-button-muted {
    background: transparent;
    color: var(--le-text);
    border-color: var(--le-border);
}

.le-button-muted:hover {
    color: #ffffff;
    border-color: var(--le-primary-dark);
}

.le-text-link,
.le-read-more {
    color: var(--le-primary);
    font-size: 14px;
    font-weight: 900;
}

.le-text-link:hover,
.le-read-more:hover {
    text-decoration: underline;
}

/* Home hero */

.le-hero {
    padding: 74px 0 46px;
}

.le-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 420px;
    gap: 42px;
    align-items: stretch;
}

.le-hero-content {
    padding: 28px 0;
}

.le-hero-content h1 {
    max-width: 820px;
    margin: 0;
    font-family: var(--le-font-display);
    font-size: clamp(46px, 7vw, 92px);
    line-height: 0.96;
    letter-spacing: -0.07em;
}

.le-hero-text {
    max-width: 720px;
    margin: 26px 0 0;
    color: var(--le-muted);
    font-size: 20px;
}

.le-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.le-hero-panel {
    overflow: hidden;
    border-radius: var(--le-radius-lg);
    background: var(--le-surface);
    border: 1px solid var(--le-border);
    box-shadow: var(--le-shadow);
}

.le-hero-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: var(--le-surface-soft);
    border-bottom: 1px solid var(--le-border);
}

.le-hero-panel-body {
    padding: 26px;
}

.le-hero-panel h2,
.le-aside-card h2,
.le-article-summary h2 {
    margin: 0 0 12px;
    font-family: var(--le-font-display);
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.le-hero-panel p,
.le-aside-card p,
.le-article-summary p {
    color: var(--le-muted);
}

.le-trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.le-trust-row div {
    padding: 20px;
    border-radius: var(--le-radius-md);
    background: var(--le-surface);
    border: 1px solid var(--le-border);
    box-shadow: var(--le-shadow-soft);
}

.le-trust-row span {
    display: block;
    color: var(--le-accent);
    font-weight: 900;
    margin-bottom: 6px;
}

.le-trust-row p {
    margin: 0;
    color: var(--le-muted);
    font-weight: 800;
}

/* Services */

.le-services-section,
.le-process-section,
.le-articles-section,
.le-faq-section,
.le-page-section {
    padding: 68px 0;
}

.le-service-grid {
    display: grid;
    gap: 18px;
}

.le-service-card {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 24px;
    padding: 26px;
    border-radius: var(--le-radius-lg);
    background: var(--le-surface);
    border: 1px solid var(--le-border);
    box-shadow: var(--le-shadow-soft);
}

.le-service-icon,
.le-section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: var(--le-primary-soft);
    color: var(--le-primary);
    font-weight: 900;
}

.le-service-card h3,
.le-content-section h2,
.le-faq-card h3 {
    margin: 0 0 12px;
    font-family: var(--le-font-display);
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.le-service-card p,
.le-content-section p,
.le-faq-card p {
    margin: 0 0 16px;
    color: var(--le-muted);
}

.le-service-card p:last-child,
.le-content-section p:last-child,
.le-faq-card p:last-child {
    margin-bottom: 0;
}

/* Process */

.le-process-box {
    padding: 34px;
    border-radius: var(--le-radius-lg);
    background: var(--le-primary);
    color: #ffffff;
    box-shadow: var(--le-shadow);
}

.le-process-heading {
    max-width: 680px;
    margin-bottom: 26px;
}

.le-process-heading .le-kicker {
    color: rgba(255, 255, 255, 0.72);
}

.le-process-heading h2 {
    margin: 0;
    font-family: var(--le-font-display);
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -0.055em;
}

.le-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.le-process-steps div {
    padding: 22px;
    border-radius: var(--le-radius-md);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.le-process-steps span {
    display: inline-flex;
    margin-bottom: 12px;
    font-weight: 900;
    color: var(--le-accent);
}

.le-process-steps h3 {
    margin: 0 0 10px;
}

.le-process-steps p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

/* Articles list */

.le-article-list {
    display: grid;
    gap: 20px;
}

.le-article-row {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    overflow: hidden;
    border-radius: var(--le-radius-lg);
    background: var(--le-surface);
    border: 1px solid var(--le-border);
    box-shadow: var(--le-shadow-soft);
}

.le-article-thumb {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    background: var(--le-surface-soft);
    border-right: 1px solid var(--le-border);
}

.le-article-row-body {
    padding: 28px;
}

.le-article-row h3 {
    margin: 0 0 12px;
    font-family: var(--le-font-display);
    font-size: 34px;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.le-article-row p {
    margin: 0 0 18px;
    color: var(--le-muted);
}

/* Page */

.le-page-hero {
    padding: 56px 0 28px;
}

.le-page-hero-card {
    padding: 38px;
    border-radius: var(--le-radius-lg);
    background: var(--le-surface);
    border: 1px solid var(--le-border);
    box-shadow: var(--le-shadow-soft);
}

.le-page-hero-card h1 {
    max-width: 920px;
    margin: 0;
    font-family: var(--le-font-display);
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.le-page-hero-card p:last-child {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--le-muted);
    font-size: 19px;
}

.le-page-layout,
.le-article-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.le-page-aside,
.le-article-toc {
    position: sticky;
    top: 104px;
}

.le-aside-card,
.le-article-summary {
    padding: 24px;
    border-radius: var(--le-radius-md);
    background: var(--le-surface);
    border: 1px solid var(--le-border);
    box-shadow: var(--le-shadow-soft);
}

.le-aside-nav,
.le-toc-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.le-aside-nav a,
.le-toc-list a {
    padding: 13px 15px;
    border-radius: 999px;
    background: var(--le-surface);
    border: 1px solid var(--le-border);
    color: var(--le-muted);
    font-size: 14px;
    font-weight: 800;
}

.le-aside-nav a:hover,
.le-toc-list a:hover {
    color: var(--le-primary);
    border-color: var(--le-primary);
}

.le-page-content {
    display: grid;
    gap: 18px;
}

.le-content-section {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 24px;
    padding: 30px;
    border-radius: var(--le-radius-lg);
    background: var(--le-surface);
    border: 1px solid var(--le-border);
    box-shadow: var(--le-shadow-soft);
}

/* Article */

.le-article-hero {
    padding: 60px 0 38px;
}

.le-article-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: stretch;
}

.le-article-hero h1 {
    margin: 0;
    font-family: var(--le-font-display);
    font-size: clamp(42px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.le-article-hero p:not(.le-kicker),
.le-article-meta {
    max-width: 760px;
    color: var(--le-muted);
}

.le-article-hero p:not(.le-kicker) {
    margin: 24px 0 0;
    font-size: 19px;
}

.le-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.le-article-cover {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    margin: 38px 0;
    border-radius: var(--le-radius-lg);
    border: 1px solid var(--le-border);
    background: var(--le-surface-soft);
    box-shadow: var(--le-shadow);
}

.le-article-content {
    max-width: 820px;
}

.le-article-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--le-border);
}

.le-article-section h2 {
    margin: 0 0 18px;
    font-family: var(--le-font-display);
    font-size: 40px;
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.le-article-section p {
    margin: 0 0 18px;
    color: var(--le-muted);
    font-size: 18px;
}

/* FAQ */

.le-faq-section-inner {
    padding-top: 30px;
}

.le-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.le-faq-card {
    padding: 24px;
    border-radius: var(--le-radius-md);
    background: var(--le-surface);
    border: 1px solid var(--le-border);
    box-shadow: var(--le-shadow-soft);
}

/* Footer */

.le-footer {
    padding: 56px 0 26px;
    background: var(--le-surface);
    border-top: 1px solid var(--le-border);
}

.le-footer-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 32px;
}

.le-footer-logo {
    margin-bottom: 14px;
}

.le-footer-brand p,
.le-footer-links a,
.le-footer-bottom {
    color: var(--le-muted);
}

.le-footer-column h3 {
    margin: 0 0 16px;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.le-footer-links {
    display: grid;
    gap: 10px;
}

.le-footer-links a:hover {
    color: var(--le-primary);
}

.le-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid var(--le-border);
    font-size: 13px;
}

/* Responsive */

@media (max-width: 1020px) {
    .le-hero-layout,
    .le-page-layout,
    .le-article-layout,
    .le-article-hero-grid {
        grid-template-columns: 1fr;
    }

    .le-page-aside,
    .le-article-toc {
        position: static;
    }

    .le-process-steps,
    .le-trust-row,
    .le-faq-grid,
    .le-footer-layout {
        grid-template-columns: 1fr;
    }

    .le-section-intro-row {
        display: block;
    }
}

@media (max-width: 720px) {
    .le-container {
        width: min(var(--le-container), calc(100% - 28px));
    }

    .le-topbar-inner {
        min-height: auto;
        padding: 16px 0;
        display: grid;
        gap: 16px;
    }

    .le-nav {
        flex-wrap: wrap;
        gap: 14px;
    }

    .le-header-link {
        width: max-content;
    }

    .le-hero,
    .le-services-section,
    .le-process-section,
    .le-articles-section,
    .le-faq-section,
    .le-page-section {
        padding: 46px 0;
    }

    .le-service-card,
    .le-content-section,
    .le-article-row {
        grid-template-columns: 1fr;
    }

    .le-article-thumb {
        min-height: auto;
        aspect-ratio: 16 / 10;
        border-right: 0;
        border-bottom: 1px solid var(--le-border);
    }

    .le-article-cover {
        aspect-ratio: 16 / 10;
        border-radius: 20px;
    }

    .le-page-hero-card,
    .le-process-box {
        padding: 24px;
    }
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .mg-layout,
html[dir="rtl"] .cp-page-layout,
html[dir="rtl"] .cp-article-layout,
html[dir="rtl"] .sd-hero-layout,
html[dir="rtl"] .sd-doc-layout,
html[dir="rtl"] .sd-article-layout {
    direction: rtl;
}

html[dir="rtl"] .mg-nav,
html[dir="rtl"] .cp-nav,
html[dir="rtl"] .sd-nav {
    direction: rtl;
}

html[dir="rtl"] .mg-sidebar-inner,
html[dir="rtl"] .cp-sidebar-inner,
html[dir="rtl"] .cp-article-sidebar {
    border-right: 0;
    padding-right: 0;
    border-left: 1px solid var(--mg-border, var(--cp-border, rgba(0, 0, 0, 0.15)));
    padding-left: 22px;
}

html[dir="rtl"] .mg-question summary::after,
html[dir="rtl"] .cp-faq-item summary::after,
html[dir="rtl"] .sd-faq-item summary::after {
    float: left;
}

html[dir="rtl"] ol,
html[dir="rtl"] ul {
    padding-right: 1.25rem;
    padding-left: 0;
}

html[lang="ar"] body {
    font-family: Tahoma, Arial, Helvetica, sans-serif;
}