/* Bigevo Ecommerce Template Styles */
/* rem values scaled for 10px root font-size (Tailwind rem × 1.6) */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
    /* Spacing — Tailwind scale × 1.6 */
    --eco-space-2: 0.8rem;
    /*  8px  */
    --eco-space-3: 1.2rem;
    /* 12px  */
    --eco-space-4: 1.6rem;
    /* 16px  */
    --eco-space-5: 2rem;
    /* 20px  */
    --eco-space-6: 2.4rem;
    /* 24px  */
    --eco-space-8: 3.2rem;
    /* 32px  */
    --eco-space-10: 4rem;
    /* 40px  */
    --eco-space-12: 4.8rem;
    /* 48px  */
    --eco-space-16: 6.4rem;
    /* 64px  */
    --eco-space-24: 9.6rem;
    /* 96px  */

    /* Max-widths */
    --eco-max-intro: 76.8rem;
    /* max-w-3xl 768px  */
    --eco-max-text: 57.6rem;
    /* max-w-xl  576px  */
    --eco-max-grid: 115.2rem;
    /* max-w-6xl 1152px */

    /* Font sizes */
    --eco-text-sm: 1.4rem;
    /* 14px */
    --eco-text-base: 1.6rem;
    /* 16px */
    --eco-text-lg: 1.8rem;
    /* 18px */
    --eco-text-xl: 2rem;
    /* 20px */
    --eco-text-4xl: 3.6rem;
    /* 36px */
    --eco-text-5xl: 4.8rem;
    /* 48px */
    --eco-text-7xl: 7.2rem;
    /* 72px */

    /* Icon sizes */
    --eco-icon-sm: 2rem;
    /* 20px — btn arrow */
    --eco-icon-md: 4rem;
    /* 40px — card icon svg */
    --eco-icon-box: 9.6rem;
    /* 96px — icon box */

    /* Border radii */
    --eco-radius-card: 4rem;
    /* 40px — card, icon box */
    --eco-radius-feature: 3.2rem;
    /* 32px — feature box */
    --eco-radius-pill: 9999px;

    /* Colors — Blue theme */
    --eco-blue: #2563eb;
    --eco-blue-light: #dbeafe;
    --eco-blue-dark: #1d4ed8;
    --eco-blue-glow: rgba(37, 99, 235, 0.5);
    --eco-blue-shadow: rgba(37, 99, 235, 0.3);

    /* Colors — Purple theme */
    --eco-purple: #9333ea;
    --eco-purple-light: #f3e8ff;
    --eco-purple-dark: #7e22ce;
    --eco-purple-glow: rgba(147, 51, 234, 0.5);
    --eco-purple-shadow: rgba(147, 51, 234, 0.3);

    /* Colors — Neutral */
    --eco-slate-900: #0f172a;
    --eco-slate-500: #64748b;
    --eco-slate-600: #475569;
    --eco-slate-400: #94a3b8;

    /* Glass card */
    --eco-glass-bg: rgba(255, 255, 255, 0.4);
    --eco-glass-bg-hover: rgba(255, 255, 255, 0.9);
    --eco-glass-border: rgba(255, 255, 255, 0.9);

    /* Feature box */
    --eco-feature-bg: rgba(255, 255, 255, 0.2);
    --eco-feature-bg-hover: rgba(255, 255, 255, 0.5);
    --eco-feature-border: rgba(0, 0, 0, 0.05);

    /* Animation */
    --eco-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   Base
   ============================================================ */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    color: var(--eco-slate-900);
    margin: 0;
    overflow-x: hidden;
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
    margin-top: 0;
}

/* ============================================================
   Page Wrapper
   ============================================================ */
.eco-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: var(--eco-space-6);
}

/* ============================================================
   Background Elements
   ============================================================ */
.eco-bg__gateway {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('https://img.magnific.com/free-photo/vivid-blurred-colorful-wallpaper-background_58702-3933.jpg');
    background-size: cover;
    background-position: center;
}

.eco-bg__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.eco-bg__blob {
    position: fixed;
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
    animation: eco-float 20s infinite alternate ease-in-out;
}

.eco-bg__blob--purple {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    animation-delay: -10s;
    background: radial-gradient(circle, var(--eco-purple-glow) 0%, transparent 70%);
}

@keyframes eco-float {
    from {
        transform: translate(-10%, -10%);
    }

    to {
        transform: translate(20%, 20%);
    }
}

/* ============================================================
   Logo
   ============================================================ */
.eco-logo {
    margin-bottom: var(--eco-space-16);
}

.eco-logo__img {
    height: var(--eco-space-10);
    width: auto;
}

/* ============================================================
   Intro Section
   ============================================================ */
.eco-intro {
    text-align: center;
    margin-bottom: var(--eco-space-16);
    max-width: var(--eco-max-intro);
}

.eco-intro__heading {
    font-size: var(--eco-text-5xl);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--eco-slate-900);
    margin-bottom: var(--eco-space-8);
    line-height: 1.25;
}

