@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Work+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --3z1-primary: #b45309;
    --3z1-secondary: #92400e;
    --3z1-accent: #6366f1;
    --3z1-background: #fffbeb;
    --3z1-text: #451a03;
    --3z1-muted: #fcd34d;
    --3z1-light-gray: #f9fafb;
    --3z1-dark-gray: #374151;
    --3z1-border-color: rgba(0,0,0,0.1);

    --3z1-spacing-xs: 8px;
    --3z1-spacing-sm: 16px;
    --3z1-spacing-md: 24px;
    --3z1-spacing-lg: 32px;
    --3z1-spacing-xl: 48px;
    --3z1-spacing-xxl: 64px;
    --3z1-spacing-xxxl: 96px;
    --3z1-spacing-xxxxl: 128px;

    --3z1-border-radius-sm: 8px;
    --3z1-border-radius-md: 12px;
    --3z1-border-radius-lg: 16px;

    --3z1-transition-duration: 0.25s;
    --3z1-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Merriweather', serif; /* Body font */
    line-height: 1.65;
    color: var(--3z1-text);
    background-color: var(--3z1-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.0625rem; /* ~17px */
    direction: rtl;
    text-align: right;
}

::selection {
    background-color: var(--3z1-accent);
    color: var(--3z1-background);
}

/* Typography Scale */
.el-h1,
h1 {
    font-family: 'Work Sans', sans-serif; /* Heading font */
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); /* 40px to 72px */
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--3z1-text);
    margin-bottom: var(--3z1-spacing-md);
}
.el-h1 i, h1 i {
    font-style: italic;
}

.el-h2,
h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw + 1rem, 3rem); /* 32px to 48px */
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--3z1-text);
    margin-bottom: var(--3z1-spacing-md);
}

.el-h3,
h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.625rem; /* 26px */
    letter-spacing: -0.01em;
    line-height: 1.25;
    color: var(--3z1-text);
    margin-bottom: var(--3z1-spacing-sm);
}

.el-h4,
h4 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 1.375rem; /* 22px */
    line-height: 1.3;
    color: var(--3z1-text);
    margin-bottom: var(--3z1-spacing-xs);
}

p {
    margin-bottom: var(--3z1-spacing-sm);
    max-width: 65ch;
}

a {
    color: var(--3z1-primary);
    text-decoration: none;
    transition: color var(--3z1-transition-duration) var(--3z1-transition-timing-function);
}

a:hover {
    color: var(--3z1-secondary);
}

strong {
    font-weight: 700;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--3z1-spacing-sm);
}

.el-check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--3z1-spacing-xs);
    gap: var(--3z1-spacing-xs);
}

.el-check-list li .el-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--3z1-primary);
    margin-top: 3px;
}

/* Layout Utilities */
.el-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--3z1-spacing-md);
    padding-right: var(--3z1-spacing-md);
}

.el-section {
    padding-top: var(--3z1-spacing-xxxl);
    padding-bottom: var(--3z1-spacing-xxxl);
}

.el-section-alt {
    background-color: var(--3z1-light-gray);
    padding-top: var(--3z1-spacing-xxxl);
    padding-bottom: var(--3z1-spacing-xxxl);
}

.el-grid {
    display: grid;
    gap: var(--3z1-spacing-md);
}

.el-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.el-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.el-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.el-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--3z1-spacing-sm);
}

.el-text-center {
    text-align: center;
}

.el-subheading {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--3z1-primary);
    margin-bottom: var(--3z1-spacing-xs);
}

/* Header and Navigation */
.el-header {
    background-color: var(--3z1-background);
    padding: var(--3z1-spacing-md) 0;
    border-bottom: 1px solid var(--3z1-border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.el-header .el-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.el-logo {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--3z1-text);
    text-decoration: none;
    display: block;
}

.el-logo span {
    color: var(--3z1-primary);
}

.el-nav-list {
    display: flex;
    gap: var(--3z1-spacing-lg);
}

.el-nav-link {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    color: var(--3z1-dark-gray);
    padding: var(--3z1-spacing-xs) 0;
    position: relative;
    transition: color var(--3z1-transition-duration) var(--3z1-transition-timing-function);
}

.el-nav-link::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--3z1-primary);
    transition: width var(--3z1-transition-duration) var(--3z1-transition-timing-function);
}

