.ej-form-layout {
    display: grid;
    gap: 1.5rem;
    max-width: 72rem;
}
@media (min-width: 1024px) {
    .ej-form-layout {
        grid-template-columns: 1.35fr .65fr;
        align-items: start;
    }
}
.ej-form-card {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 1rem;
    padding: 1.5rem;
}
@media (min-width: 768px) {
    .ej-form-card { padding: 2rem; }
}
.ej-section-title {
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.ej-section-title i { color: #22d3ee; font-size: .9rem; }
.ej-section + .ej-section { margin-top: 1.75rem; padding-top: 1.75rem; border-top: 1px solid #1e293b; }

.ej-billing-toggle {
    display: inline-flex;
    padding: .25rem;
    border-radius: 9999px;
    background: #020617;
    border: 1px solid #334155;
    margin-bottom: 1rem;
}
.ej-billing-toggle label {
    cursor: pointer;
    position: relative;
}
.ej-billing-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.ej-billing-toggle span {
    display: inline-flex;
    align-items: center;
    padding: .5rem 1rem;
    border-radius: 9999px;
    font-size: .875rem;
    font-weight: 600;
    color: #94a3b8;
    transition: background .15s, color .15s;
}
.ej-billing-toggle input:checked + span {
    background: linear-gradient(135deg, #06b6d4, #14b8a6);
    color: #0f172a;
}

.ej-plan-grid {
    display: grid;
    gap: .875rem;
}
@media (min-width: 640px) {
    .ej-plan-grid { grid-template-columns: 1fr 1fr; }
}
.ej-plan-card {
    position: relative;
    display: block;
    cursor: pointer;
}
.ej-plan-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.ej-plan-card-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    padding: 1.1rem 1.15rem;
    border-radius: 1rem;
    border: 2px solid #334155;
    background: #020617;
    transition: border-color .15s, box-shadow .15s;
}
.ej-plan-card input:checked + .ej-plan-card-body {
    border-color: rgba(34, 211, 238, .65);
    box-shadow: 0 0 0 1px rgba(34, 211, 238, .25);
}
.ej-plan-card--full input:checked + .ej-plan-card-body {
    border-color: rgba(16, 185, 129, .55);
    box-shadow: 0 0 0 1px rgba(16, 185, 129, .2);
}
.ej-plan-badge {
    position: absolute;
    top: .75rem;
    right: .75rem;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .2rem .55rem;
    border-radius: 9999px;
    background: rgba(16, 185, 129, .15);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, .35);
}
.ej-plan-head { padding-right: 4rem; }
.ej-plan-title {
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f8fafc;
    margin: 0 0 .25rem;
}
.ej-plan-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #22d3ee;
    line-height: 1.2;
}
.ej-plan-card--full .ej-plan-price { color: #6ee7b7; }
.ej-plan-nok {
    display: block;
    font-size: .72rem;
    font-weight: 500;
    color: #64748b;
    margin-top: .15rem;
}
.ej-plan-desc {
    font-size: .82rem;
    line-height: 1.45;
    color: #94a3b8;
    margin: 0;
}
.ej-plan-feats {
    list-style: none;
    margin: .25rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.ej-plan-feats li {
    font-size: .78rem;
    color: #cbd5e1;
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    line-height: 1.35;
}
.ej-plan-feats i {
    color: #22d3ee;
    margin-top: .15rem;
    font-size: .65rem;
}

.ej-field-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) {
    .ej-field-grid--2 { grid-template-columns: 1fr 1fr; }
}
.ej-field label {
    display: block;
    font-size: .875rem;
    color: #94a3b8;
    margin-bottom: .35rem;
}
.ej-field input,
.ej-field select,
.ej-field textarea {
    width: 100%;
    border-radius: .75rem;
    background: #020617;
    border: 1px solid #334155;
    padding: .65rem .9rem;
    color: #f1f5f9;
    font-size: .95rem;
}
.ej-field input:focus,
.ej-field select:focus,
.ej-field textarea:focus {
    outline: none;
    border-color: #06b6d4;
}
.ej-field-hint {
    font-size: .75rem;
    color: #64748b;
    margin-top: .35rem;
    line-height: 1.4;
}
.ej-cms-field { display: none; }
.ej-cms-field.is-visible { display: block; }

@media (min-width: 1024px) {
    .ej-summary {
        position: sticky;
        top: 5.5rem;
    }
}
@media (max-width: 1023px) {
    .ej-summary { position: static; }
}
.ej-summary-card {
    background: linear-gradient(180deg, rgba(15,23,42,.95), rgba(2,6,23,.98));
    border: 1px solid #334155;
    border-radius: 1rem;
    padding: 1.25rem 1.35rem;
}
.ej-summary-card--electric {
    position: relative;
    overflow: hidden;
    border-color: rgba(34, 211, 238, .28);
    box-shadow:
        0 0 0 1px rgba(34, 211, 238, .06),
        0 0 24px rgba(34, 211, 238, .07);
}
.ej-summary-lightning {
    position: absolute;
    inset: -20% -40%;
    pointer-events: none;
    background: linear-gradient(
        108deg,
        transparent 42%,
        rgba(34, 211, 238, .03) 46%,
        rgba(103, 232, 249, .22) 50%,
        rgba(34, 211, 238, .03) 54%,
        transparent 58%
    );
    transform: translateX(-130%) skewX(-12deg);
    animation: ej-lightning-sweep 5.5s ease-in-out infinite;
}
.ej-summary-title {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: .55rem;
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f8fafc;
    margin: 0 0 1rem;
}
.ej-summary-bolt {
    color: #22d3ee;
    font-size: .95rem;
    animation: ej-bolt-flicker 3s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(34, 211, 238, .85));
}
.ej-summary-card.is-flash {
    animation: ej-card-flash 0.5s ease-out;
}
.ej-summary-card.is-flash .ej-summary-bolt {
    animation: ej-bolt-strike 0.5s ease-out;
}
.ej-summary-card.is-flash .ej-summary-price {
    animation: ej-price-spark 0.55s ease-out;
}
@keyframes ej-lightning-sweep {
    0%, 78%, 100% { transform: translateX(-130%) skewX(-12deg); opacity: 0; }
    80% { opacity: 1; }
    84% { transform: translateX(130%) skewX(-12deg); opacity: 0.75; }
    86% { opacity: 0; }
}
@keyframes ej-bolt-flicker {
    0%, 88%, 100% { opacity: 1; transform: scale(1); }
    90% { opacity: 0.35; transform: scale(0.92); }
    92% { opacity: 1; transform: scale(1.08); }
    94% { opacity: 0.55; }
    96% { opacity: 1; }
}
@keyframes ej-bolt-strike {
    0% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 5px rgba(34, 211, 238, .85)); }
    35% { opacity: 1; transform: scale(1.25); filter: drop-shadow(0 0 14px rgba(103, 232, 249, 1)); color: #a5f3fc; }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes ej-card-flash {
    0% {
        border-color: rgba(34, 211, 238, .28);
        box-shadow: 0 0 24px rgba(34, 211, 238, .07);
    }
    40% {
        border-color: rgba(103, 232, 249, .75);
        box-shadow:
            0 0 0 1px rgba(103, 232, 249, .35),
            0 0 32px rgba(34, 211, 238, .35),
            inset 0 0 24px rgba(34, 211, 238, .08);
    }
    100% {
        border-color: rgba(34, 211, 238, .28);
        box-shadow: 0 0 24px rgba(34, 211, 238, .07);
    }
}
@keyframes ej-price-spark {
    0% { text-shadow: none; }
    45% { text-shadow: 0 0 12px rgba(34, 211, 238, .9), 0 0 24px rgba(34, 211, 238, .4); }
    100% { text-shadow: none; }
}
@media (prefers-reduced-motion: reduce) {
    .ej-summary-lightning,
    .ej-summary-bolt,
    .ej-summary-card.is-flash,
    .ej-summary-card.is-flash .ej-summary-bolt,
    .ej-summary-card.is-flash .ej-summary-price {
        animation: none !important;
    }
}
.ej-summary h3 {
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f8fafc;
    margin: 0 0 1rem;
}
.ej-summary dl,
.ej-summary-note {
    position: relative;
    z-index: 1;
}
.ej-summary dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}
.ej-summary dt {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #64748b;
}
.ej-summary dd {
    margin: .1rem 0 0;
    font-size: .92rem;
    color: #e2e8f0;
    font-weight: 500;
}
.ej-summary-price {
    font-size: 1.2rem !important;
    color: #22d3ee !important;
    font-weight: 700 !important;
}
.ej-summary-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #1e293b;
    font-size: .78rem;
    line-height: 1.45;
    color: #94a3b8;
}
.ej-check {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .875rem;
    color: #cbd5e1;
    cursor: pointer;
}
.ej-check input { margin-top: .2rem; accent-color: #22d3ee; }
.ej-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: .75rem;
    background: linear-gradient(135deg, #06b6d4, #14b8a6);
    color: #0f172a;
    font-weight: 700;
    padding: .85rem 1rem;
    border: none;
    cursor: pointer;
    transition: opacity .15s;
}
.ej-submit:hover { opacity: .92; }
.ej-submit--electric {
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(103, 232, 249, .25),
        0 0 20px rgba(34, 211, 238, .2);
    animation: ej-submit-glow 3.5s ease-in-out infinite;
}
.ej-submit--electric::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, .28) 50%,
        transparent 60%
    );
    transform: translateX(-130%);
    animation: ej-lightning-sweep 4.5s ease-in-out infinite;
    pointer-events: none;
}
.ej-submit-bolt {
    filter: drop-shadow(0 0 4px rgba(15, 23, 42, .5));
    animation: ej-bolt-flicker 3s ease-in-out infinite;
}
.ej-submit--electric:hover {
    box-shadow:
        0 0 0 1px rgba(103, 232, 249, .45),
        0 0 28px rgba(34, 211, 238, .35);
}
@keyframes ej-submit-glow {
    0%, 100% { box-shadow: 0 0 0 1px rgba(103, 232, 249, .25), 0 0 20px rgba(34, 211, 238, .2); }
    50% { box-shadow: 0 0 0 1px rgba(103, 232, 249, .4), 0 0 26px rgba(34, 211, 238, .32); }
}
@media (prefers-reduced-motion: reduce) {
    .ej-submit--electric,
    .ej-submit--electric::after,
    .ej-submit-bolt {
        animation: none !important;
    }
}