.eco-intro__heading-accent {
    background: linear-gradient(to right, var(--eco-blue), var(--eco-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.eco-intro__text {
    color: var(--eco-slate-500);
    font-weight: 500;
    font-size: var(--eco-text-lg);
    max-width: var(--eco-max-text);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .eco-intro__heading {
        font-size: var(--eco-text-7xl);
    }

    .eco-intro__text {
        font-size: var(--eco-text-xl);
    }
}

/* ============================================================
   Selection Grid
   ============================================================ */
.eco-grid {
    display: grid;
    gap: var(--eco-space-10);
    width: 100%;
    max-width: var(--eco-max-grid);
}

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

/* ============================================================
   Package Card
   ============================================================ */
.eco-card {
    background: var(--eco-glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--eco-glass-border);
    border-radius: var(--eco-radius-card);
    padding: var(--eco-space-10);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.6s var(--eco-ease-out-expo);
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.eco-card:hover {
    background: var(--eco-glass-bg-hover);
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 1);
    box-shadow: 0 50px 80px -20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .eco-card {
        padding: var(--eco-space-16);
    }
}

/* Card Badge */
.eco-card__badge {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--eco-radius-pill);
    margin-bottom: 12px;
}

.eco-card__badge--blue {
    background-color: var(--eco-blue-light);
    color: var(--eco-blue);
}

.eco-card__badge--purple {
    background-color: var(--eco-purple-light);
    color: var(--eco-purple);
}

/* Card Icon */
.eco-card__icon {
    width: var(--eco-icon-box);
    height: var(--eco-icon-box);
    background-color: #ffffff;
    border-radius: var(--eco-radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--eco-space-10);
    transition: all 0.5s var(--eco-ease-out-expo);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.eco-card__icon--blue {
    color: var(--eco-blue);
}

.eco-card__icon--purple {
    color: var(--eco-purple);
}

.eco-card:hover .eco-card__icon--blue {
    background-color: var(--eco-blue);
    color: #ffffff;
}

.eco-card:hover .eco-card__icon--purple {
    background-color: var(--eco-purple);
    color: #ffffff;
}

.eco-card__icon-svg {
    width: var(--eco-icon-md);
    height: var(--eco-icon-md);
}

/* Card Option Number */
.eco-card__option {
    font-size: 10px;
    font-weight: 900;
    color: var(--eco-slate-400);
    margin-bottom: var(--eco-space-3);
    letter-spacing: 0.4em;
    text-transform: uppercase;
}

/* Card Title */
.eco-card__title {
    font-size: var(--eco-text-4xl);
    font-weight: 900;
    color: var(--eco-slate-900);
    margin-bottom: var(--eco-space-8);
    letter-spacing: -0.025em;
}

/* Feature Box */
.eco-card__features {
    border: 1px solid var(--eco-feature-border);
    padding: var(--eco-space-8);
    margin-top: var(--eco-space-8);
    min-height: 140px;
    background: var(--eco-feature-bg);
    border-radius: var(--eco-radius-feature);
    transition: all 0.4s ease;
    width: 100%;
}

.eco-card:hover .eco-card__features {
    background: var(--eco-feature-bg-hover);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Feature List */
.eco-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: var(--eco-space-5);
    color: var(--eco-slate-600);
    font-weight: 700;
    font-size: var(--eco-text-sm);
}

@media (min-width: 768px) {
    .eco-card__list {
        font-size: var(--eco-text-base);
    }
}

.eco-card__list-item {
    display: flex;
    align-items: center;
    gap: var(--eco-space-4);
}

/* Dot Indicator */
.eco-card__dot {
    width: var(--eco-space-2);
    height: var(--eco-space-2);
    border-radius: 50%;
    flex-shrink: 0;
}

.eco-card__dot--blue {
    background-color: var(--eco-blue);
    box-shadow: 0 0 10px var(--eco-blue-glow);
}

.eco-card__dot--purple {
    background-color: var(--eco-purple);
    box-shadow: 0 0 10px var(--eco-purple-glow);
}

/* Selection Button */
.eco-card__btn {
    margin-top: var(--eco-space-12);
    padding: var(--eco-space-4) var(--eco-space-10);
    border-radius: var(--eco-radius-pill);
    border: 1.5px solid currentColor;
    transition: all 0.5s var(--eco-ease-out-expo);
    display: flex;
    align-items: center;
    gap: var(--eco-space-3);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.25em;
    background: transparent;
    cursor: pointer;
}

.eco-card__btn--blue {
    color: var(--eco-blue);
}

.eco-card__btn--purple {
    color: var(--eco-purple);
}

.eco-card:hover .eco-card__btn--blue {
    background-color: var(--eco-blue);
    border-color: var(--eco-blue);
    color: #ffffff;
    box-shadow: 0 15px 30px -5px var(--eco-blue-shadow);
}

.eco-card:hover .eco-card__btn--purple {
    background-color: var(--eco-purple);
    border-color: var(--eco-purple);
    color: #ffffff;
    box-shadow: 0 15px 30px -5px var(--eco-purple-shadow);
}

.eco-card__btn-icon {
    width: var(--eco-icon-sm);
    height: var(--eco-icon-sm);
    transition: transform 0.3s ease;
}

.eco-card:hover .eco-card__btn-icon {
    transform: translateX(var(--eco-space-2));
}

/* ============================================================
   Page Footer
   ============================================================ */
.eco-footer {
    margin-top: var(--eco-space-24);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--eco-space-6);
}

.eco-footer__text {
    color: var(--eco-slate-400);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    margin: 0;
}

/* ============================================================
   Animations
   ============================================================ */
.eco-animate-in {
    animation: eco-fadeInUp 1.2s var(--eco-ease-out-expo) forwards;
    opacity: 0;
}

.eco-animate-in--delay-1 {
    animation-delay: 0.2s;
}

.eco-animate-in--delay-2 {
    animation-delay: 0.4s;
}

.eco-animate-in--delay-3 {
    animation-delay: 0.6s;
}

@keyframes eco-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   Form Feedback — ecsl- namespace
   ============================================================ */
.ecsl-field-error {
    font-size: 11px;
    font-weight: 700;
    color: #ef4444;
    letter-spacing: 0.02em;
    min-height: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.25s ease, margin-top 0.2s ease;
    margin-top: 0;
}

.ecsl-field-error:not(:empty) {
    max-height: 40px;
    margin-top: 5px;
}

.ecsl-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.ecsl-select option[value=""] {
    color: #94a3b8;
}

.ecsl-input--error {
    border-color: #fca5a5 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08) !important;
}

.ecsl-form-alert {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* ============================================================
   Sales Landing Page — ecsl- namespace
   ============================================================ */

/* ── Navigation ───────────────────────────────────────────── */
.ecsl-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid #f1f5f9;
}

.ecsl-nav__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 1024px) {
    .ecsl-nav__container {
        padding: 0 48px;
    }
}

.ecsl-nav__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.ecsl-nav__logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ecsl-nav__logo {
    height: 32px;
    width: auto;
}

.ecsl-nav__links {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .ecsl-nav__links {
        display: flex;
    }
}

.ecsl-nav__link {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ecsl-nav__link:hover {
    color: #2563eb;
    text-decoration: none;
}

.ecsl-nav__cta {
    background-color: #2563eb;
    color: #ffffff;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
    flex-shrink: 0;
}

.ecsl-nav__cta:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
    text-decoration: none;
}

/* ── Shared Gradient Text ─────────────────────────────────── */
.ecsl-text-grad {
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ============================================================
   Hero Section
   ============================================================ */
.ecsl-hero {
    position: relative;
    padding: 160px 24px 128px;
    overflow: hidden;
}

.ecsl-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ecsl-hero__bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #eef2ff 0%, #f8faff7a 40%, #fdf4ff 100%);
}

.ecsl-hero__bg-image {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle,
            #00aaff 0%,
            /* Bright center blue */
            #004a99 40%,
            /* Mid-tone blue */
            #001a33 100%
            /* Dark navy edges */
        );
    opacity: 0.5;
}