.el-nav-link:hover::after {
    width: 100%;
    left: 0;
}

.el-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: var(--3z1-spacing-lg);
    cursor: pointer;
    color: var(--3z1-text);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .el-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--3z1-background);
        border-top: 1px solid var(--3z1-border-color);
        padding: var(--3z1-spacing-sm) var(--3z1-spacing-md);
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        transition: max-height 0.3s ease-out;
        max-height: 0;
        overflow: hidden;
    }

    .el-nav.is-open {
        display: flex;
        max-height: 200px; /* Adjust as needed */
    }

    .el-nav-list {
        flex-direction: column;
        gap: var(--3z1-spacing-sm);
    }

    .el-nav-link {
        width: 100%;
        padding: var(--3z1-spacing-xs) 0;
        text-align: center;
    }

    .el-mobile-toggle {
        display: block;
    }
}

/* Hero Section (Editorial Magazine - Full-bleed cover image with bottom-aligned overlay) */
.el-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-end; /* Align content to bottom */
    justify-content: flex-end; /* Align content to right */
    padding-bottom: var(--3z1-spacing-xxxl);
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2)), url('https://dummyimage.com/1200x800/dbeafe/1e293b&text=flat-illustration%20none%202') no-repeat center center / cover;
    color: #595959;
    text-align: right;
}

.el-hero-content {
    max-width: 700px;
    margin-left: auto; /* Aligns content to the right */
    padding-right: var(--3z1-spacing-md);
    padding-left: var(--3z1-spacing-md);
}

.el-hero-content .el-subheading {
    color: var(--3z1-muted);
}

.el-hero-content .el-h1,
.el-hero-content h1 {
    color: #595959;
}

.el-hero-content .el-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: var(--3z1-spacing-lg);
}

/* Buttons */
.el-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--3z1-spacing-xs) var(--3z1-spacing-md);
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--3z1-border-radius-md);
    cursor: pointer;
    transition: all var(--3z1-transition-duration) var(--3z1-transition-timing-function);
    border: 2px solid transparent;
}

.el-button-primary {
    background-color: var(--3z1-primary);
    color: #595959;
}

.el-button-primary:hover {
    background-color: var(--3z1-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.el-button-secondary {
    background-color: var(--3z1-accent);
    color: #595959;
}

.el-button-secondary:hover {
    background-color: #5253e2;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);color:#feebe2}

.el-button-outline {
    background-color: transparent;
    border-color: var(--3z1-primary);
    color: var(--3z1-primary);
}

.el-button-outline:hover {
    background-color: var(--3z1-primary);
    color: #595959;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.el-link {
    display: inline-flex;
    align-items: center;
    gap: var(--3z1-spacing-xs);
    color: var(--3z1-primary);
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
}

.el-link:hover {
    color: var(--3z1-secondary);
    transform: translateY(-2px);
}

.el-link .el-icon {
    width: 20px;
    height: 20px;
    transform: rotate(180deg); /* For RTL */
}

/* Card Components (Editorial Card style) */
.el-card {
    background-color: #fff;
    border-radius: var(--3z1-border-radius-lg);
    padding: var(--3z1-spacing-md);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    transition: transform var(--3z1-transition-duration) var(--3z1-transition-timing-function), box-shadow var(--3z1-transition-duration) var(--3z1-transition-timing-function);
    display: flex;
    flex-direction: column;
    text-align: right;
}

.el-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 5px rgba(0,0,0,0.08);
}

.el-card-feature {
    padding: var(--3z1-spacing-lg);
    text-align: center;
}

.el-card-feature .el-icon-wrapper {
    margin-bottom: var(--3z1-spacing-sm);
}

.el-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--3z1-background);
    border-radius: 50%;
    padding: var(--3z1-spacing-xs);
}

.el-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.el-icon-large {
    width: 48px;
    height: 48px;
    color: var(--3z1-primary);
}

/* Article Card Style (Editorial Magazine specific) */
.el-card-article {
    background-color: #fff;
    border-radius: var(--3z1-border-radius-lg);
    overflow: hidden;
    transition: transform var(--3z1-transition-duration) var(--3z1-transition-timing-function);
    text-align: right;
}

