body{
    font-family: 'Inter', sans-serif;
}

.feature-card{
    background:white;
    padding:30px;
    border-radius:12px;
    border:1px solid #e5e7eb;
}

.primary{
    color:#ea580b;
}

.feature-card h3{
    font-weight:600;
    margin-bottom:10px;
}

.cta{
    background:#ea580b;
    color:white;
    padding:14px 24px;
    border-radius:8px;
    font-weight:600;
    display:inline-block;
}

.cta-light{
    background:#f59e0b;
    color:white;
    padding:14px 24px;
    border-radius:8px;
    font-weight:600;
    display:inline-block;
}

.step{
    text-align:center;
}

.step-number{
    width:40px;
    height:40px;
    background:#ea580b;
    color:white;
    border-radius:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:10px;
}

.feature{
    background:#f9fafb;
    padding:20px;
    border-radius:10px;
    text-align:center;
}

.pricing-scroll{
    display:flex;
    gap:30px;
    overflow-x:auto;
    padding:20px;
}

.pricing-card{
    background:white;
    border-radius:14px;
    border:1px solid #e5e7eb;
    padding:30px;
    min-width:260px;
}

.price{
    font-size:32px;
    font-weight:700;
    margin:20px 0;
}

.pricing-card ul{
    margin-bottom:20px;
    color:#6b7280;
}

.billing-toggle{
    display:flex;
    justify-content:center;
    gap:10px;
}

.billing-toggle button{
    padding:10px 18px;
    border-radius:8px;
    background:#e5e7eb;
}

.billing-toggle .active{
    background:#f59e0b;
    color:white;
}

.feature-box{
    background:white;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:30px;
    text-align:center;
    transition:all 0.25s ease;
}

.feature-box:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.feature-icon{
    font-size:28px;
    margin-bottom:12px;
}

.feature-box h3{
    font-weight:600;
    margin-bottom:8px;
}

.feature-box p{
    color:#6b7280;
    font-size:14px;
}

.faq-item{
    background:white;
    border-radius:10px;
    padding:18px 22px;
    box-shadow:0 4px 14px rgba(0,0,0,0.05);
    cursor:pointer;
}

.faq-item summary{
    font-weight:600;
    font-size:16px;
    cursor:pointer;
    list-style:none;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item p{
    margin-top:12px;
    color:#6b7280;
    line-height:1.6;
}

.red-accent{
    background-color: rgb(254, 242, 242);
    border-color: rgb(254, 226, 226) !important;
}

.green-accent{
    background-color: rgb(236, 253, 245);
    border-color: rgb(209, 250, 229) !important;
}