:root {
    --en-accent: #8B5CF6;
    --en-accent-dark: #7C3AED;
    --en-accent-light: #EDE9FE;
    --en-bg: #FFFFFF;
    --en-bg-alt: #F8F7FF;
    --en-bg-dark: #0F0A1E;
    --en-bg-card: #1A1035;
    --en-bg-border: #2D1F54;
    --en-text-primary: #111827;
    --en-text-heading: #0D0921;
    --en-text-muted: #6B7280;
    --en-text-light: #E2E8F0;
    --en-text-light-muted: #9CA3AF;
    --en-border: #E5E7EB;
    --en-radius: 10px;
    --en-radius-lg: 16px;
    --en-shadow: 0 4px 24px rgba(139,92,246,0.10);
    --en-shadow-lg: 0 8px 40px rgba(139,92,246,0.18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #111827;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color: #0D0921;
    margin-top: 0;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #8B5CF6;
    text-decoration: none;
}

a:hover {
    color: #7C3AED;
}

img {
    max-width: 100%;
    height: auto;
}

.en-btn-primary {
    display: inline-block;
    background-color: #8B5CF6;
    color: #FFFFFF;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.en-btn-primary:hover {
    background-color: #7C3AED;
    color: #FFFFFF;
    text-decoration: none;
}

.en-btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #8B5CF6;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 12px 28px;
    border-radius: 8px;
    border: 2px solid #8B5CF6;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.en-btn-secondary:hover {
    background-color: #EDE9FE;
    color: #7C3AED;
    text-decoration: none;
}

.en-btn-light {
    display: inline-block;
    background-color: #FFFFFF;
    color: #8B5CF6;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.en-btn-light:hover {
    background-color: #F5F3FF;
    color: #7C3AED;
    text-decoration: none;
}

.en-link {
    color: #8B5CF6;
    text-decoration: none;
    font-size: 15px;
}

.en-link:hover {
    color: #7C3AED;
    text-decoration: underline;
}

.en-btn-primary-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.en-section {
    padding: 80px 0;
}

.en-section-compact {
    padding: 60px 0;
}

.en-section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #0D0921;
    margin-bottom: 16px;
}

.en-section-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #6B7280;
    margin-bottom: 48px;
}

.en-badge {
    display: inline-block;
    background-color: #EDE9FE;
    color: #8B5CF6;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.en-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.en-nav.nav-transparent {
    background-color: transparent;
}

