/* ADVANCED FEATURES SECTION */
.advanced-features {
    padding: 5rem 0;
    background: linear-gradient(145deg, #f9f9ff, #f4f2ff);
}

.section-header.center {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3rem;
}

.advanced-features h2 {
    font-size: 2.3rem;
    background: linear-gradient(to right, #6366F1, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* Feature Card */
.feature-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    padding: 2.8rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(150, 100, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    border-color: rgba(120, 80, 255, 0.4);
}

/* Icon Styling */
.feature-icon-wrap {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.3rem;
    box-shadow: 0 12px 28px rgba(139, 92, 246, 0.35);
}

.feature-icon {
    font-size: 2.2rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #555;
    line-height: 1.65;
    font-size: 1rem;
}

/* Responsive */
@media(max-width:1024px){
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .features-grid {
        grid-template-columns: 1fr;
    }
}
.monthly-deliverables-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #fffdf5, #fff8d9);
}

.deliver-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37, #ffcc33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.deliver-subtitle {
    text-align: center;
    max-width: 750px;
    margin: 0.7rem auto 3rem;
    color: #4b4b4b;
    font-size: 1.15rem;
}

/* PREMIUM HYBRID GRID — Not basic 3x3 */
.deliverables-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 2rem;
}

.deliver-item {
    background: #ffffff;
    padding: 2.2rem 1.6rem;
    border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.3);
    box-shadow: 0 0 18px rgba(212,175,55,0.15);
    text-align: center;
    transition: .3s ease;
    position: relative;
}

.deliver-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 28px rgba(212,175,55,0.35);
}

.deliver-icon {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.deliver-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .6rem;
}

.deliver-item p {
    font-size: .95rem;
    color: #555;
    line-height: 1.5rem;
}

/* RESPONSIVE */
@media(max-width:1024px){
    .deliverables-flow {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media(max-width:768px){
    .deliverables-flow {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width:480px){
    .deliverables-flow {
        grid-template-columns: 1fr;
    }
}

.faq-contact-row {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #fffdf5, #fff8d9);
}

.faq-contact-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

/* LEFT — FAQ */
.faq-box {
    flex: 1;
}

.faq-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37, #ffcc33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid rgba(212,175,55,0.3);
    padding: 1rem 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    padding: .6rem 0;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 1.3rem;
    transition: .3s;
    color: #d4af37;
}

.faq-question.active::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    margin-top: .5rem;
    font-size: .98rem;
    color: #555;
    line-height: 1.5rem;
}

/* RIGHT — FORM */
.contact-form-box {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 18px;
    border: 1px solid rgba(212,175,55,0.3);
    box-shadow: 0 0 18px rgba(212,175,55,0.2);
}

/* Mobile Responsive */
@media(max-width: 900px) {
    .faq-contact-container {
        flex-direction: column;
    }
}

