/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
*,::before,::after{box-sizing:border-box}html{-moz-tab-size:4;-o-tab-size:4;tab-size:4}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{height:0;color:inherit}abbr[title]{text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{border-color:#FF0000}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item} 

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;600&display=swap');

:root {
    --ats-primary: #0891b2;
    --ats-secondary: #0e7490;
    --ats-accent: #a855f7;
    --ats-background: #ecfeff;
    --ats-text: #164e63;
    --ats-muted: #67e8f9;
    --ats-light-grey: #f0f4f8;
    --ats-dark-grey: #334155;
    --ats-white: #ffffff;

    --ats-font-heading: 'Montserrat', sans-serif;
    --ats-font-body: 'Open Sans', sans-serif;

    --ats-spacing-xxs: 4px;
    --ats-spacing-xs: 8px;
    --ats-spacing-sm: 16px;
    --ats-spacing-md: 24px;
    --ats-spacing-lg: 32px;
    --ats-spacing-xl: 48px;
    --ats-spacing-xxl: 64px;
    --ats-spacing-section-desktop: 96px;
    --ats-spacing-section-mobile: 64px;

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

    --ats-shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.1);
    --ats-shadow-md: 0 4px 6px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --ats-shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --ats-shadow-card: 0 4px 20px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ats-font-body);
    color: var(--ats-text);
    line-height: 1.75;
    background-color: var(--ats-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--ats-primary);
    color: var(--ats-white);
}

/* Typography */
h1, .el-h1,
h2, .el-h2,
h3, .el-h3,
h4, .el-h4,
h5, .el-h5,
h6, .el-h6 {
    font-family: var(--ats-font-heading);
    color: var(--ats-dark-grey);
    margin-top: 0;
    margin-bottom: var(--ats-spacing-md);
    line-height: 1.15;
}

h1, .el-h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--ats-secondary);
}
h1 em { font-style: italic; color: var(--ats-accent); }

h2, .el-h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--ats-secondary);
}

h3, .el-h3 {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: var(--ats-spacing-lg);
}

h4, .el-h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--ats-spacing-sm);
}

p {
    margin-bottom: var(--ats-spacing-md);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 65ch;
}

.el-subheading {
    font-size: 1.25rem;
    font-family: var(--ats-font-heading);
    font-weight: 500;
    color: var(--ats-primary);
    margin-bottom: var(--ats-spacing-lg);
}

a {
    color: var(--ats-primary);
    text-decoration: none;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
    color: var(--ats-secondary);
}

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

/* Layout */
.el-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--ats-spacing-md);
}

.el-section {
    padding: var(--ats-spacing-section-desktop) 0;
    position: relative;
}

.el-section-alt {
    background-color: var(--ats-white);
    padding: var(--ats-spacing-section-desktop) 0;
}

.el-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--ats-spacing-lg);
}

.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(200px, 1fr));
}

@media (min-width: 768px) {
    .el-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .el-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .el-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.el-flex {
    display: flex;
    align-items: center;
    gap: var(--ats-spacing-md);
}

/* Header & Nav */
.el-header {
    background-color: var(--ats-background);
    padding: var(--ats-spacing-sm) 0;
    border-bottom: 1px solid var(--ats-light-grey);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.el-logo {
    font-family: var(--ats-font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--ats-secondary);
    text-decoration: none;
    letter-spacing: -0.03em;
}
.el-logo span { color: var(--ats-primary); }

.el-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--ats-spacing-lg);
}

.el-nav-link {
    font-family: var(--ats-font-heading);
    font-weight: 600;
    color: var(--ats-dark-grey);
    text-decoration: none;
    padding: var(--ats-spacing-xs) 0;
    position: relative;
}

.el-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--ats-primary);
    transition: width 0.3s ease;
}

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

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

@media (max-width: 1024px) {
    .el-nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--ats-background);
        border-top: 1px solid var(--ats-light-grey);
        padding: var(--ats-spacing-md) 0;
        box-shadow: var(--ats-shadow-md);
    }

    .el-nav-list.active {
        display: flex;
    }

    .el-nav-item {
        text-align: center;
        padding: var(--ats-spacing-sm) 0;
    }

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