.en-nav.nav-solid {
    background-color: #0F0A1E;
    box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.en-nav.nav-scrolled {
    background-color: #0F0A1E;
    box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.en-nav .nav-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.en-nav .en-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.en-nav .en-logo img {
    height: 36px;
    width: auto;
}

.en-nav .en-logo-text {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.en-nav .en-logo-text span {
    color: #8B5CF6;
}

.en-nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.en-nav-menu a {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #E2E8F0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.en-nav-menu a:hover,
.en-nav-menu a.active {
    color: #8B5CF6;
}

.en-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.en-nav-actions .en-btn-primary {
    padding: 10px 20px;
    font-size: 14px;
}

.en-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #E2E8F0;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
}

.en-nav-mobile {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: #0F0A1E;
    border-top: 1px solid #2D1F54;
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 4px;
}

.en-nav-mobile.open {
    display: flex;
}

.en-nav-mobile a {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #E2E8F0;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #2D1F54;
    transition: color 0.2s ease;
}

.en-nav-mobile a:last-child {
    border-bottom: none;
}

.en-nav-mobile a:hover {
    color: #8B5CF6;
}

.en-nav-mobile .en-btn-primary {
    margin-top: 12px;
    text-align: center;
}

@media (max-width: 991px) {
    .en-nav-menu {
        display: none;
    }
    .en-nav-actions .en-btn-primary {
        display: none;
    }
    .en-nav-toggle {
        display: block;
    }
}

.en-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #0F0A1E;
    padding: 120px 0 100px;
    overflow: hidden;
}

.en-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.en-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(15,10,30,0.65);
    z-index: 1;
    pointer-events: none;
}

.en-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(139,92,246,0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.en-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.en-hero-content h1 {
    color: #FFFFFF;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.en-hero-content .en-hero-sub {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #9CA3AF;
    margin-bottom: 36px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.en-hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.en-hero-social-proof {
    font-size: 14px;
    color: #6B7280;
    letter-spacing: 0.01em;
}

.en-hero-secondary-outline {
    display: inline-block;
    background-color: transparent;
    color: #E2E8F0;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 12px 28px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.en-hero-secondary-outline:hover {
    border-color: #E2E8F0;
    color: #FFFFFF;
    text-decoration: none;
}

.en-stats-bar {
    padding: 40px 0;
    background-color: #FFFFFF;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.en-stat-item {
    text-align: center;
    padding: 16px;
}

.en-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #8B5CF6;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.en-stat-label {
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.4;
}

.en-features {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.en-feature-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(139,92,246,0.10);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.en-feature-card:hover {
    box-shadow: 0 8px 40px rgba(139,92,246,0.18);
    transform: translateY(-2px);
}

.en-feature-icon {
    width: 48px;
    height: 48px;
    background-color: #EDE9FE;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
    color: #8B5CF6;
    flex-shrink: 0;
}

.en-feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0D0921;
    margin-bottom: 10px;
}

.en-feature-card p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

.en-process {
    padding: 80px 0;
    background-color: #F8F7FF;
}

.en-process-steps {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.en-process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.en-step-number {
    font-size: 13px;
    font-weight: 700;
    color: #8B5CF6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.en-process-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0D0921;
    margin-bottom: 12px;
}

.en-process-step p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.65;
    margin-bottom: 0;
}

.en-process-icon {
    width: 48px;
    height: 48px;
    background-color: #EDE9FE;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #8B5CF6;
    margin-bottom: 20px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .en-process-steps {
        flex-direction: column;
        gap: 32px;
    }
}

.en-testimonials {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.en-testimonial-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(139,92,246,0.10);
}

.en-testimonial-quote-icon {
    font-size: 24px;
    color: #8B5CF6;
    margin-bottom: 16px;
}

.en-testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 24px;
    flex: 1;
    font-style: italic;
}

.en-testimonial-author {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.en-testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: #0D0921;
    margin-bottom: 2px;
}

.en-testimonial-role {
    font-size: 13px;
    color: #6B7280;
}

.en-cta-banner {
    padding: 80px 0;
    background-color: #8B5CF6;
}

.en-cta-banner h2 {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.en-cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    margin-bottom: 32px;
}

.en-footer {
    background-color: #0F0A1E;
    padding: 64px 0 32px;
    color: #E2E8F0;
}

.en-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.en-footer-logo-text {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.en-footer-logo-text span {
    color: #8B5CF6;
}

.en-footer-tagline {
    font-size: 14px;
    color: #9CA3AF;
    line-height: 1.6;
    max-width: 220px;
}

.en-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.en-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #1A1035;
    border: 1px solid #2D1F54;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 15px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.en-footer-social a:hover {
    color: #FFFFFF;
    background-color: #8B5CF6;
}

.en-footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: #E2E8F0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.en-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.en-footer-links a {
    font-size: 14px;
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.en-footer-links a:hover {
    color: #FFFFFF;
}

.en-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.en-footer-contact-item i {
    font-size: 14px;
    color: #8B5CF6;
    margin-top: 2px;
    flex-shrink: 0;
}

.en-footer-contact-item span,
.en-footer-contact-item a {
    font-size: 14px;
    color: #9CA3AF;
    text-decoration: none;
    line-height: 1.5;
}

.en-footer-contact-item a:hover {
    color: #FFFFFF;
}

.en-footer-divider {
    border: none;
    border-top: 1px solid #2D1F54;
    margin: 40px 0 24px;
}

.en-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.en-footer-copy {
    font-size: 13px;
    color: #6B7280;
}

.en-footer-legal-links {
    display: flex;
    gap: 20px;
}

.en-footer-legal-links a {
    font-size: 13px;
    color: #6B7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.en-footer-legal-links a:hover {
    color: #E2E8F0;
}

.en-cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1A1035;
    border-top: 1px solid #2D1F54;
    z-index: 9999;
    padding: 20px 0;
}

.en-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.en-cookie-text {
    font-size: 14px;
    color: #E2E8F0;
    line-height: 1.6;
    flex: 1;
    min-width: 260px;
}

.en-cookie-text a {
    color: #8B5CF6;
    text-decoration: underline;
}

.en-cookie-text a:hover {
    color: #A78BFA;
}

.en-cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.en-cookie-actions .en-btn-primary {
    padding: 10px 20px;
    font-size: 14px;
}

.en-cookie-actions .en-link {
    font-size: 14px;
    color: #9CA3AF;
}

.en-cookie-actions .en-link:hover {
    color: #E2E8F0;
}

.en-subpage-hero {
    padding: 100px 0 60px;
    background-color: #F8F7FF;
    margin-top: 64px;
    text-align: center;
}

.en-subpage-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #0D0921;
    margin-bottom: 16px;
}

.en-subpage-hero p {
    font-size: 18px;
    color: #6B7280;
    max-width: 560px;
    margin: 0 auto;
}