.el-card-article:hover {
    transform: translateY(-4px);
    cursor: pointer;
}

.el-card-article .el-article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: var(--3z1-border-radius-lg);
    border-top-right-radius: var(--3z1-border-radius-lg);
}

.el-card-article .el-article-content {
    padding: var(--3z1-spacing-md);
}

.el-card-article .el-category-tag {
    display: inline-block;
    background-color: var(--3z1-primary);
    color: #595959;
    padding: var(--3z1-spacing-xs) var(--3z1-spacing-sm);
    border-radius: var(--3z1-border-radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--3z1-spacing-xs);
    transition: background-color var(--3z1-transition-duration) var(--3z1-transition-timing-function);
}

.el-card-article:hover .el-category-tag {
    background-color: var(--3z1-secondary);
}

.el-card-article .el-article-headline {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.3;
    color: var(--3z1-text);
    margin-bottom: var(--3z1-spacing-xs);
}

.el-card-article .el-article-deck {
    font-size: 0.9375rem;
    color: var(--3z1-dark-gray);
    margin-bottom: var(--3z1-spacing-sm);
}

.el-card-article .el-article-byline {
    font-size: 0.8125rem;
    color: var(--3z1-dark-gray);
}

/* Editorial Moments */
.el-pullquote {
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.35;
    color: var(--3z1-text);
    margin: var(--3z1-spacing-xxxl) auto;
    max-width: 800px;
    text-align: center;
    position: relative;
    padding: 0 var(--3z1-spacing-lg);
}

.el-pullquote::before {
    content: '“';
    font-family: 'Merriweather', serif;
    font-size: 8rem;
    color: var(--3z1-primary);
    position: absolute;
    top: -40px;
    right: var(--3z1-spacing-md);
    line-height: 1;
    opacity: 0.2;
    z-index: 0;
}

.el-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--3z1-spacing-md);
    text-align: center;
    margin-top: var(--3z1-spacing-xl);
}

.el-stat-item {
    background-color: var(--3z1-background);
    padding: var(--3z1-spacing-lg);
    border-radius: var(--3z1-border-radius-lg);
    border: 1px solid var(--3z1-border-color);
}

.el-stat-number {
    font-family: 'Work Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem); /* 40px to 72px */
    font-weight: 800;
    color: var(--3z1-primary);
    line-height: 1;
    margin-bottom: var(--3z1-spacing-xs);
}

.el-stat-label {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--3z1-dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonials */
.el-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--3z1-spacing-md);
}

.el-testimonial-card {
    background-color: #fff;
    padding: var(--3z1-spacing-lg);
    border-radius: var(--3z1-border-radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
    text-align: right;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 220px;
}

.el-testimonial-card::before {
  content: '“';
  font-family: 'Merriweather', serif;
  font-size: 4rem;
  color: var(--3z1-muted);
  position: absolute;
  top: 10px;
  right: 15px;
  line-height: 1;
  opacity: 0.3;
  z-index: 0;
}

.el-testimonial-quote {
    font-style: italic;
    color: var(--3z1-text);
    margin-bottom: var(--3z1-spacing-sm);
    z-index: 1;
    position: relative;
    font-size: 1.125rem;
    flex-grow: 1;
}

.el-testimonial-cite {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: var(--3z1-primary);
    z-index: 1;
}

.el-testimonial-cite span {
    display: block;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--3z1-dark-gray);
}

.el-testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--3z1-spacing-xs);
    justify-content: flex-end; /* Align stars to the right for RTL */
}

.el-testimonial-stars .el-icon {
    width: 18px;
    height: 18px;
    color: var(--3z1-muted);
    fill: var(--3z1-muted); /* For star fill */
}

/* FAQ Section */
.el-faq {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
}

.el-faq-item {
    background-color: #fff;
    border-radius: var(--3z1-border-radius-md);
    margin-bottom: var(--3z1-spacing-sm);
    border: 1px solid var(--3z1-border-color);
    overflow: hidden;
    text-align: right;
}