/* Hero */
.el-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: var(--ats-spacing-section-desktop) 0;
    background: linear-gradient(135deg, var(--ats-background) 0%, var(--ats-muted) 100%);
}

.el-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 10% 20%, rgba(8,145,178,0.1) 0%, rgba(168,85,247,0.05) 50%, transparent 70%);
    animation: heroBackgroundPulse 15s infinite alternate;
    z-index: 0;
}

@keyframes heroBackgroundPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 1; }
}

.el-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.el-hero-text h1 {
    color: var(--ats-secondary);
    margin-bottom: var(--ats-spacing-md);
}

.el-hero-subtitle {
    font-size: 1.4rem;
    color: var(--ats-dark-grey);
    margin-bottom: var(--ats-spacing-lg);
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.el-hero-action .el-button {
    margin: var(--ats-spacing-sm);
}

/* Buttons */
.el-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--ats-spacing-sm) var(--ats-spacing-lg);
    border-radius: var(--ats-border-radius-md);
    font-family: var(--ats-font-heading);
    font-weight: 600;
    font-size: 1.0rem;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.el-button-primary {
    background-color: var(--ats-primary);
    color: var(--ats-white);
    box-shadow: var(--ats-shadow-md);
}

.el-button-primary:hover {
    background-color: var(--ats-secondary);
    box-shadow: var(--ats-shadow-lg);
    transform: translateY(-2px);
}

.el-button-secondary {
    background-color: var(--ats-accent);
    color: var(--ats-white);
    box-shadow: var(--ats-shadow-md);
}

.el-button-secondary:hover {
    background-color: #8b3ab0;
    box-shadow: var(--ats-shadow-lg);
    transform: translateY(-2px);color:#bce2f0}

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

.el-button-outline:hover {
    background-color: var(--ats-primary);
    color: var(--ats-white);
    transform: translateY(-2px);
}

.el-link {
    position: relative;
    display: inline-block;
    font-weight: 600;
    color: var(--ats-primary);
    text-decoration: none;
}

.el-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: var(--ats-primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.el-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Cards & Media */
.el-card {
    background-color: var(--ats-white);
    border-radius: var(--ats-border-radius-lg);
    box-shadow: var(--ats-shadow-card);
    padding: var(--ats-spacing-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.el-card-feature,
.el-card-service,
.el-card-process {
    padding: var(--ats-spacing-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.el-icon-wrapper {
    width: var(--ats-spacing-xxl);
    height: var(--ats-spacing-xxl);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(var(--ats-primary-rgb), 0.1);
    margin-bottom: var(--ats-spacing-md);
}
.el-icon-wrapper .el-icon {
    color: var(--ats-primary);
    width: 32px;
    height: 32px;
}

.el-icon-large {
    width: 48px;
    height: 48px;
    color: var(--ats-primary);
    margin-bottom: var(--ats-spacing-md);
}

.el-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--ats-spacing-sm);
}

.el-check-item {
    display: flex;
    align-items: flex-start;
    gap: var(--ats-spacing-xs);
    font-size: 1.0625rem;
    line-height: 1.6;
}
.el-check-item .el-icon {
    width: 20px;
    height: 20px;
    color: var(--ats-primary);
    flex-shrink: 0;
    margin-top: 4px; /* Align icon with text */
}

/* Editorial Moments */
.el-pullquote {
    font-family: var(--ats-font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.3;
    color: var(--ats-secondary);
    text-align: center;
    margin: var(--ats-spacing-xxl) auto;
    max-width: 800px;
    position: relative;
    padding: 0 var(--ats-spacing-md);
}

.el-pullquote::before {
    content: '“';
    font-size: 8rem;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--ats-muted);
    opacity: 0.5;
    z-index: 0;
    line-height: 1;
    font-family: serif;
}

.el-pullquote p {
    position: relative;
    z-index: 1;
    font-size: inherit;
    max-width: none;
    margin: 0;
}

.el-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--ats-spacing-lg);
    text-align: center;
    margin-top: var(--ats-spacing-lg);
}

.el-stat-item {
    background-color: var(--ats-white);
    padding: var(--ats-spacing-lg);
    border-radius: var(--ats-border-radius-md);
    box-shadow: var(--ats-shadow-sm);
}

.el-stat-number {
    font-family: var(--ats-font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--ats-primary);
    line-height: 1;
    margin-bottom: var(--ats-spacing-xs);
}

.el-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ats-dark-grey);
}

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

