.feature-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F45925, #E53E3E);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #F45925;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F45925, #E53E3E);
    border-radius: 16px;
    color: white;
}

.feature-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Mobile scrollable features */
.features-scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.features-scroll-container::-webkit-scrollbar {
    display: none;
}

.features-scroll-wrapper {
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    min-width: max-content;
}

.feature-card-scroll {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    min-width: 280px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

@media (max-width: 500px) {
    .feature-card-scroll {
        width: 250px !important;
        height: auto !important;
    }
}

.feature-card-scroll:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #F45925;
}

.feature-card-scroll .feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

.feature-card-scroll .feature-icon img {
    width: 24px;
    height: 24px;
}

.feature-card-scroll h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.feature-card-scroll p {
    color: #6B7280;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

/* Use cases grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 500px;
}

@media (max-width: 768px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.use-case-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #F45925;
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.use-case-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.use-case-card p {
    color: #6B7280;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

/* Setup steps */
.setup-step-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.setup-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #F45925;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #F45925, #E53E3E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.setup-step-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 1rem;
}

.setup-step-card p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-icon {
    color: #F45925;
    opacity: 0.7;
}

/* Uptime card */
.uptime-card-container {
    max-width: 400px;
}

.uptime-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.uptime-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #F45925;
}

.uptime-icon {
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 16px;
    height: 16px;
    background: #10B981;
    border-radius: 50%;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.uptime-percentage {
    font-size: 3rem;
    font-weight: 700;
    color: #F45925;
    margin-bottom: 0.5rem;
}

.uptime-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.uptime-description {
    color: #6B7280;
    margin-bottom: 1.5rem;
}