.en-dark-hero {
    padding: 120px 0 80px;
    background-color: #0F0A1E;
    margin-top: 64px;
    position: relative;
    overflow: hidden;
}

.en-dark-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.en-dark-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.en-dark-hero-content {
    position: relative;
    z-index: 2;
}

.en-dark-hero h1 {
    font-size: 44px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.en-dark-hero p {
    font-size: 18px;
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 16px;
}

.en-dark-hero .en-dark-hero-body p {
    font-size: 16px;
    color: #E2E8F0;
}

.en-light-hero {
    padding: 100px 0 80px;
    background-color: #FFFFFF;
    margin-top: 64px;
}

.en-light-hero h1 {
    font-size: 44px;
    font-weight: 700;
    color: #0D0921;
    margin-bottom: 20px;
}

.en-light-hero p {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 28px;
}

.en-product-ui-img {
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(139,92,246,0.18);
    width: 100%;
}

.en-alternating-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.en-alternating-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.en-alternating-row:last-child {
    margin-bottom: 0;
}

.en-alternating-row.reverse {
    flex-direction: row-reverse;
}

.en-alternating-text {
    flex: 1;
}

.en-alternating-text h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0D0921;
    margin-bottom: 16px;
}

.en-alternating-text p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.65;
}

.en-alternating-img {
    flex: 1;
}

.en-alternating-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(139,92,246,0.10);
}

@media (max-width: 767px) {
    .en-alternating-row,
    .en-alternating-row.reverse {
        flex-direction: column;
        gap: 32px;
    }
}

.en-timeline {
    padding: 80px 0;
    background-color: #F8F7FF;
}

.en-timeline-steps {
    display: flex;
    gap: 0;
    margin-top: 48px;
    position: relative;
}

.en-timeline-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #E5E7EB;
    z-index: 0;
}

.en-timeline-step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.en-timeline-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #8B5CF6;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 4px solid #F8F7FF;
    box-shadow: 0 0 0 2px #8B5CF6;
}

.en-timeline-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0D0921;
    margin-bottom: 8px;
}

.en-timeline-step p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 767px) {
    .en-timeline-steps {
        flex-direction: column;
        gap: 32px;
    }
    .en-timeline-steps::before {
        display: none;
    }
    .en-timeline-step {
        text-align: left;
        display: flex;
        gap: 16px;
    }
    .en-timeline-dot {
        margin: 0;
        flex-shrink: 0;
    }
    .en-timeline-step-body {
        padding-top: 8px;
    }
}

.en-stats-cards {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.en-stat-card {
    background-color: #F8F7FF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.en-stat-card .en-stat-number {
    font-size: 44px;
    font-weight: 700;
    color: #8B5CF6;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.en-stat-card .en-stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #0D0921;
    margin-bottom: 8px;
}

.en-stat-card .en-stat-desc {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.en-principles {
    padding: 80px 0;
    background-color: #F8F7FF;
}

.en-principle-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(139,92,246,0.10);
}

.en-principle-card .en-feature-icon {
    margin-bottom: 16px;
}

.en-principle-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0D0921;
    margin-bottom: 12px;
}

.en-principle-card p {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.en-cta-card-section {
    padding: 80px 0;
    background-color: #F8F7FF;
}

.en-cta-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(139,92,246,0.18);
}

.en-cta-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0D0921;
    margin-bottom: 16px;
}

.en-cta-card p {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 28px;
}

.en-team-grid {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.en-member-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 24px rgba(139,92,246,0.10);
    transition: box-shadow 0.2s ease;
}

.en-member-card:hover {
    box-shadow: 0 8px 40px rgba(139,92,246,0.18);
}

.en-member-avatar {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #EDE9FE;
}

.en-member-name {
    font-size: 18px;
    font-weight: 600;
    color: #0D0921;
    margin-bottom: 4px;
}

.en-member-role {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 0;
}

.en-contact-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.en-contact-form-wrap {
    background-color: #F8F7FF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 40px;
}

.en-contact-info-wrap {
    padding: 40px 32px;
}

.en-contact-info-wrap h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0D0921;
    margin-bottom: 24px;
}

.en-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.en-contact-info-icon {
    width: 40px;
    height: 40px;
    background-color: #EDE9FE;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #8B5CF6;
    flex-shrink: 0;
}

.en-contact-info-item .en-ci-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8B5CF6;
    margin-bottom: 4px;
}

.en-contact-info-item .en-ci-value {
    font-size: 15px;
    color: #374151;
    line-height: 1.5;
}

.en-contact-info-item a {
    color: #374151;
    text-decoration: none;
}

.en-contact-info-item a:hover {
    color: #8B5CF6;
}

.en-form-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}