.el-faq-q {
    padding: var(--3z1-spacing-sm) var(--3z1-spacing-md);
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    color: var(--3z1-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--3z1-transition-duration) var(--3z1-transition-timing-function);
}

.el-faq-q:hover {
    background-color: var(--3z1-light-gray);
}

.el-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--3z1-primary);
    transition: transform var(--3z1-transition-duration) var(--3z1-transition-timing-function);
}

.el-faq-item.active .el-faq-q::after {
    content: '-';
    transform: rotate(0deg);
}

.el-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 var(--3z1-spacing-md);
    color: var(--3z1-dark-gray);
    line-height: 1.7;
}

.el-faq-item.active .el-faq-a {
    max-height: 500px; /* Sufficiently large to reveal content */
    padding-top: var(--3z1-spacing-xs);
    padding-bottom: var(--3z1-spacing-md);
}

/* Call to Action */
.el-cta {
    background-color: var(--3z1-primary);
    color: #595959;
    padding: var(--3z1-spacing-xxxl) 0;
    text-align: center;
    border-radius: var(--3z1-border-radius-lg);
}

.el-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.el-cta h2 {
    color: #595959;
    margin-bottom: var(--3z1-spacing-md);
}

.el-cta p {
    font-size: 1.125rem;
    margin-bottom: var(--3z1-spacing-lg);
    opacity: 0.9;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

/* Form Styling */
.el-contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--3z1-spacing-sm);
    max-width: 500px;
    margin-left: auto; /* Align form to the right */
    text-align: right;
}

.el-form-group {
    margin-bottom: var(--3z1-spacing-xs);
}

.el-form-label {
    display: block;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    color: var(--3z1-text);
    margin-bottom: 6px;
}

.el-form-input,
.el-form-textarea {
    width: 100%;
    padding: var(--3z1-spacing-xs) var(--3z1-spacing-sm);
    border: 1px solid var(--3z1-border-color);
    border-radius: var(--3z1-border-radius-sm);
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    color: var(--3z1-text);
    background-color: #fff;
    transition: border-color var(--3z1-transition-duration) var(--3z1-transition-timing-function), box-shadow var(--3z1-transition-duration) var(--3z1-transition-timing-function);
}

.el-form-input:focus,
.el-form-textarea:focus {
    outline: none;
    border-color: var(--3z1-primary);
    box-shadow: 0 0 0 3px rgba(var(--3z1-primary-rgb), 0.2);
}

.el-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.el-form-error {
    color: #a40e0e;
    font-size: 0.875rem;
    margin-top: 4px;
}

.el-form-success {
    color: #157a3a;
    font-size: 1rem;
    background-color: #ecfdf5;
    padding: var(--3z1-spacing-sm);
    border-radius: var(--3z1-border-radius-sm);
    text-align: center;
    display: none;
}

/* Footer */
.el-footer {
    background-color: var(--3z1-text);
    color: #595959;
    padding-top: var(--3z1-spacing-xxxl);
    padding-bottom: var(--3z1-spacing-md);
    text-align: right;
}

.el-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--3z1-spacing-lg);
    margin-bottom: var(--3z1-spacing-xxl);
}

.el-footer-col h4 {
    color: #595959;
    margin-bottom: var(--3z1-spacing-sm);
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
}

.el-footer-col p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    max-width: 40ch;
}

.el-footer-list li {
    margin-bottom: 8px;
}

.el-footer-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    transition: color var(--3z1-transition-duration) var(--3z1-transition-timing-function), transform var(--3z1-transition-duration) var(--3z1-transition-timing-function);
    display: inline-block;
}

.el-footer-link:hover {
    color: var(--3z1-primary);
    transform: translateX(-4px); /* For RTL */
}

.el-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--3z1-spacing-md);
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.el-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.el-animate.is-visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Editorial Magazine Specific Styles */
.el-dropcap::first-letter {
    float: right;
    font-family: 'Merriweather', serif;
    font-size: 4em;
    line-height: 0.8;
    margin-top: 0.1em;
    margin-left: 0.1em;
    margin-right: 0.1em; /* For RTL adjust */
    color: var(--3z1-primary);
    font-weight: bold;
}

.el-category-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--3z1-spacing-md);
}

