.custom-options-card {
    margin-top: 0.75rem;
    border: 1px solid #2a3441;
    background: radial-gradient(circle at top right, rgba(58, 70, 86, 0.2) 0%, rgba(13, 13, 13, 1) 45%);
}

.options-sections {
    display: grid;
    gap: 1rem;
}

.option-section {
    border: 1px solid #232c37;
    border-radius: 10px;
    padding: 0.9rem;
    background: rgba(5, 7, 10, 0.45);
}

.option-section legend {
    color: #f5f7fa;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0 0.4rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0.75rem;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.75rem;
    background: #0b0f14;
    border: 1px solid #242e39;
    border-radius: 8px;
    color: #d8d8d8;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.option-item:hover {
    border-color: #4b5e76;
    background: #121923;
    transform: translateY(-1px);
}

.option-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 17px;
    height: 17px;
    margin: 0;
    border: 1px solid #4e6077;
    border-radius: 4px;
    background: #000000;
    display: inline-grid;
    place-content: center;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.option-item input[type="checkbox"]::before {
    content: "";
    width: 9px;
    height: 9px;
    transform: scale(0);
    transition: transform 0.15s ease-in-out;
    box-shadow: inset 1em 1em #ffffff;
    border-radius: 2px;
}

.option-item input[type="checkbox"]:checked {
    border-color: #87a0c1;
    background: #233349;
}

.option-item input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.option-item:has(input[type="checkbox"]:checked) {
    border-color: #6f89ab;
    background: #192435;
    color: #ffffff;
}

.option-item input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 17px;
    height: 17px;
    margin: 0;
    border: 1px solid #4e6077;
    border-radius: 50%;
    background: #000000;
    display: inline-grid;
    place-content: center;
    transition: border-color 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
}

.option-item input[type="radio"]::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.15s ease-in-out;
    background: #ffffff;
}

.option-item input[type="radio"]:checked {
    border-color: #87a0c1;
    background: #233349;
}

.option-item input[type="radio"]:checked::before {
    transform: scale(1);
}

.option-item:has(input[type="radio"]:checked) {
    border-color: #6f89ab;
    background: #192435;
    color: #ffffff;
}

.option-item span {
    line-height: 1.25;
    font-size: 0.9rem;
}

.clear-options-btn {
    margin-top: 1rem;
    border: 1px solid #34465c;
    border-radius: 8px;
    background: transparent;
    color: #ccd6e4;
    padding: 0.6rem 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.clear-options-btn:hover {
    border-color: #647e9f;
    color: #ffffff;
    background: #141d2a;
}

.custom-select {
    width: 100%;
    padding: 1rem;
    background: #000000;
    border: 1px solid #333333;
    border-radius: 6px;
    color: #ffffff;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.custom-select:focus {
    border-color: #4d6078;
    box-shadow: 0 0 0 3px rgba(77, 96, 120, 0.2);
}

.custom-spacer {
    margin-top: 1rem;
}

.contact-content button[type="submit"] {
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-content button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    background: #f3f3f3;
}

.contact-content button[type="submit"]:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
    }

    .option-item {
        padding: 0.6rem 0.65rem;
    }
}

.ecom-hero-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Global interactive top banner */
.main-header.interactive-banner {
    position: sticky;
    top: 0.7rem;
    z-index: 1100;
    padding: 0.85rem 1rem;
    border: 1px solid #2e3a48;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(11, 14, 19, 0.92), rgba(17, 22, 29, 0.84));
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.main-header.interactive-banner::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(120deg, rgba(143, 174, 217, 0.28), transparent 30%, transparent 70%, rgba(143, 174, 217, 0.2));
    pointer-events: none;
    z-index: 0;
}

.main-header.interactive-banner .logo,
.main-header.interactive-banner .main-nav,
.main-header.interactive-banner .header-cta {
    position: relative;
    z-index: 1;
}

.main-header.interactive-banner .logo img {
    animation: logoSpinTop 6s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
    transform-origin: center center;
}

.main-header.interactive-banner .main-nav a {
    position: relative;
    color: #a5b0bf;
    padding-bottom: 0.15rem;
}

.main-header.interactive-banner .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(151, 178, 209, 0), rgba(151, 178, 209, 0.95), rgba(151, 178, 209, 0));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

.main-header.interactive-banner .main-nav a:hover {
    color: #f3f6fb;
}

.main-header.interactive-banner .main-nav a:hover::after {
    transform: scaleX(1);
}

.main-header.interactive-banner .header-cta {
    border-color: #3e4c5f;
    background: linear-gradient(145deg, rgba(17, 23, 31, 0.95), rgba(7, 11, 16, 0.92));
}

.main-header.interactive-banner .header-cta:hover {
    border-color: #7189aa;
    background: linear-gradient(145deg, rgba(23, 31, 43, 0.98), rgba(12, 17, 24, 0.95));
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .main-header.interactive-banner {
        position: relative;
        top: 0;
        padding: 0.9rem 0.75rem;
    }
}