.ecsl-hero__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.ecsl-hero__glow--top-right {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
}

.ecsl-hero__glow--bottom-left {
    bottom: -60px;
    left: -100px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}

.ecsl-hero__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .ecsl-hero__container {
        grid-template-columns: 1fr 1fr;
    }
}

.ecsl-hero__content {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.ecsl-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 9999px;
    color: #2563eb;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    width: fit-content;
}

.ecsl-hero__title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.05;
    color: #0f172a;
    letter-spacing: -0.05em;
    margin: 0;
}

.ecsl-hero__desc {
    font-size: 18px;
    color: #64748b;
    max-width: 500px;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

/* ── Hero Form Card ───────────────────────────────────────── */
.ecsl-hero__form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 3rem;
    box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.ecsl-hero__form::before {
    content: '';
    position: absolute;
    top: -24px;
    right: -24px;
    width: 96px;
    height: 96px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.ecsl-form-header {
    text-align: center;
    margin-bottom: 28px;
}

.ecsl-form-title {
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.025em;
    margin: 0 0 6px;
}

.ecsl-form-subtitle {
    color: #94a3b8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
}

.ecsl-form-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ecsl-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ecsl-input,
.ecsl-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    background-color: #f8fafc;
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.ecsl-input:focus,
.ecsl-textarea:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
    background-color: #ffffff;
}

.ecsl-textarea {
    height: 88px;
    resize: none;
}

/* ── intl-tel-input — ecsl light form ─────────────────────────────────── */
.ecsl-hero__form .iti {
    width: 100%;
}

.ecsl-hero__form .iti__flag-button {
    background: #f1f5f9;
    border-right: 1.5px solid #e2e8f0;
    border-radius: 10px 0 0 10px;
    padding: 0 8px 0 10px;
    transition: background 0.2s ease;
}

.ecsl-hero__form .iti__flag-button:hover,
.ecsl-hero__form .iti__flag-button[aria-expanded="true"] {
    background: #e2e8f0;
}

.ecsl-hero__form .iti__selected-dial-code {
    font-size: 12px;
    color: #64748b;
    margin-left: 5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.ecsl-hero__form .iti__arrow {
    border-top-color: #94a3b8;
    margin-left: 4px;
}

.ecsl-hero__form .iti__arrow--up {
    border-bottom-color: #94a3b8;
    border-top-color: transparent;
}

.ecsl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
    cursor: pointer;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ecsl-btn--primary {
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px -5px rgba(37, 99, 235, 0.35);
    margin-top: 4px;
}

.ecsl-btn--primary:hover {
    background-color: #1d4ed8;
    transform: scale(1.02);
    box-shadow: 0 18px 40px -6px rgba(37, 99, 235, 0.45);
    color: #ffffff;
}

.ecsl-btn--primary:active {
    transform: scale(0.98);
}

.ecsl-form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
}

.ecsl-form-privacy__icon {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
}

.ecsl-form-privacy__text {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

@media (min-width: 1024px) {
    .ecsl-hero__title {
        font-size: 72px;
    }
}

@media (max-width: 767.98px) {
    .ecsl-hero {
        padding: 120px 20px 80px;
    }

    .ecsl-hero__title {
        font-size: 44px;
    }

    .ecsl-hero__desc {
        font-size: 16px;
    }

    .ecsl-input-row {
        grid-template-columns: 1fr;
    }

    .ecsl-hero__form {
        padding: 28px 24px;
        border-radius: 2rem;
    }
}

@media (max-width: 575.98px) {
    .ecsl-hero {
        padding: 100px 16px 64px;
    }

    .ecsl-hero__title {
        font-size: 36px;
    }
}

/* ============================================================
   Clients Carousel
   ============================================================ */
.ecsl-clients {
    padding: 56px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    background-color: #ffffff;
    overflow: hidden;
}

.ecsl-clients__track {
    display: flex;
    animation: ecsl-marquee 32s linear infinite;
    width: max-content;
}

.ecsl-clients__track:hover {
    animation-play-state: paused;
}

.ecsl-clients__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 80px;
    width: 200px;
    flex-shrink: 0;
    opacity: 0.35;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.ecsl-clients__slide:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.ecsl-clients__logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.ecsl-clients__slide:hover .ecsl-clients__logo {
    transform: scale(1.08);
}

@keyframes ecsl-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

/* ============================================================
   Services Section
   ============================================================ */
.ecsl-services {
    padding: 128px 24px;
    background-color: #f8fafc;
}

.ecsl-services__container {
    max-width: 1280px;
    margin: 0 auto;
}

.ecsl-services__intro {
    max-width: 720px;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ecsl-services__eyebrow {
    font-size: 11px;
    font-weight: 900;
    color: #2563eb;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin: 0;
}

.ecsl-services__title {
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.04em;
    margin: 0;
    line-height: 1.1;
}

.ecsl-services__grid {
    display: grid;
    gap: 28px;
}

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

    .ecsl-services__title {
        font-size: 56px;
    }
}

.ecsl-service-card {
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 2.5rem;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.ecsl-service-card:hover {
    box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
    border-color: #e2e8f0;
}

.ecsl-service-card__icon {
    width: 64px;
    height: 64px;
    background-color: #eff6ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

.ecsl-service-card__icon--neutral {
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.ecsl-service-card__icon-svg {
    width: 32px;
    height: 32px;
}

.ecsl-service-card__title {
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.025em;
}

.ecsl-service-card__desc {
    color: #64748b;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

@media (max-width: 767.98px) {
    .ecsl-services {
        padding: 80px 20px;
    }

    .ecsl-service-card {
        padding: 28px;
        border-radius: 2rem;
    }
}

@media (max-width: 575.98px) {
    .ecsl-services {
        padding: 64px 16px;
    }
}

/* ============================================================
   Pricing Section
   ============================================================ */
.ecsl-pricing {
    padding: 128px 24px;
    background-color: #f1f5f9;
    position: relative;
    overflow: hidden;
}

.ecsl-pricing__dots {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: radial-gradient(#0052ff 0.8px, transparent 0.8px);
    background-size: 24px 24px;
    pointer-events: none;
}

.ecsl-pricing__orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(72px);
    pointer-events: none;
}

.ecsl-pricing__orb--top {
    top: -200px;
    right: -150px;
    background: rgba(147, 197, 253, 0.25);
}

.ecsl-pricing__orb--bottom {
    bottom: -200px;
    left: -150px;
    background: rgba(167, 139, 250, 0.15);
}

.ecsl-pricing__container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.ecsl-pricing__header {
    text-align: center;
    margin-bottom: 72px;
}

.ecsl-pricing__title {
    font-size: 48px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.05em;
    margin: 0 0 16px;
    line-height: 1.05;
}

.ecsl-pricing__subtitle {
    color: #64748b;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 13px;
    margin: 0;
}

.ecsl-pricing__grid {
    display: grid;
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

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

    .ecsl-pricing__title {
        font-size: 64px;
    }
}

/* ── Package Card ─────────────────────────────────────────── */
.ecsl-pkg {
    padding: 48px;
    border-radius: 3rem;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ecsl-pkg--light {
    background-color: #ffffff;
    box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.08);
}

.ecsl-pkg--dark {
    background-color: #0f172a;
    position: relative;
    overflow: hidden;
    box-shadow: 0 28px 56px -12px rgba(0, 0, 0, 0.45);
}

.ecsl-pkg--dark::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    background: rgba(37, 99, 235, 0.25);
    border-radius: 50%;
    filter: blur(32px);
    pointer-events: none;
}

.ecsl-pkg__icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ecsl-pkg__icon-wrap--orange {
    background-color: #fff7ed;
    color: #f97316;
}

.ecsl-pkg__icon-wrap--dark {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.ecsl-pkg__icon-svg {
    width: 32px;
    height: 32px;
}

.ecsl-pkg__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ecsl-pkg__name {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.025em;
    margin: 0;
}

.ecsl-pkg--light .ecsl-pkg__name {
    color: #0f172a;
}

.ecsl-pkg--dark .ecsl-pkg__name {
    color: #ffffff;
}

.ecsl-pkg__price {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin: 0;
    line-height: 1;
}

.ecsl-pkg--light .ecsl-pkg__price {
    color: #0f172a;
}

.ecsl-pkg--dark .ecsl-pkg__price {
    color: #ffffff;
}

.ecsl-pkg__price-period {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
}

.ecsl-pkg--light .ecsl-pkg__price-period {
    color: #94a3b8;
}

.ecsl-pkg--dark .ecsl-pkg__price-period {
    color: #475569;
}

.ecsl-pkg__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
    font-weight: 700;
}

.ecsl-pkg--light .ecsl-pkg__list {
    color: #475569;
}

.ecsl-pkg--dark .ecsl-pkg__list {
    color: #cbd5e1;
}

.ecsl-pkg__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ecsl-pkg__check-svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.ecsl-pkg--light .ecsl-pkg__check-svg {
    color: #2563eb;
}

.ecsl-pkg--dark .ecsl-pkg__check-svg {
    color: #60a5fa;
}

.ecsl-pkg__cta {
    display: block;
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.12em;
    transition: all 0.25s ease;
    text-decoration: none;
    box-sizing: border-box;
    margin-top: auto;
}

.ecsl-pkg__cta--outline {
    border: 2px solid #e2e8f0;
    color: #0f172a;
    background-color: transparent;
}

.ecsl-pkg__cta--outline:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
    text-decoration: none;
}

.ecsl-pkg__cta--filled {
    background-color: #2563eb;
    color: #ffffff;
    border: 2px solid #2563eb;
}

.ecsl-pkg__cta--filled:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .ecsl-pricing {
        padding: 80px 20px;
    }

    .ecsl-pkg {
        padding: 36px 28px;
        border-radius: 2.5rem;
    }

    .ecsl-pricing__title {
        font-size: 36px;
    }
}

@media (max-width: 575.98px) {
    .ecsl-pricing {
        padding: 64px 16px;
    }
}

/* ============================================================
   FAQ Section
   ============================================================ */
.ecsl-faq {
    padding: 128px 24px;
    background-color: #fafafa;
}

.ecsl-faq__container {
    max-width: 760px;
    margin: 0 auto;
}

.ecsl-faq__header {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ecsl-faq__eyebrow {
    font-size: 11px;
    font-weight: 900;
    color: #2563eb;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin: 0;
}

.ecsl-faq__title {
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.04em;
    margin: 0;
}

.ecsl-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ecsl-faq-item {
    background-color: #ffffff;
    border: 1.5px solid #f1f5f9;
    border-radius: 2rem;
    padding: 0 28px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.ecsl-faq-item:hover {
    border-color: #bfdbfe;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.06);
}

.ecsl-faq__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.ecsl-faq__question {
    font-weight: 900;
    font-size: 17px;
    color: #0f172a;
    letter-spacing: -0.02em;
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex: 1;
}

.ecsl-faq__icon-wrap {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform 0.3s ease, color 0.25s ease;
}

.ecsl-faq-item.is-open .ecsl-faq__icon-wrap {
    transform: rotate(180deg);
    color: #2563eb;
}

.ecsl-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}

.ecsl-faq-item.is-open .ecsl-faq__answer {
    max-height: 300px;
}

.ecsl-faq__answer-inner {
    padding-bottom: 22px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.7;
    font-size: 15px;
}

@media (min-width: 768px) {
    .ecsl-faq__title {
        font-size: 48px;
    }
}

@media (max-width: 767.98px) {
    .ecsl-faq {
        padding: 80px 20px;
    }

    .ecsl-faq__question {
        font-size: 15px;
    }

    .ecsl-faq-item {
        padding: 0 20px;
        border-radius: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .ecsl-faq {
        padding: 64px 16px;
    }
}

/* ── Simple Footer ────────────────────────────────────────── */
.ecsl-footer {
    padding: 80px 24px;
    border-top: 1px solid #f1f5f9;
    background-color: #ffffff;
}

.ecsl-footer__container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

@media (min-width: 768px) {
    .ecsl-footer__container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.ecsl-footer__logo-wrap {
    display: flex;
    align-items: center;
}

.ecsl-footer__logo {
    height: 40px;
    width: auto;
}

.ecsl-footer__social {
    display: flex;
    gap: 40px;
}

.ecsl-footer__social-link {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ecsl-footer__social-link:hover {
    color: #2563eb;
    text-decoration: none;
}

.ecsl-footer__copy {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: -0.01em;
    margin: 0;
    text-align: right;
}

/* ============================================================
   Creative Landing Page — eccr- namespace
   ============================================================ */

/* ── Shared: CREAITIVE brand text ─────────────────────────── */
.eccr-creaitive {
    text-transform: uppercase;
    font-style: italic;
}

.eccr-creaitive__ai {
    display: inline-block;
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-style: normal;
}

/* Title clip-reveal */
.eccr-title-clip {
    display: block;
    overflow: hidden;
    padding-bottom: 0.08em;
}

.eccr-title-rise {
    display: inline-block;
}

.eccr-split-a,
.eccr-split-tive {
    display: inline-block;
}

.eccr-split-a {
    position: relative;
}

.eccr-split-a__base {
    display: inline-block;
}

.eccr-split-a__grad {
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
    pointer-events: none;
}

/* ============================================================
   Floating Navigation
   ============================================================ */
.eccr-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 0 24px;
}

.eccr-nav__bar {
    max-width: 1000px;
    margin: 32px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px);
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: 9999px;
    padding: 12px 20px 12px 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.eccr-nav__logo-link {
    flex-shrink: 0;
}

.eccr-nav__logo {
    height: 32px;
    width: auto;
}

.eccr-nav__links {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 32px;
}

@media (min-width: 768px) {
    .eccr-nav__links {
        display: flex;
    }
}

.eccr-nav__link {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2e353f;
    text-decoration: none;
    transition: color 0.2s ease;
}

.eccr-nav__link:hover {
    color: #2563eb;
}

.eccr-nav__cta {
    display: none;
    background-color: #2563eb;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.eccr-nav__cta:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    text-decoration: none;
}

@media (min-width: 576px) {
    .eccr-nav__cta {
        display: inline-flex;
    }
}

/* Hamburger */
.eccr-nav__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .eccr-nav__hamburger {
        display: none;
    }
}

.eccr-nav__bar-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #1a202c;
    border-radius: 2px;
}

/* Mobile Drawer */
.eccr-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background-color: #0f172a;
    z-index: 9999;
    padding: 80px 32px 48px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.eccr-drawer.is-open {
    transform: translateX(0);
}

.eccr-drawer__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.eccr-drawer__backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.eccr-drawer__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eccr-drawer__nav {
    flex: 1;
}

.eccr-drawer__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.eccr-drawer__link {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}

.eccr-drawer__link:hover {
    color: #60a5fa;
}

.eccr-drawer__cta {
    display: inline-block;
    color: #60a5fa;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    margin-top: 8px;
}

/* ============================================================
   Hero Section
   ============================================================ */
.eccr-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}

.eccr-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.eccr-hero__bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #faf5ff 50%, #fff0f9 100%);
}

.eccr-hero__bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://img.magnific.com/free-photo/vivid-blurred-colorful-wallpaper-background_58702-3933.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: grayscale(20%) contrast(1.1);
    opacity: 0.6;
}

.eccr-hero__container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .eccr-hero__container {
        grid-template-columns: 1fr 1fr;
    }
}

