.websites-page-shell {
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.16), transparent 26%),
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 32%),
        linear-gradient(180deg, #06101d 0%, #0b1728 32%, #101f35 100%);
    min-height: 100vh;
}

.websites-page {
    width: min(1220px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1.8rem 0 4rem;
}

.websites-hero,
.websites-panel,
.websites-summary-card,
.websites-login-notice {
    background: rgba(8, 15, 28, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.16);
    box-shadow: 0 24px 60px rgba(2, 8, 23, 0.34);
    backdrop-filter: blur(12px);
}

.websites-hero {
    border-radius: 28px;
    padding: 1.4rem;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.95fr);
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.websites-hero-copy h1 {
    margin: 0 0 0.6rem;
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    line-height: 1.15;
    color: #f8fbff;
}

.websites-hero-copy p {
    margin: 0;
    color: rgba(226, 232, 240, 0.84);
    line-height: 1.85;
}

.websites-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.46rem 0.9rem;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.14);
    color: #8be9ff;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
}

.websites-hero-points {
    display: grid;
    gap: 0.8rem;
}

.websites-hero-points span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.84);
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: #dbeafe;
    font-weight: 700;
}

.websites-hero-points i {
    color: #67e8f9;
}

.websites-alert {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.websites-alert.is-success {
    background: rgba(34, 197, 94, 0.14);
    color: #bbf7d0;
    border: 1px solid rgba(34, 197, 94, 0.28);
}

.websites-alert.is-danger {
    background: rgba(239, 68, 68, 0.12);
    color: #fecaca;
    border: 1px solid rgba(239, 68, 68, 0.24);
}

.websites-login-notice {
    border-radius: 24px;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.websites-login-notice strong {
    display: block;
    color: #f8fafc;
    margin-bottom: 0.2rem;
}

.websites-login-notice p {
    margin: 0;
    color: rgba(226, 232, 240, 0.76);
    line-height: 1.7;
}

.websites-builder-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    gap: 1rem;
    align-items: start;
}

.websites-builder-main {
    display: grid;
    gap: 1rem;
}

.websites-builder-side {
    position: sticky;
    top: 88px;
}

.websites-stepper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.websites-stepper-item {
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(8, 15, 28, 0.74);
    color: #dbeafe;
    border-radius: 22px;
    padding: 0.95rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: right;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.websites-stepper-item:hover {
    transform: translateY(-1px);
    border-color: rgba(56, 189, 248, 0.35);
}

.websites-stepper-item.is-active {
    border-color: rgba(34, 211, 238, 0.7);
    background: linear-gradient(180deg, rgba(7, 28, 40, 0.98), rgba(7, 23, 34, 0.94));
    box-shadow: 0 14px 32px rgba(6, 182, 212, 0.16);
}

.websites-stepper-item.is-done {
    border-color: rgba(74, 222, 128, 0.35);
}

.websites-stepper-number {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: rgba(56, 189, 248, 0.18);
    color: #8be9ff;
    font-weight: 800;
}

.websites-stepper-item.is-active .websites-stepper-number {
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    color: #03111f;
}

.websites-stepper-copy {
    display: grid;
    gap: 0.16rem;
}

.websites-stepper-copy strong {
    color: #f8fafc;
    font-size: 0.96rem;
}

.websites-stepper-copy small {
    color: rgba(191, 219, 254, 0.68);
    font-size: 0.8rem;
}

.websites-panel,
.websites-summary-card {
    border-radius: 24px;
    padding: 1.2rem;
}

.websites-step-panel {
    display: none;
}

.websites-step-panel.is-active {
    display: block;
}

.websites-panel-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.websites-panel-head.compact {
    margin-bottom: 0.8rem;
}

.websites-step-badge {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 800;
    background: linear-gradient(135deg, #f8fafc, #93c5fd);
    color: #082032;
}

.websites-panel-head h2,
.websites-addon-head h3 {
    margin: 0;
    color: #f8fafc;
}

.websites-panel-head p,
.websites-addon-head p {
    margin: 0.28rem 0 0;
    color: rgba(226, 232, 240, 0.72);
    line-height: 1.75;
    font-size: 0.94rem;
}

.websites-service-grid,
.websites-addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.85rem;
}

.websites-service-card,
.websites-addon-card,
.websites-empty-card {
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.14);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(8, 15, 28, 0.96));
}

.websites-service-card,
.websites-addon-card {
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.websites-service-card:hover,
.websites-addon-card:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.46);
    box-shadow: 0 16px 35px rgba(2, 8, 23, 0.26);
}

.websites-service-card.is-selected,
.websites-addon-card.is-selected {
    border-color: rgba(34, 211, 238, 0.72);
    background: linear-gradient(180deg, rgba(8, 30, 43, 0.98), rgba(6, 22, 34, 0.94));
    box-shadow: 0 18px 36px rgba(6, 182, 212, 0.18);
}

.websites-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
}

.websites-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(56, 189, 248, 0.14);
    color: #67e8f9;
    font-size: 1.1rem;
}