.en-form-input,
.en-form-textarea,
.en-form-select {
    width: 100%;
    background-color: #FFFFFF;
    border: 1.5px solid #E5E7EB;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 15px;
    color: #111827;
    line-height: 1.5;
    outline: none;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.en-form-input:focus,
.en-form-textarea:focus,
.en-form-select:focus {
    border-color: #8B5CF6;
}

.en-form-input::placeholder,
.en-form-textarea::placeholder {
    color: #9CA3AF;
}

.en-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.en-form-group {
    margin-bottom: 20px;
}

.en-blog-hero {
    padding: 80px 0 60px;
    background-color: #F8F7FF;
    margin-top: 64px;
    text-align: center;
}

.en-blog-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #0D0921;
    margin-bottom: 14px;
}

.en-blog-hero p {
    font-size: 18px;
    color: #6B7280;
    max-width: 540px;
    margin: 0 auto;
}

.en-blog-grid {
    padding: 60px 0 80px;
    background-color: #FFFFFF;
}

.en-post-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(139,92,246,0.10);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.en-post-card:hover {
    box-shadow: 0 8px 40px rgba(139,92,246,0.18);
    transform: translateY(-2px);
}

.en-post-thumb {
    display: block;
    overflow: hidden;
}

.en-post-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.en-post-card:hover .en-post-thumb img {
    transform: scale(1.03);
}

.en-post-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.en-post-date {
    font-size: 13px;
    color: #6B7280;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.en-post-date i {
    color: #8B5CF6;
    font-size: 12px;
}

.en-post-title {
    font-size: 18px;
    font-weight: 600;
    color: #0D0921;
    line-height: 1.35;
    margin-bottom: 10px;
}

.en-post-title a {
    color: #0D0921;
    text-decoration: none;
}

.en-post-title a:hover {
    color: #8B5CF6;
}

.en-post-excerpt {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.en-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #8B5CF6;
    text-decoration: none;
    margin-top: auto;
    padding-top: 16px;
    transition: gap 0.2s ease;
}

.en-read-more:hover {
    color: #7C3AED;
    gap: 10px;
}

.en-legal-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.en-legal-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

.en-legal-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0D0921;
    margin-top: 48px;
    margin-bottom: 16px;
}

.en-legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0D0921;
    margin-top: 32px;
    margin-bottom: 12px;
}

.en-legal-content p {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 16px;
}

.en-legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.en-legal-content ul li {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 8px;
}

.en-legal-content a {
    color: #8B5CF6;
    text-decoration: underline;
}

.en-legal-updated {
    font-size: 14px;
    color: #9CA3AF;
    margin-bottom: 40px;
}

.en-404-page {
    min-height: 100vh;
    background-color: #0F0A1E;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.en-404-content {
    max-width: 480px;
}

.en-404-number {
    font-size: 120px;
    font-weight: 700;
    color: #8B5CF6;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.en-404-heading {
    font-size: 24px;
    font-weight: 600;
    color: #E2E8F0;
    margin-bottom: 16px;
}

.en-404-text {
    font-size: 16px;
    color: #9CA3AF;
    margin-bottom: 36px;
}

.en-404-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    text-align: center;
    border-top: 1px solid #2D1F54;
}

.en-404-footer p {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
}

@media (max-width: 991px) {
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 30px;
    }
    .en-hero-content h1 {
        font-size: 40px;
    }
    .en-dark-hero h1 {
        font-size: 36px;
    }
    .en-light-hero h1 {
        font-size: 36px;
    }
    .en-section-title {
        font-size: 30px;
    }
    .en-cta-banner h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 26px;
    }
    .en-hero-content h1 {
        font-size: 32px;
    }
    .en-hero {
        padding: 100px 0 80px;
    }
    .en-section,
    .en-section-compact {
        padding: 60px 0;
    }
    .en-stats-bar {
        padding: 32px 0;
    }
    .en-404-number {
        font-size: 80px;
    }
    .en-cta-card {
        padding: 32px 24px;
    }
    .en-contact-form-wrap {
        padding: 28px 20px;
    }
    .en-contact-info-wrap {
        padding: 32px 0;
    }
}

/* === Logo v2: dual-variant dark/light === */
.logo-img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}

/* Nav default: show dark logo (for light bg), hide light logo */
/* Nav is always dark on getenrola.org (transparent/scrolled/solid all atop #0F0A1E).
   Always show the light logo; body.light-nav reserved for future light-bg overrides. */
.logo-img--dark  { display: none !important; }
.logo-img--light { display: inline-block !important; }
body.light-nav .logo-img--dark  { display: inline-block !important; }
body.light-nav .logo-img--light { display: none !important; }

/* Footer logo always shows light variant */
footer .logo-img { max-height: 48px; }