.eccr-hero__content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.eccr-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 9999px;
    color: #2563eb;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    width: fit-content;
}

.eccr-hero__badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #2563eb;
    border-radius: 50%;
    animation: eccr-pulse 1.8s ease-in-out infinite;
}

@keyframes eccr-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.eccr-hero__title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.08;
    color: #0f172a;
    letter-spacing: -0.04em;
    margin: 0;
}

@media (min-width: 1024px) {
    .eccr-hero__title {
        font-size: 68px;
    }
}

.eccr-hero__desc {
    font-size: 18px;
    color: #64748b;
    max-width: 440px;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

/* Hero Form */
.eccr-hero__form {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #e2e8f0;
    border-radius: 2.5rem;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
}

.eccr-form-header {
    text-align: center;
    margin-bottom: 24px;
}

.eccr-form-title {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #0f172a;
    margin: 0 0 6px;
}

.eccr-form-subtitle {
    font-size: 9px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
}

.eccr-form-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eccr-input,
.eccr-textarea {
    width: 100%;
    padding: 16px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.eccr-input:focus,
.eccr-textarea:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.eccr-textarea {
    height: 80px;
    resize: none;
}

/* ── intl-tel-input — eccr light form ─────────────────────────────────── */
.eccr-hero__form .iti {
    width: 100%;
}

.eccr-hero__form .iti__flag-button {
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    border-radius: 10px 0 0 10px;
    padding: 0 8px 0 10px;
    transition: background 0.2s ease;
}

.eccr-hero__form .iti__flag-button:hover,
.eccr-hero__form .iti__flag-button[aria-expanded="true"] {
    background: #e2e8f0;
}

.eccr-hero__form .iti__selected-dial-code {
    font-size: 12px;
    color: #64748b;
    margin-left: 5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.eccr-hero__form .iti__arrow {
    border-top-color: #94a3b8;
    margin-left: 4px;
}

.eccr-hero__form .iti__arrow--up {
    border-bottom-color: #94a3b8;
    border-top-color: transparent;
}

.eccr-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    letter-spacing: 0.2em;
    font-size: 11px;
    cursor: pointer;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    padding: 20px;
    border-radius: 12px;
}

.eccr-btn--dark {
    background-color: #0f172a;
    color: #ffffff;
    box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.35);
}

.eccr-btn--dark:hover {
    background-color: #2563eb;
    box-shadow: 0 12px 32px -4px rgba(37, 99, 235, 0.4);
    color: #ffffff;
}

.eccr-btn--dark:active {
    transform: scale(0.97);
}

.eccr-btn.is-loading {
    opacity: 0.65;
    cursor: not-allowed;
}

/* ── Two-column input row ──────────────────────────────────────────────── */
.eccr-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ── Input error state ─────────────────────────────────────────────────── */
.eccr-input--error {
    border-color: #f87171 !important;
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12) !important;
}