.websites-card-media {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.82);
}

.websites-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.websites-card-price {
    color: #facc15;
    font-weight: 800;
    font-size: 1rem;
}

.websites-service-card h3,
.websites-addon-card h3 {
    margin: 0 0 0.42rem;
    color: #f8fafc;
    font-size: 1rem;
}

.websites-service-card p,
.websites-addon-card p,
.websites-empty-card {
    margin: 0;
    color: rgba(226, 232, 240, 0.72);
    line-height: 1.75;
    font-size: 0.92rem;
}

.websites-card-meta {
    margin-top: 0.9rem;
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.1);
    color: #cbd5e1;
    font-size: 0.82rem;
}

.websites-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.websites-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.websites-field span {
    color: #f8fafc;
    font-weight: 700;
}

.websites-field-full {
    grid-column: 1 / -1;
}

.websites-field .form-input,
.websites-field .form-select,
.websites-field .form-textarea {
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(15, 23, 42, 0.9);
    color: #e2e8f0;
    box-shadow: none;
}

.websites-field .form-input::placeholder,
.websites-field .form-textarea::placeholder {
    color: rgba(226, 232, 240, 0.42);
}

.websites-field-hint {
    color: rgba(191, 219, 254, 0.76);
    line-height: 1.6;
    font-size: 0.84rem;
}

.websites-color-field {
    display: grid;
    gap: 0.75rem;
    padding: 0.9rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.82);
}

.websites-color-top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.websites-color-input {
    width: 64px;
    min-width: 64px;
    height: 64px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 18px;
    overflow: hidden;
}

.websites-color-input::-webkit-color-swatch-wrapper {
    padding: 0;
}

.websites-color-input::-webkit-color-swatch {
    border: 2px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
}

.websites-color-input::-moz-color-swatch {
    border: 2px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
}

.websites-color-display {
    display: grid;
    gap: 0.18rem;
}

.websites-color-display strong {
    color: #f8fafc;
    font-size: 0.92rem;
}

.websites-color-display span {
    color: #67e8f9;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.94rem;
    font-weight: 700;
}

.websites-color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.websites-color-swatch {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: var(--swatch);
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.websites-color-swatch:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.36);
}

.websites-color-swatch.is-selected {
    border-color: #67e8f9;
    box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.18);
}

.websites-addon-block + .websites-addon-block {
    margin-top: 1rem;
}

.websites-addon-head {
    margin-bottom: 0.75rem;
}

.websites-step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 1.1rem;
}

.websites-step-actions .btn-primary,
.websites-step-actions .btn-secondary {
    min-width: 140px;
    justify-content: center;
}

.websites-summary-sticky {
    display: grid;
    gap: 0.1rem;
}

.websites-summary-head,
.websites-summary-row,
.websites-breakdown-head,
.websites-price-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.websites-summary-head {
    margin-bottom: 1rem;
}

.websites-summary-label {
    display: block;
    font-size: 0.82rem;
    color: rgba(148, 163, 184, 0.88);
    margin-bottom: 0.2rem;
}

.websites-summary-head strong,
.websites-summary-row strong,
.websites-breakdown-head strong,
.websites-summary-sticky > strong {
    color: #f8fafc;
}

.websites-summary-chip {
    padding: 0.38rem 0.68rem;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.14);
    color: #67e8f9;
    font-size: 0.78rem;
    font-weight: 700;
}

.websites-summary-row {
    padding: 0.9rem 0;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    color: rgba(226, 232, 240, 0.78);
}

.websites-summary-breakdown {
    margin-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
    padding-top: 1rem;
}

.websites-breakdown-head {
    margin-bottom: 0.8rem;
}

.websites-breakdown-head span {
    color: rgba(226, 232, 240, 0.76);
}

.websites-breakdown-head strong {
    font-size: 1.3rem;
    color: #facc15;
}

.websites-price-lines {
    display: grid;
    gap: 0.65rem;
}

.websites-price-line {
    padding: 0.8rem 0.9rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.78);
    color: #dbeafe;
    font-size: 0.92rem;
}

.websites-price-line small {
    display: block;
    color: rgba(191, 219, 254, 0.62);
    margin-top: 0.18rem;
}

.websites-price-line.is-empty {
    justify-content: center;
    text-align: center;
    color: rgba(191, 219, 254, 0.66);
}

.websites-summary-note {
    margin-top: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(8, 145, 178, 0.12);
    border: 1px solid rgba(103, 232, 249, 0.16);
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #dbeafe;
}

.websites-summary-note i {
    color: #67e8f9;
    margin-top: 0.15rem;
}

.websites-summary-note p {
    margin: 0;
    line-height: 1.7;
}

.websites-review-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1rem;
}

.websites-brief-preview {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.9;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.84);
    border: 1px solid rgba(148, 163, 184, 0.15);
    color: #e2e8f0;
    padding: 1rem;
    min-height: 330px;
    font-family: "Cairo", sans-serif;
    font-size: 0.94rem;
}

