/* Header */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.wsmenu-list .sub-menu {
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

/* Also target any hover states */
.wsmenu-list li:hover .sub-menu {
    transition: none !important;
    animation: none !important;
}

/* Layout adjustments */
body {
    padding-top: 72px;
}

.hero-section {
    padding-top: 80px !important;
}

/* Mobile header */
.wsmobileheader {
    background: #000;
    padding: 10px 20px;
}

.wsmobileheader .smllogo img {
    max-height: 40px;
}

#wsnavtoggle span,
#wsnavtoggle span:before,
#wsnavtoggle span:after {
    background: #fff;
}

.footer-logo {
    max-height: 80px;
}

/* Terminal Installation Steps */
.install-step {
    text-align: center;
    margin-bottom: 40px;
}

.step-number {
    margin-bottom: 20px;
}

.step-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    font: 600 18px/1 sans-serif;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.install-command-box {
    background: #1a202c;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #2d3748;
}

.command-header {
    background: linear-gradient(90deg, #2d3748 0%, #4a5568 100%);
    padding: 12px 20px;
    border-bottom: 1px solid #4a5568;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #fc5c7d; }
.terminal-dot.yellow { background: #f9ca24; }
.terminal-dot.green { background: #6bcf7f; }

.command-title {
    color: #a0aec0;
    font: 500 12px/1 sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copy-install-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.copy-install-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.copy-install-btn.copied {
    background: rgba(107, 207, 127, 0.2);
    border-color: rgba(107, 207, 127, 0.3);
    color: #6bcf7f;
}

.install-command-box code {
    color: #e2e8f0;
    font: 14px/1.5 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    white-space: nowrap;
    display: inline-block;
    min-width: 100%;
}

.command-prompt::before {
    content: '$ ';
    color: #6bcf7f;
    font-weight: 600;
}

.command-keyword {
    color: #f093fb;
    font-weight: 500;
}

.command-package {
    color: #4facfe;
    font-weight: 500;
}

.install-links {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.install-command-box pre {
    margin: 0;
    padding: 20px;
    background: transparent;
    overflow-x: auto;
    white-space: nowrap;
}

.summary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.summary-box {
    background: #1d212c;
    border: 1px solid #363f54;
    border-radius: 16px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .13);
}

.summary-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #7b5dd6;
    border-radius: 16px 16px 0 0;
}

.summary-header {
    text-align: center;
    margin-bottom: 40px;
}

.summary-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.summary-subtitle {
    font-size: 1.25rem;
    color: #b1b7cd;
    margin: 0;
    font-weight: 400;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: #363f54;
    border: 1px solid #505c77;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(123, 93, 214, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: #7b5dd6;
    box-shadow: 0 10px 30px rgba(123, 93, 214, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 1;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.benefit-description {
    font-size: 0.95rem;
    color: #b1b7cd;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.cta-section {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #363f54;
}

.cta-text {
    font-size: 1.1rem;
    color: #b1b7cd;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #7b5dd6;
    color: #ffffff;
    border: 2px solid #7b5dd6;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #6a4ec1;
    border-color: #6a4ec1;
    box-shadow: 0 8px 25px rgba(123, 93, 214, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #505c77;
}

.btn-secondary:hover {
    border-color: #7b5dd6;
    background: rgba(123, 93, 214, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .summary-box {
        padding: 30px 20px;
    }

    .summary-title {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(123, 93, 214, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-dot:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-dot:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
.floating-dot:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); opacity: 0.3; }
    50% { transform: translateY(-20px); opacity: 0.8; }
}

/* Custom spacing for products grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px; /* vertical gap, horizontal gap */
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Product card styling */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7b5dd6, #8b6ce6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.product-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.product-description {
    color: #b1b7cd;
    margin: 15px 0 20px 0;
    line-height: 1.6;
}

.product-features {
    margin-bottom: 25px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #b1b7cd;
}

.feature-item::before {
    content: "✓";
    color: #7b5dd6;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.product-button {
    width: auto;
    display: inline-block;
    background: #7b5dd6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: auto;
}

.product-button:hover {
    background: #6a4ec1;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

img.footer-logo {
    max-height: 65px;
}

.navbar-dark .wsmenu > .wsmenu-list > li > a.h-link {
    color: #fff !important;
}