/* ── Field-level error text ────────────────────────────────────────────── */
.eccr-field-error,
.eccr-field-error-msg {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #ef4444;
    margin-top: 5px;
    min-height: 0;
}

/* ── Top-level form alert ──────────────────────────────────────────────── */
.eccr-form-alert {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 14px;
}

/* ── Select dropdown ───────────────────────────────────────────────────── */
.eccr-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.eccr-select option[value=""][disabled] {
    color: #94a3b8;
}

/* ── Privacy note ──────────────────────────────────────────────────────── */
.eccr-form-privacy {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eccr-form-privacy__icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #22c55e;
    stroke: #22c55e;
}

.eccr-form-privacy__text {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    margin: 0;
}

@media (max-width: 767.98px) {
    .eccr-hero {
        padding: 120px 20px 64px;
        min-height: auto;
    }

    .eccr-hero__title {
        font-size: 38px;
    }

    .eccr-hero__form {
        padding: 28px 24px;
        border-radius: 2rem;
    }

    .eccr-input-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Clients Carousel (Creative)
   ============================================================ */
.eccr-clients {
    padding: 56px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.eccr-clients__track {
    display: flex;
    animation: eccr-marquee 32s linear infinite;
    width: max-content;
}

.eccr-clients__track:hover {
    animation-play-state: paused;
}

.eccr-clients__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 80px;
    width: 200px;
    flex-shrink: 0;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.eccr-clients__slide:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.eccr-clients__logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.eccr-clients__slide:hover .eccr-clients__logo {
    transform: scale(1.08);
}

@keyframes eccr-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

/* ============================================================
   Pricelist Section
   ============================================================ */
.eccr-pricelist {
    padding: 128px 24px;
    background-color: #ffffff;
}

.eccr-pricelist__container {
    max-width: 1280px;
    margin: 0 auto;
}

.eccr-pricelist__header {
    text-align: center;
    margin-bottom: 72px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.eccr-pricelist__title {
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.04em;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: baseline;
}

@media (min-width: 768px) {
    .eccr-pricelist__title {
        font-size: 48px;
    }
}

.eccr-pricelist__title-underline {
    text-decoration: underline;
    text-decoration-color: #2563eb;
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
}

.eccr-pricelist__subtitle {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin: 0;
}

.eccr-pricelist__grid {
    display: grid;
    gap: 28px;
}

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

.eccr-pricelist__note {
    text-align: center;
    margin-top: 48px;
    font-size: 9px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}

/* ── Price Card ───────────────────────────────────────────── */
.eccr-price-card {
    padding: 40px;
    border: 1px solid #f1f5f9;
    border-radius: 3rem;
    background: rgba(248, 250, 252, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.eccr-price-card:hover {
    border-color: #2563eb;
    box-shadow: 0 16px 40px -8px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.eccr-price-card__header {
    text-align: center;
    margin-bottom: 28px;
}

.eccr-price-card__name {
    font-size: 20px;
    font-weight: 900;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0 0 4px;
}

.eccr-price-card__tagline {
    font-size: 9px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 16px;
}

.eccr-price-card__price {
    font-size: 28px;
    font-weight: 900;
    color: #2563eb;
    letter-spacing: -0.04em;
    margin: 0;
}

.eccr-price-card__unit {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 0;
}

.eccr-price-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.eccr-price-card__section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eccr-price-card__section-title {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #0f172a;
    margin: 0;
    padding-bottom: 4px;
    border-bottom: 1px solid #f1f5f9;
}

.eccr-price-card__highlight {
    padding: 16px;
    border-radius: 16px;
}

.eccr-price-card__highlight--blue {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.eccr-price-card__highlight--dark {
    background-color: #0f172a;
}

/* Card List */
.eccr-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eccr-card-list__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
}

.eccr-card-list--blue-text .eccr-card-list__item {
    color: #1d4ed8;
    font-weight: 700;
}

.eccr-card-list--white-text .eccr-card-list__item {
    color: #ffffff;
    font-weight: 700;
}

.eccr-card-list__icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #94a3b8;
}

.eccr-card-list__icon--blue {
    color: #2563eb;
}

.eccr-card-list__icon--blue-light {
    color: #60a5fa;
}

/* CTA */
.eccr-price-card__cta {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #0f172a;
    color: #ffffff;
    text-align: center;
    border-radius: 16px;
    font-weight: 900;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.2s ease;
    box-sizing: border-box;
    margin-top: auto;
}

.eccr-price-card__cta:hover {
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .eccr-pricelist {
        padding: 80px 20px;
    }

    .eccr-price-card {
        padding: 28px;
        border-radius: 2rem;
    }
}

/* ============================================================
   Showcase Section
   ============================================================ */
.eccr-showcase {
    padding: 128px 24px;
    background-color: #ffffff;
    overflow: visible;
}

/* AIMIGHTY zoom pin wrapper — sits outside the flex container */
.eccr-aimighty-pin {
    max-width: 1280px;
    margin: 80px auto 0;
    overflow: visible;
}

.eccr-showcase__container {
    max-width: 1280px;
    margin: 0 auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.eccr-showcase__header {
    text-align: center;
}

.eccr-showcase__title {
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin: 0 0 8px;
}

.eccr-showcase__subtitle {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin: 0;
}

/* Showcase Block */
.eccr-showcase-block {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 3rem;
    padding: 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .eccr-showcase-block {
        padding: 64px;
    }
}

.eccr-showcase-block__heading {
    display: flex;
    align-items: center;
    gap: 16px;
}

.eccr-showcase-block__accent {
    display: inline-block;
    width: 6px;
    height: 40px;
    background-color: #2563eb;
    border-radius: 9999px;
    flex-shrink: 0;
}

.eccr-showcase-block__name {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin: 0;
}

.eccr-showcase-block__grid {
    display: grid;
    gap: 28px;
}

.eccr-showcase-block__grid--3 {
    grid-template-columns: 1fr;
}

.eccr-showcase-block__grid--2 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .eccr-showcase-block__grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .eccr-showcase-block__grid--2 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
        margin: 0 auto;
    }
}

/* ── Video Player ─────────────────────────────────────────── */
.eccr-video {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eccr-video__frame {
    position: relative;
    background-color: #000000;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.eccr-video__frame--vertical {
    aspect-ratio: 9 / 16;
}

.eccr-video__frame--horizontal {
    aspect-ratio: 16 / 9;
    border-radius: 2.5rem;
}

.eccr-video__frame--max-sm {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
}

.eccr-video__el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

/* Cursor-following play/pause bubble (desktop only) */
.eccr-vid-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 9998;
    will-change: transform;
}

@media (min-width: 768px) {
    .eccr-video__frame {
        cursor: none;
    }

    .eccr-video__mute {
        cursor: pointer;
    }
}

.eccr-video__mute {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 20;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease, background-color 0.2s ease;
}

.eccr-video__frame:hover .eccr-video__mute {
    opacity: 1;
}

.eccr-video__mute:hover {
    background-color: #2563eb;
}

.eccr-video__mute-icon {
    width: 18px;
    height: 18px;
}

.eccr-video__label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.eccr-video__label--spaced {
    margin-top: 16px;
}

@media (max-width: 767.98px) {
    .eccr-showcase {
        padding: 80px 20px;
    }

    .eccr-showcase-block {
        padding: 32px 24px;
        border-radius: 2rem;
    }

    .eccr-showcase-block__name {
        font-size: 20px;
    }
}

/* ============================================================
   FAQ Section (Creative — circle-icon style)
   ============================================================ */
.eccr-faq {
    padding: 128px 24px;
    background: rgba(248, 250, 252, 0.3);
}

.eccr-faq__container {
    max-width: 896px;
    margin: 0 auto;
}

.eccr-faq__header {
    text-align: center;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eccr-faq__eyebrow {
    font-size: 11px;
    font-weight: 900;
    color: #2563eb;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin: 0;
}

.eccr-faq__title {
    font-size: 36px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.04em;
    margin: 0;
}

@media (min-width: 768px) {
    .eccr-faq__title {
        font-size: 48px;
    }
}

.eccr-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.eccr-faq-item {
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.25s ease;
}

.eccr-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.eccr-faq__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 28px 32px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.eccr-faq__question {
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.01em;
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex: 1;
}

.eccr-faq__icon {
    width: 40px;
    height: 40px;
    background-color: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #475569;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.eccr-faq-item:hover .eccr-faq__icon,
.eccr-faq-item.is-open .eccr-faq__icon {
    background-color: #2563eb;
    color: #ffffff;
}

.eccr-faq__icon-svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.eccr-faq-item.is-open .eccr-faq__icon-svg {
    transform: rotate(45deg);
}

.eccr-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}

.eccr-faq-item.is-open .eccr-faq__answer {
    max-height: 300px;
}

.eccr-faq__answer-inner {
    padding: 0 32px 24px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.7;
    font-size: 15px;
    border-top: 1px solid #f8fafc;
    padding-top: 16px;
}

@media (max-width: 767.98px) {
    .eccr-faq {
        padding: 80px 20px;
    }

    .eccr-faq__btn {
        padding: 22px 20px;
    }

    .eccr-faq__answer-inner {
        padding: 16px 20px 20px;
    }

    .eccr-faq__question {
        font-size: 14px;
    }
}

/* ============================================================
   Simple Footer (Creative)
   ============================================================ */
.eccr-footer {
    padding: 64px 24px;
    border-top: 1px solid #f1f5f9;
    background-color: #ffffff;
}

.eccr-footer__container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .eccr-footer__container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.eccr-footer__logo-wrap {
    display: flex;
    align-items: center;
}

.eccr-footer__logo {
    height: 36px;
    width: auto;
}

.eccr-footer__social {
    display: flex;
    gap: 32px;
}

.eccr-footer__social-link {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.eccr-footer__social-link:hover {
    color: #2563eb;
}

.eccr-footer__copy {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: -0.01em;
    margin: 0;
    text-align: right;
}

/* ============================================================
   intl-tel-input dropdown — light mode override
   (global.css sets dark styles; ecommerce.css loads after, so
   these declarations win on the sales & creative pages)
   ============================================================ */
.iti__dropdown-content {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.iti__search-input {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #0f172a;
    font-size: 13px;
    padding: 7px 10px;
    width: 100%;
    outline: none;
    box-sizing: border-box;
}

.iti__search-input::placeholder {
    color: #94a3b8;
}

.iti__search-input:focus {
    border-color: #93c5fd;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.iti__country-list {
    background: transparent;
    border: none;
    max-height: 220px;
    overflow-y: auto;
    scrollbar-color: #cbd5e1 transparent;
}

.iti__country {
    color: #334155;
    font-size: 13px;
    padding: 8px 12px;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background: #eff6ff;
    color: #1d4ed8;
}

.iti__country-name {
    color: inherit;
}

.iti__dial-code {
    color: #94a3b8;
}

.iti__divider {
    border-top: 1px solid #e2e8f0;
    margin: 4px 0;
}

/* ============================================================
   Floating WhatsApp Button
   ============================================================ */
.whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    outline: none !important;
    text-decoration: none !important;
}