.el-testimonial-card {
    background-color: var(--ats-white);
    border-radius: var(--ats-border-radius-lg);
    box-shadow: var(--ats-shadow-card);
    padding: var(--ats-spacing-xl);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.el-testimonial-quote {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: var(--ats-spacing-md);
    color: var(--ats-text);
}

.el-testimonial-cite {
    display: flex;
    align-items: center;
    gap: var(--ats-spacing-sm);
    margin-top: var(--ats-spacing-md);
    font-weight: 600;
}

.el-testimonial-cite img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--ats-primary);
}

.el-testimonial-cite span {
    display: block;
    color: var(--ats-dark-grey);
}

.el-testimonial-cite small {
    font-size: 0.9rem;
    color: var(--ats-muted);
    display: block;
}

.el-testimonial-stars {
    color: gold;
    display: flex;
    gap: 4px;
    margin-bottom: var(--ats-spacing-sm);
}
.el-testimonial-stars .el-icon {
    width: 18px;
    height: 18px;
    fill: gold;
    stroke: none;
}

/* FAQ */
.el-faq-item {
    background-color: var(--ats-white);
    border-radius: var(--ats-border-radius-md);
    box-shadow: var(--ats-shadow-sm);
    margin-bottom: var(--ats-spacing-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.el-faq-q {
    padding: var(--ats-spacing-md) var(--ats-spacing-lg);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--ats-secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--ats-light-grey);
    transition: background-color 0.3s ease;
}

.el-faq-q:hover {
    background-color: var(--ats-muted);
}

.el-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.el-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 var(--ats-spacing-lg);
    color: var(--ats-text);
}

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

.el-faq-a p {
    margin-top: var(--ats-spacing-sm);
    margin-bottom: 0;
    font-size: 1rem;
}

/* CTA */
.el-cta {
    background-color: var(--ats-primary);
    color: var(--ats-white);
    padding: var(--ats-spacing-xxl) 0;
    text-align: center;
    background-image: linear-gradient(to right, var(--ats-primary), var(--ats-secondary));
}

.el-cta-content h2 {
    color: var(--ats-white);
    margin-bottom: var(--ats-spacing-md);
}

.el-cta-content p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto var(--ats-spacing-lg) auto;
    color: var(--ats-white);
    opacity: 0.9;
}

/* Forms */
.el-contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--ats-white);
    padding: var(--ats-spacing-xl);
    border-radius: var(--ats-border-radius-lg);
    box-shadow: var(--ats-shadow-lg);
}

.el-form-group {
    margin-bottom: var(--ats-spacing-md);
}

.el-form-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--ats-spacing-xs);
    color: var(--ats-dark-grey);
}

.el-form-input,
.el-form-textarea {
    width: 100%;
    padding: var(--ats-spacing-sm);
    border: 1px solid var(--ats-light-grey);
    border-radius: var(--ats-border-radius-sm);
    font-family: var(--ats-font-body);
    font-size: 1rem;
    color: var(--ats-text);
    background-color: var(--ats-background);
    transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.el-form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: var(--ats-spacing-xs);
    display: block;
}

.el-form-success {
    background-color: #dcfce7;
    color: #117e39;
    padding: var(--ats-spacing-md);
    border-radius: var(--ats-border-radius-sm);
    margin-top: var(--ats-spacing-md);
    text-align: center;
    display: none;
}

/* Footer */
.el-footer {
    background-color: var(--ats-dark-grey);
    color: var(--ats-light-grey);
    padding: var(--ats-spacing-section-desktop) 0 var(--ats-spacing-md) 0;
    font-size: 0.95rem;
}

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