.websites-purchase-btn {
    min-width: 240px;
    justify-content: center;
}

.websites-stepper-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.websites-guide-shell {
    margin-top: 1rem;
}

.websites-guide-card,
.websites-auth-card,
.websites-asset-card,
.websites-review-row,
.websites-review-brief {
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.84);
}

.websites-guide-card,
.websites-auth-card,
.websites-asset-card,
.websites-review-row,
.websites-review-brief {
    padding: 1rem;
}

.websites-guide-head,
.websites-asset-card-head,
.websites-uploaded-asset {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
}

.websites-guide-head {
    align-items: flex-start;
    margin-bottom: 0.9rem;
}

.websites-guide-head strong,
.websites-asset-card strong,
.websites-auth-card strong {
    color: #f8fafc;
}

.websites-guide-head p,
.websites-scope-head p,
.websites-asset-card-head p,
.websites-auth-card p {
    margin: 0.28rem 0 0;
    color: rgba(226, 232, 240, 0.72);
    line-height: 1.75;
}

.websites-guide-grid,
.websites-assets-grid {
    display: grid;
    gap: 0.85rem;
}

.websites-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.websites-guide-block {
    padding: 0.9rem;
    border-radius: 16px;
    background: rgba(8, 15, 28, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.websites-guide-copy {
    color: #dbeafe;
    line-height: 1.8;
}

.websites-guide-tags {
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.websites-guide-tags span {
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.12);
    color: #8be9ff;
    font-size: 0.82rem;
    font-weight: 700;
}

.websites-scope-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 0.9rem;
}

.websites-scope-head h3,
.websites-asset-card-head strong {
    margin: 0;
    color: #f8fafc;
}

.websites-assets-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 0.9rem;
}

.websites-auth-card {
    margin-bottom: 0.9rem;
}

.websites-auth-card .btn-secondary {
    margin-top: 0.85rem;
}

.websites-asset-card-head {
    align-items: center;
    margin-bottom: 0.85rem;
}

.websites-asset-list {
    display: grid;
    gap: 0.7rem;
}

.websites-uploaded-asset {
    align-items: center;
    padding: 0.85rem;
    border-radius: 16px;
    background: rgba(8, 15, 28, 0.74);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.websites-uploaded-asset div {
    display: grid;
    gap: 0.24rem;
}

.websites-uploaded-asset small,
.websites-uploaded-asset a {
    color: rgba(191, 219, 254, 0.78);
    font-size: 0.84rem;
}

.websites-uploaded-asset a {
    text-decoration: underline;
}

.websites-asset-delete {
    min-width: 90px;
    justify-content: center;
}

.websites-asset-confirm {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.76);
    color: #dbeafe;
    line-height: 1.8;
}

.websites-asset-confirm input {
    margin-top: 0.22rem;
}

.websites-review-row {
    display: grid;
    gap: 0.3rem;
}

.websites-review-value {
    color: #dbeafe;
    line-height: 1.85;
    word-break: break-word;
}

.websites-review-brief {
    margin-top: 1rem;
}

.websites-review-brief pre {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.9;
    color: #e2e8f0;
    font-family: "Cairo", sans-serif;
}

.websites-post-launch-card {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(15, 23, 42, 0.84);
}

.websites-post-launch-head strong {
    display: block;
    color: #f8fafc;
}

.websites-post-launch-head p {
    margin: 0.35rem 0 0;
    color: rgba(226, 232, 240, 0.74);
    line-height: 1.8;
}

.websites-post-launch-points {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.95rem;
}

.websites-post-launch-points span {
    display: block;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(8, 15, 28, 0.74);
    border: 1px solid rgba(148, 163, 184, 0.12);
    color: #dbeafe;
    line-height: 1.8;
}

.websites-policy-confirm {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(56, 189, 248, 0.24);
    background: rgba(6, 182, 212, 0.08);
    color: #e0f2fe;
    line-height: 1.8;
    font-weight: 700;
}

.websites-policy-confirm input {
    margin-top: 0.22rem;
}

.hidden {
    display: none !important;
}

@media (max-width: 1080px) {
    .websites-hero,
    .websites-builder-shell,
    .websites-review-grid {
        grid-template-columns: 1fr;
    }

    .websites-builder-side {
        position: static;
    }

    .websites-stepper-6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .websites-assets-grid,
    .websites-guide-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .websites-stepper,
    .websites-stepper-6 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .websites-page {
        width: min(100% - 1rem, 1220px);
        padding-top: 1.2rem;
    }

    .websites-hero,
    .websites-panel,
    .websites-summary-card,
    .websites-login-notice {
        padding: 1rem;
        border-radius: 22px;
    }

    .websites-form-grid {
        grid-template-columns: 1fr;
    }

    .websites-login-notice,
    .websites-step-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .websites-step-actions .btn-primary,
    .websites-step-actions .btn-secondary,
    .websites-purchase-btn {
        width: 100%;
        min-width: 0;
    }
}