.ej-cms-intro { margin-bottom: 1rem; }
.ej-cms-categories { display: flex; flex-direction: column; gap: 1.25rem; }
.ej-cms-category__title {
    margin: 0 0 .65rem;
    font-size: .88rem;
    font-weight: 600;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: .45rem;
}
.ej-cms-category__title i { color: #22d3ee; }
.ej-cms-category__grid {
    display: grid;
    gap: .55rem;
    grid-template-columns: 1fr;
}
@media (min-width: 560px) {
    .ej-cms-category__grid { grid-template-columns: repeat(2, 1fr); }
}
.ej-cms-option {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    padding: .75rem .85rem;
    border-radius: .75rem;
    border: 1px solid #334155;
    background: #020617;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
.ej-cms-option:hover { border-color: rgba(34, 211, 238, .45); }
.ej-cms-option.is-selected {
    border-color: rgba(34, 211, 238, .55);
    background: rgba(34, 211, 238, .08);
}
.ej-cms-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.ej-cms-option__name {
    font-size: .9rem;
    font-weight: 600;
    color: #f1f5f9;
}
.ej-cms-option__desc {
    font-size: .75rem;
    line-height: 1.4;
    color: #94a3b8;
}
.ej-cms-option--featured {
    position: relative;
    border-width: 2px;
    animation: ej-cms-featured-pulse 2.8s ease-in-out infinite;
}
.ej-cms-option--featured.ej-cms-option--shop {
    border-color: rgba(251, 113, 133, .55);
    background: linear-gradient(145deg, rgba(251, 113, 133, .1), rgba(15, 23, 42, .98));
    box-shadow: 0 0 22px rgba(251, 113, 133, .15);
}
.ej-cms-option--featured.ej-cms-option--booking {
    border-color: rgba(56, 189, 248, .55);
    background: linear-gradient(145deg, rgba(56, 189, 248, .1), rgba(15, 23, 42, .98));
    box-shadow: 0 0 22px rgba(56, 189, 248, .15);
}
.ej-cms-option--featured.ej-cms-option--shop .ej-cms-option__name { color: #fda4af; }
.ej-cms-option--featured.ej-cms-option--booking .ej-cms-option__name { color: #7dd3fc; }
.ej-cms-option--featured.is-selected.ej-cms-option--shop {
    border-color: rgba(251, 113, 133, .75);
    background: linear-gradient(145deg, rgba(251, 113, 133, .16), rgba(34, 211, 238, .08));
}
.ej-cms-option--featured.is-selected.ej-cms-option--booking {
    border-color: rgba(56, 189, 248, .75);
    background: linear-gradient(145deg, rgba(56, 189, 248, .16), rgba(34, 211, 238, .08));
}
.ej-cms-option--featured::before {
    content: '★';
    position: absolute;
    top: .45rem;
    right: .55rem;
    font-size: .7rem;
    line-height: 1;
    opacity: .85;
}
.ej-cms-option--featured.ej-cms-option--shop::before { color: #fb7185; }
.ej-cms-option--featured.ej-cms-option--booking::before { color: #38bdf8; }
@keyframes ej-cms-featured-pulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.12); }
}
@media (prefers-reduced-motion: reduce) {
    .ej-cms-option--featured { animation: none; }
}