.el-footer-col h4 {
    color: var(--ats-white);
    margin-bottom: var(--ats-spacing-md);
    font-size: 1.1rem;
}

.el-footer-col p {
    color: var(--ats-light-grey);
    margin-bottom: var(--ats-spacing-sm);
    font-size: 0.95rem;
    max-width: none;
}

.el-footer-col a {
    color: var(--ats-muted);
    text-decoration: none;
}

.el-footer-col a:hover {
    color: var(--ats-primary);
}

.el-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.el-footer-list li {
    margin-bottom: var(--ats-spacing-xs);
}

.el-footer-link {
    color: var(--ats-light-grey);
    text-decoration: none;
    position: relative;
}

.el-footer-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--ats-primary);
    transition: width 0.3s ease;
}

.el-footer-link:hover::after {
    width: 100%;
}

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

.el-social-links {
    display: flex;
    gap: var(--ats-spacing-sm);
    justify-content: center;
    margin-top: var(--ats-spacing-md);
}

.el-social-links a {
    color: var(--ats-light-grey);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.el-social-links a:hover {
    color: var(--ats-primary);
}

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

.el-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .el-section {
        padding: var(--ats-spacing-xxl) 0;
    }
    h1, .el-h1 {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
    h2, .el-h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    .el-hero-subtitle {
        font-size: 1.2rem;
    }
    .el-footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .el-section {
        padding: var(--ats-spacing-xxl) 0;
    }
    .el-container {
        padding: 0 var(--ats-spacing-sm);
    }
    h1, .el-h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    h2, .el-h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    p {
        font-size: 1rem;
    }
    .el-button {
        padding: var(--ats-spacing-xs) var(--ats-spacing-md);
        font-size: 0.9rem;
    }
    .el-testimonial-cite img {
        width: 50px;
        height: 50px;
    }
    .el-pullquote {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    .el-pullquote::before {
        font-size: 6rem;
        top: -20px;
    }
    .el-stat-number {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
}

@media (max-width: 480px) {
    .el-section {
        padding: var(--ats-spacing-xxl) 0;
    }
    .el-hero {
        min-height: 60vh;
        padding: var(--ats-spacing-xxl) 0;
    }
    h1, .el-h1 {
        font-size: 2.2rem;
    }
    .el-hero-subtitle {
        font-size: 1rem;
    }
    .el-nav-list.active {
        padding: var(--ats-spacing-sm) 0;
    }
    .el-nav-item {
        padding: var(--ats-spacing-xs) 0;
    }
    .el-grid, .el-grid-2, .el-grid-3, .el-grid-4 {
        grid-template-columns: 1fr;
    }
    .el-cta-content p {
        font-size: 1rem;
    }
    .el-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .el-footer-col h4 {
        margin-top: var(--ats-spacing-lg);
    }
    .el-footer-list {
        align-items: center;
    }
    .el-contact-form {
        padding: var(--ats-spacing-lg);
    }
}

/* === Quality polish === */
.el-card, [class*="el-card"] { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s ease; }
.el-card:hover, [class*="el-card"]:hover { border-color: #0891b2; transform: none; box-shadow: none; }

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); }

@keyframes elFadeInRight { from { opacity:0;transform:translateX(-24px) } to { opacity: 1; transform: none; } }
.el-animate { opacity: 0; }
.el-animate.el-visible { animation: elFadeInRight .7s ease forwards; }

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: #ecfeff; }
.el-section-alt { padding: 96px 0; background: color-mix(in srgb, #0891b2 4%, #ecfeff); }
.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, #164e63 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: Montserrat; font-weight: 700; font-size: 1.05rem; line-height: 1; color: #0891b2; letter-spacing: -0.015em; text-decoration: none; flex-shrink: 0; max-width: 220px; margin-right: 24px; }
.el-brand-mark { display: inline-flex; color: #0891b2; 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: #164e63; 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: #0891b2; }
.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, #0891b2 12%, transparent), transparent 34%), linear-gradient(180deg, color-mix(in srgb, #0891b2 7%, #ecfeff) 0%, #ecfeff 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: Montserrat; font-size: clamp(2.75rem, 5.2vw, 4.75rem); line-height: 1.04; letter-spacing: -0.025em; font-weight: 800; color: #164e63; 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: #67e8f9; 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, #0891b2 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: #67e8f9; max-width: 60ch; }
.el-h1 { font-family: Montserrat; font-size: clamp(2.5rem, 5vw, 4.25rem); line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; color: #164e63; margin: 0; }
.el-h2 { font-family: Montserrat; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; letter-spacing: -0.015em; font-weight: 700; color: #164e63; margin: 0 0 24px; }
.el-h3 { font-family: Montserrat; font-size: 1.5rem; line-height: 1.3; font-weight: 700; color: #164e63; margin: 0 0 12px; }
.el-subheading { font-size: 1.125rem; line-height: 1.7; color: #67e8f9; 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: #0891b2; color: #fff; border-color: #0891b2; }
.el-button-primary:hover { background: #0e7490; border-color: #0e7490; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -8px color-mix(in srgb, #0891b2 50%, transparent); }
.el-button-secondary { background: #0e7490; color: #fff; border-color: #0e7490; }
.el-button-secondary:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff; }
.el-button-outline { background: transparent; color: #0891b2; border-color: #0891b2; }
.el-button-outline:hover { background: #0891b2; color: #fff; }
.el-link { color: #0891b2; 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, #164e63 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, #0891b2 10%, transparent); color: #0891b2; }
.el-icon-wrapper svg, .el-icon-wrapper .el-icon { width: 28px; height: 28px; stroke: #0891b2; }
.el-icon { width: 20px; height: 20px; stroke: currentColor; flex-shrink: 0; }
.el-icon-large { width: 48px; height: 48px; stroke: #0891b2; }
/* 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: #0891b2; margin-top: 4px; }
/* Editorial */
.el-pullquote { font-family: Montserrat; font-style: italic; font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.4; color: #164e63; 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: #0891b2; 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: Montserrat; font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; color: #0891b2; 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: #67e8f9; }
/* 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, #164e63 6%, transparent); }
.el-testimonial-quote { font-style: italic; line-height: 1.7; color: #164e63; margin-bottom: 16px; }
.el-testimonial-cite { font-weight: 600; color: #0891b2; font-size: 0.95rem; }
.el-testimonial-stars { color: #a855f7; 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, #164e63 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: #164e63; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.el-faq-q::after { content: '+'; font-size: 1.5rem; color: #0891b2; 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, #0891b2 0%, #0e7490 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: #0891b2; border-color: #fff; }
.el-cta .el-button-primary:hover { background: #ecfeff; color: #0891b2; }
/* 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, #164e63 7%, transparent); box-shadow: 0 30px 80px -34px rgba(0,0,0,0.32), 0 10px 28px -18px color-mix(in srgb, #0891b2 40%, transparent); text-align: left; color: #164e63; }
.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: #164e63; 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, #164e63 12%, transparent); border-radius: 12px; font-size: 1rem; font-family: inherit; background: color-mix(in srgb, #0891b2 2%, #fff); color: #164e63; 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, #0891b2 35%, transparent); }
.el-form-input:focus, .el-form-textarea:focus, .el-form input:focus, .el-form textarea:focus { outline: none; border-color: #0891b2; box-shadow: 0 0 0 4px color-mix(in srgb, #0891b2 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: #164e63; }
.el-cta .el-form button[type="submit"], .el-cta .el-contact-form button[type="submit"] { background: #0891b2; color: #fff; border-color: #0891b2; }
/* Footer */
.el-footer { background: #164e63; 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: Montserrat; 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: creator_studio === */
.el-hero { padding: 144px 0 96px; }
.el-h1 em, .el-h1 i { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; font-style: italic; }
.el-card { overflow: hidden; border-radius: 8px; box-shadow: none; border: 1px solid rgba(0,0,0,0.06); }
.el-card img { transition: transform 0.6s ease; }
.el-card:hover img { transform: scale(1.06); }
.el-button-primary { background: #111; color: #fff; border-radius: 6px; }