.el-section-bg-muted {
    background-color: var(--3z1-muted);
    padding-top: var(--3z1-spacing-xxxl);
    padding-bottom: var(--3z1-spacing-xxxl);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .el-h1, h1 {
        font-size: clamp(2.25rem, 4.5vw, 4rem);
    }

    .el-h2, h2 {
        font-size: clamp(1.75rem, 3vw, 2.75rem);
    }

    .el-section {
        padding-top: var(--3z1-spacing-xxl);
        padding-bottom: var(--3z1-spacing-xxl);
    }

    .el-hero {
        min-height: 70vh;
    }

    .el-footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .el-container {
        padding-left: var(--3z1-spacing-sm);
        padding-right: var(--3z1-spacing-sm);
    }

    .el-h1, h1 {
        font-size: clamp(2rem, 6vw, 3rem);
        line-height: 1.1;
    }

    .el-h2, h2 {
        font-size: clamp(1.5rem, 4.5vw, 2.25rem);
    }

    body {
        font-size: 1rem; /* 16px */
    }

    .el-hero {
        min-height: 60vh;
        padding-bottom: var(--3z1-spacing-xxl);
    }

    .el-hero-content {
        text-align: center;
        margin-right: auto;
    }

    .el-pullquote {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin: var(--3z1-spacing-xxl) auto;
    }

    .el-pullquote::before {
        font-size: 6rem;
        top: -30px;
        right: 50%;
        transform: translateX(50%);
    }

    .el-stat-number {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .el-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .el-footer-col p, .el-footer-list, .el-footer-link {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .el-footer-col h4 {
        text-align: center;
    }

    .el-testimonial-card::before {
      right: 50%;
      transform: translateX(50%);
    }

    .el-testimonial-stars {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .el-section {
        padding-top: var(--3z1-spacing-xl);
        padding-bottom: var(--3z1-spacing-xl);
    }

    .el-hero {
        min-height: 50vh;
        padding-bottom: var(--3z1-spacing-xl);
    }

    .el-hero-content .el-hero-subtitle {
        font-size: 1rem;
    }

    .el-button {
        padding: var(--3z1-spacing-xs) var(--3z1-spacing-md);
        font-size: 0.9375rem;
    }

    .el-card-article .el-article-image {
        height: 150px;
    }

    .el-card-article .el-article-headline {
        font-size: 1.125rem;
    }
}


/* === Quality polish === */
button, [class*="btn"], [class*="cta"] { transition: all 0.3s ease; cursor: pointer; }
button:hover, [class*="btn"]:hover, [class*="cta"]:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); filter: brightness(1.05); }

img { max-width: 100%; height: auto; display: block; }

/* FAQ collapsed-by-default — hard fallback (any language, any topic) */
.el-faq-a, [class*="faq-a"], [class*="faq-answer"] { display: none !important; max-height: 0; overflow: hidden; padding: 0 22px; transition: none; }
.el-faq-item.active .el-faq-a, [class*="faq-item"].active [class*="faq-a"], [class*="faq-item"].active [class*="faq-answer"] { display: block !important; max-height: none !important; padding: 0 22px 18px; }
.el-faq-q, [class*="faq-q"], [class*="faq-question"] { cursor: pointer; user-select: none; }
.el-faq-q *, [class*="faq-q"] * { pointer-events: none; }

/* === PREMIUM SCAFFOLD (class-contract baseline) === */
/* Layout */
.el-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.el-section { padding: 96px 0; background: #fffbeb; }
.el-section-alt { padding: 96px 0; background: color-mix(in srgb, #b45309 4%, #fffbeb); }
.el-grid { display: grid; gap: 32px; }
.el-grid-2 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.el-grid-3 { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.el-grid-4 { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.el-text-center { text-align: center; }
/* Header / Nav */
.el-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.94); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid color-mix(in srgb, #451a03 8%, transparent); }
.el-header > .el-container, .el-header .el-container { display: flex; align-items: center; gap: 32px; padding-top: 12px; padding-bottom: 12px; min-height: 64px; }
.el-brand, .el-logo { display: inline-flex; align-items: center; gap: 10px; font-family: Work Sans; font-weight: 700; font-size: 1.05rem; line-height: 1; color: #b45309; letter-spacing: -0.015em; text-decoration: none; flex-shrink: 0; max-width: 220px; margin-right: 24px; }
.el-brand-mark { display: inline-flex; color: #b45309; flex-shrink: 0; }
.el-brand-mark svg { display: block; width: 24px; height: 24px; }
.el-brand-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-left: 2px; }
.el-nav-list, .el-nav-links { display: flex; gap: 28px; list-style: none; margin: 0 0 0 auto; padding: 0; align-items: center; }
.el-nav-link { color: #451a03; font-weight: 500; font-size: 0.95rem; padding: 6px 0; position: relative; text-decoration: none; }
.el-nav-link + .el-nav-link { margin-left: 0; }
.el-nav-link:hover { color: #b45309; }
.el-mobile-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; margin-left: auto; font-size: 1.4rem; line-height: 1; }
/* Hero */
.el-hero { padding: 112px 0 96px; background: radial-gradient(circle at 82% 18%, color-mix(in srgb, #b45309 12%, transparent), transparent 34%), linear-gradient(180deg, color-mix(in srgb, #b45309 7%, #fffbeb) 0%, #fffbeb 100%); position: relative; overflow: hidden; }
/* Hero hardening — kill AI-generated giant ghost/background text & accidental absolute-positioned mockups */
.el-hero [class*="ghost"], .el-hero [class*="bg-text"], .el-hero [class*="watermark"], .el-hero [class*="hero-bg"], .el-hero [aria-hidden="true"][class*="text"], .el-hero [data-decorative="true"] { display: none !important; }
.el-hero .el-hero-image, .el-hero .el-dashboard-mockup { position: relative !important; }
.el-hero .el-hero-image { max-width: 100%; }
.el-hero .el-hero-image > * { max-width: 100%; }
.el-hero .el-stats { position: static !important; }
.el-hero > .el-container { max-width: 1200px; }
.el-hero h1, .el-hero .el-h1 { font-family: Work Sans; font-size: clamp(2.75rem, 5.2vw, 4.75rem); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; color: #451a03; margin: 0; max-width: 720px; width: 100%; text-wrap: balance; word-break: normal; overflow-wrap: break-word; hyphens: none; }
.el-hero p, .el-hero .el-hero-sub, .el-hero .el-hero-subtitle { font-size: clamp(1.125rem, 1.5vw, 1.3rem); line-height: 1.7; color: #fcd34d; max-width: 48ch; margin: 0; }
.el-hero-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr); gap: 72px; align-items: center; }
.el-hero-text { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.el-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.el-hero-image { position: relative; }
.el-hero-image::before { content: ''; position: absolute; inset: 22px -18px -18px 22px; border-radius: 24px; background: color-mix(in srgb, #b45309 12%, transparent); z-index: 0; }
.el-hero-image img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; box-shadow: 0 36px 90px -34px rgba(0,0,0,0.42), 0 2px 10px rgba(0,0,0,0.08); }
.el-hero-subtitle { font-size: 1.25rem; line-height: 1.6; color: #fcd34d; max-width: 60ch; }
.el-h1 { font-family: Work Sans; font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; color: #451a03; margin: 0; }
.el-h2 { font-family: Work Sans; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -0.015em; font-weight: 700; color: #451a03; margin: 0 0 24px; }
.el-h3 { font-family: Work Sans; font-size: 1.5rem; line-height: 1.3; font-weight: 700; color: #451a03; margin: 0 0 12px; }
.el-subheading { font-size: 1.125rem; line-height: 1.7; color: #fcd34d; max-width: 720px; margin: 0 auto 64px; }
/* Buttons */
.el-button { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: all 0.25s cubic-bezier(0.4,0,0.2,1); white-space: nowrap; line-height: 1; }
.el-button-primary { background: #b45309; color: #fff; border-color: #b45309; }
.el-button-primary:hover { background: #92400e; border-color: #92400e; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -8px color-mix(in srgb, #b45309 50%, transparent); }
.el-button-secondary { background: #92400e; color: #fff; border-color: #92400e; }
.el-button-secondary:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff; }
.el-button-outline { background: transparent; color: #b45309; border-color: #b45309; }
.el-button-outline:hover { background: #b45309; color: #fff; }
.el-link { color: #b45309; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.el-link:hover { gap: 10px; }
/* Cards */
.el-card { background: #fff; border: 1px solid color-mix(in srgb, #451a03 6%, transparent); border-radius: 14px; padding: 32px; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06); display: flex; flex-direction: column; gap: 16px; }
.el-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06); }
.el-card-feature, .el-card-service, .el-card-process { text-align: left; }
/* Icons */
.el-icon-wrapper { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 12px; background: color-mix(in srgb, #b45309 10%, transparent); color: #b45309; }
.el-icon-wrapper svg, .el-icon-wrapper .el-icon { width: 28px; height: 28px; stroke: #b45309; }
.el-icon { width: 20px; height: 20px; stroke: currentColor; flex-shrink: 0; }
.el-icon-large { width: 48px; height: 48px; stroke: #b45309; }
/* Check list */
.el-check-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.el-check-item { display: flex; align-items: flex-start; gap: 12px; line-height: 1.6; }
.el-check-item .el-icon { color: #b45309; margin-top: 4px; }
/* Editorial */
.el-pullquote { font-family: Work Sans; font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.4; color: #451a03; max-width: 900px; margin: 64px auto; padding: 0 32px; position: relative; text-align: center; }
.el-pullquote::before { content: '"'; font-size: 6rem; line-height: 0.8; color: #b45309; opacity: 0.3; position: absolute; left: 0; top: -16px; }
.el-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 48px; padding: 64px 0; }
.el-stat-item { text-align: center; }
.el-stat-number { display: block; font-family: Work Sans; font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; color: #b45309; line-height: 1; letter-spacing: -0.03em; }
.el-stat-label { display: block; margin-top: 12px; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #fcd34d; }
/* Testimonials */
.el-testimonial-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.el-testimonial-card { background: #fff; padding: 32px; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); border: 1px solid color-mix(in srgb, #451a03 6%, transparent); }
.el-testimonial-quote { font-style: italic; line-height: 1.7; color: #451a03; margin-bottom: 16px; }
.el-testimonial-cite { font-weight: 600; color: #b45309; font-size: 0.95rem; }
.el-testimonial-stars { color: #6366f1; margin-bottom: 12px; }
/* FAQ */
.el-faq { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.el-faq-item { background: #fff; border: 1px solid color-mix(in srgb, #451a03 8%, transparent); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s ease; }
.el-faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.el-faq-q { padding: 20px 24px; cursor: pointer; user-select: none; font-weight: 600; color: #451a03; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.el-faq-q::after { content: '+'; font-size: 1.5rem; color: #b45309; transition: transform 0.3s ease; flex-shrink: 0; }
.el-faq-item.active .el-faq-q::after { transform: rotate(45deg); }
/* CTA */
.el-cta { padding: 96px 0; background: linear-gradient(135deg, #b45309 0%, #92400e 100%); color: #fff; text-align: center; }
.el-cta .el-h2, .el-cta h2 { color: #fff; }
.el-cta-content { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; align-items: center; }
.el-cta .el-button-primary { background: #fff; color: #b45309; border-color: #fff; }
.el-cta .el-button-primary:hover { background: #fffbeb; color: #b45309; }
/* Form */
.el-form, .el-contact-form { display: flex; flex-direction: column; gap: 20px; width: min(100%, 680px); margin: 32px auto 0; background: #fff; padding: 44px; border-radius: 24px; border: 1px solid color-mix(in srgb, #451a03 7%, transparent); box-shadow: 0 30px 80px -34px rgba(0,0,0,0.32), 0 10px 28px -18px color-mix(in srgb, #b45309 40%, transparent); text-align: left; color: #451a03; }
.el-form-row { display: grid; gap: 20px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .el-form-row { grid-template-columns: 1fr; } }
.el-form-group { display: flex; flex-direction: column; gap: 8px; }
.el-form-label, .el-form label { font-weight: 600; font-size: 0.9rem; color: #451a03; letter-spacing: 0.01em; }
.el-form-input, .el-form-textarea, .el-form input:not([type="submit"]), .el-form textarea, .el-form select { padding: 15px 16px; border: 1.5px solid color-mix(in srgb, #451a03 12%, transparent); border-radius: 12px; font-size: 1rem; font-family: inherit; background: color-mix(in srgb, #b45309 2%, #fff); color: #451a03; transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; width: 100%; box-sizing: border-box; }
.el-form-input:hover, .el-form-textarea:hover { border-color: color-mix(in srgb, #b45309 35%, transparent); }
.el-form-input:focus, .el-form-textarea:focus, .el-form input:focus, .el-form textarea:focus { outline: none; border-color: #b45309; box-shadow: 0 0 0 4px color-mix(in srgb, #b45309 18%, transparent); }
.el-form-textarea, .el-form textarea { min-height: 140px; resize: vertical; }
/* Form messages — HIDDEN BY DEFAULT, only shown when JS adds .is-visible or removes [hidden] */
.el-form-error, [class*="form-error"], [class*="form-message-error"] { display: none; color: #dc2626; font-size: 0.875rem; padding: 10px 12px; background: color-mix(in srgb, #dc2626 8%, transparent); border-radius: 8px; }
.el-form-success, [class*="form-success"], [class*="form-message-success"] { display: none; color: #047857; font-weight: 600; padding: 12px 14px; background: color-mix(in srgb, #059669 10%, transparent); border-radius: 8px; }
.el-form-error[hidden], .el-form-success[hidden], [class*="form-error"][hidden], [class*="form-success"][hidden] { display: none !important; }
.el-form-error.is-visible, .el-form-success.is-visible { display: block; }
.el-cta .el-form, .el-cta .el-contact-form { color: #451a03; }
.el-cta .el-form button[type="submit"], .el-cta .el-contact-form button[type="submit"] { background: #b45309; color: #fff; border-color: #b45309; }
/* Footer */
.el-footer { background: #451a03; color: color-mix(in srgb, #fff 80%, transparent); padding: 96px 0 32px; }
.el-footer .el-h3, .el-footer h3, .el-footer h4 { color: #fff; font-family: Work Sans; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.el-footer .el-logo { color: #fff; }
.el-footer-grid { display: grid; gap: 48px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 64px; }
.el-footer-col { display: flex; flex-direction: column; gap: 12px; }
.el-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.el-footer-link { color: color-mix(in srgb, #fff 70%, transparent); font-size: 0.95rem; }
.el-footer-link:hover { color: #fff; }
.el-footer-bottom { padding-top: 32px; border-top: 1px solid color-mix(in srgb, #fff 12%, transparent); font-size: 0.875rem; color: color-mix(in srgb, #fff 60%, transparent); text-align: center; }
.el-social-links { display: flex; gap: 16px; }
.el-social-links a { color: color-mix(in srgb, #fff 70%, transparent); }
.el-social-links a:hover { color: #fff; }
/* Responsive */
@media (max-width: 900px) {
  .el-hero { padding: 80px 0 64px; }
  .el-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .el-section, .el-section-alt { padding: 64px 0; }
  .el-cta { padding: 64px 0; }
  .el-footer { padding: 64px 0 24px; }
}
@media (max-width: 720px) {
  .el-nav-list { display: none; }
  .el-mobile-toggle { display: inline-flex; }
  .el-nav.active .el-nav-list, .el-header.active .el-nav-list, .el-nav-list.active, .el-nav-links.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 24px; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .el-card { padding: 24px; }
  .el-form, .el-contact-form { padding: 28px; border-radius: 18px; }
}

/* === STYLE FAMILY: editorial_magazine === */
.el-hero { padding: 0; min-height: 70vh; position: relative; background-size: cover; background-position: center; }
.el-hero-content { position: absolute; inset: auto 0 0 0; padding: 64px 24px; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7)); color: #fff; }
.el-h1 { font-family: 'Merriweather', Georgia, serif; font-weight: 700; }
.el-card { border-radius: 4px; box-shadow: none; border-top: 4px solid #b45309; }
.el-card img, .el-card-feature img { border-radius: 4px 4px 0 0; }
.el-button-primary { background: #111; color: #fff; border-radius: 0; }
.el-section-alt { background: color-mix(in srgb, #b45309 6%, #fffbeb); }