/* Section */
.advantages {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f5f5f5, #ececec);
    text-align: center;
}

/* Header */
.adv-header {
    margin-bottom: 50px;
}

.adv-header .tag {
    background: #ddd;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
}

.adv-header h2 {
    color: #3e2723;
    margin-bottom: 10px;
}

.adv-header p {
    color: #666;
    max-width: 600px;
    margin: auto;
}

/* Grid */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Card */
.adv-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Hover Effect */
.adv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Icon */
.adv-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3e2723, #6d4c41);
    display: flex;
    align-items: center;
    justify-content: center;
}

.adv-card .icon i {
    color: #fff;
    font-size: 22px;
}

/* Text */
.adv-card h4 {
    color: #3e2723;
    margin-bottom: 10px;
}

.adv-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
    .adv-header h2 {
        font-size: 22px;
    }
}


/* Section */
.process {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f5f5f5, #ececec);
}

/* Header */
.process-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-header .tag {
    background: #ddd;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
}

.process-header h2 {
    color: #3e2723;
}

/* Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */
.process-card {
    background: #e9ecef;
    padding: 30px 20px;
    border-radius: 15px;
    position: relative;
    transition: 0.3s;
}

/* Left Accent Border */
.process-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 4px;
    height: 60%;
    background: #3e2723;
    border-radius: 10px;
}

/* Number */
.process-card .number {
    color: #2e7d32;
    font-size: 28px;
    margin-bottom: 10px;
}

/* Text */
.process-card h4 {
    color: #3e2723;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Hover */
.process-card:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        text-align: center;
    }

    .process-card::before {
        display: none;
    }
}