@keyframes logoSpinTop {
    0% { transform: rotate(0deg); }
    82% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ecom-top-shell {
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-bottom: 2rem;
}

.ecom-top-content {
    background: transparent;
    border-radius: 0;
    padding-top: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.ecom-tour-btn {
    border: 1px solid #374151;
    background: #0f1722;
    color: #f3f4f6;
    border-radius: 8px;
    padding: 0.55rem 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ecom-tour-btn:hover {
    transform: translateY(-2px);
    border-color: #5e7694;
    background: #17202d;
}

.ecom-tour-btn.secondary {
    background: transparent;
}

.ecom-tilt-grid {
    perspective: 1200px;
}

.ecom-plain-grid {
    margin-bottom: 2.2rem;
}

.ecom-plain-card {
    background: linear-gradient(165deg, rgba(18, 22, 30, 0.95), rgba(8, 10, 14, 0.95));
    border-color: #2b3542;
}

.ecom-tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.22s ease, border-color 0.25s ease;
    will-change: transform;
}

.ecom-roadmap {
    margin-top: 0.8rem;
    border: none;
    background: transparent;
    padding: 0.5rem 0;
}

.ecom-scroll-tutorial {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 4rem;
    display: grid;
    gap: 2.6rem;
}

.ecom-scroll-step {
    position: relative;
    overflow: visible;
    padding: 0.2rem 0;
    border: none;
    background: transparent;
}

.ecom-scroll-step::before {
    content: attr(data-step-label);
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.72rem;
    color: #8fa4bf;
    border: 1px solid #324253;
    border-radius: 999px;
    padding: 0.25rem 0.55rem;
    background: rgba(16, 24, 35, 0.85);
}

.ecom-scroll-copy {
    margin-bottom: 0.6rem;
    max-width: 760px;
}

.ecom-scroll-copy h3 {
    margin-bottom: 0.4rem;
}

.ecom-scroll-copy p {
    color: #9eaec0;
}

.ecom-floating-stage {
    perspective: 1400px;
    min-height: 220px;
    display: grid;
    place-items: center;
    overflow: visible;
}

.ecom-floating-mockup {
    width: min(520px, 92%);
    border-radius: 16px;
    border: 1px solid #334459;
    background: linear-gradient(145deg, rgba(20, 33, 47, 0.96), rgba(9, 13, 20, 0.96));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    transform: rotateX(22deg) rotateY(-15deg) translateY(42px) scale(0.9);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
}

.ecom-scroll-step.active-step .ecom-floating-mockup {
    transform: rotateX(10deg) rotateY(-8deg) translateY(0) scale(1);
    opacity: 1;
    animation: floatMockup 5s ease-in-out infinite;
}

.website-mockup {
    padding: 1rem;
}

.mockup-topbar {
    height: 26px;
    border-radius: 8px;
    background: linear-gradient(90deg, #394f6a, #26384b);
    margin-bottom: 0.75rem;
}

.mockup-hero {
    height: 72px;
    border-radius: 10px;
    background: linear-gradient(120deg, #58759a, #324861);
    margin-bottom: 0.75rem;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

.mockup-grid span {
    display: block;
    height: 48px;
    border-radius: 8px;
    background: rgba(168, 194, 226, 0.2);
}

.sales-mockup {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    padding: 1rem;
}

.sale-card {
    border: 1px solid #3a4c62;
    border-radius: 10px;
    padding: 0.9rem 0.5rem;
    text-align: center;
    font-weight: 700;
    color: #dce9f7;
    background: linear-gradient(145deg, rgba(95, 129, 166, 0.26), rgba(20, 26, 36, 0.8));
    animation: pulseSale 2.8s ease-in-out infinite;
}

.sale-card:nth-child(2) { animation-delay: 0.3s; }
.sale-card:nth-child(3) { animation-delay: 0.6s; }

.signup-mockup {
    padding: 1rem;
}

.signup-mockup h4 {
    margin: 0 0 0.8rem;
}

.signup-line {
    height: 42px;
    border: 1px solid #3a4d63;
    border-radius: 10px;
    margin-bottom: 0.65rem;
    background: rgba(15, 21, 31, 0.85);
}

.signup-mockup button {
    margin-top: 0.25rem;
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 0.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #dce6f5, #ffffff);
    color: #111827;
}

.ecom-steps {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 0.9rem;
}

.ecom-step-item {
    border: 1px solid #27303b;
    background: #0d1218;
    border-radius: 10px;
    padding: 0.8rem;
    color: #d7dde6;
    display: grid;
    gap: 0.35rem;
}

.ecom-step-item strong {
    color: #92a7c3;
    font-size: 0.9rem;
}

.ecom-tour-panel {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: min(360px, calc(100vw - 2rem));
    background: rgba(8, 12, 18, 0.94);
    border: 1px solid #334154;
    border-radius: 12px;
    padding: 1rem;
    z-index: 12000;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.ecom-tour-kicker {
    color: #94a3b8;
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
}

.ecom-tour-progress {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: #1a2432;
    margin: 0 0 0.7rem;
    overflow: hidden;
}

#tour-progress-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #5f7da3, #9bb7da);
    transition: width 0.25s ease;
}

.ecom-tour-panel h3 {
    margin: 0 0 0.4rem;
}

.ecom-tour-panel p {
    margin: 0;
    color: #d7dde6;
}

.ecom-tour-actions {
    margin-top: 0.9rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ecom-tour-close {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
}

.tour-focus {
    outline: 2px solid rgba(130, 167, 214, 0.9);
    outline-offset: 4px;
    border-radius: 12px;
    transition: outline-color 0.2s ease;
}

@keyframes ecomFloat {
    0%,
    100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-14px) translateX(8px);
    }
}

@keyframes floatMockup {
    0%, 100% { transform: rotateX(10deg) rotateY(-8deg) translateY(0) scale(1); }
    50% { transform: rotateX(11deg) rotateY(-7deg) translateY(-10px) scale(1.01); }
}

@keyframes pulseSale {
    0%, 100% { box-shadow: 0 0 0 rgba(124, 167, 214, 0); }
    50% { box-shadow: 0 0 20px rgba(124, 167, 214, 0.28); }
}

@media (prefers-reduced-motion: reduce) {
    .ecom-floating-mockup,
    .ecom-tour-btn,
    .ecom-tilt-card {
        animation: none !important;
        transition: none !important;
    }
}

