/* ============================================================
   VALUES & SERVICES — what makes Talya special
   ============================================================ */

.values {
    background: linear-gradient(180deg, rgba(240, 220, 200, 0.3), transparent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .value-card { padding: 22px 18px; }
}

.value-card {
    background: linear-gradient(135deg, rgba(253, 241, 239, 0.7), rgba(248, 236, 224, 0.5));
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--dur) var(--ease);
    position: relative;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blush-200);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blush-100), var(--cream-200));
    display: grid;
    place-items: center;
    color: var(--rose-500);
    flex: 0 0 auto;
    box-shadow: inset 0 0 0 1px var(--gold-300), 0 2px 8px -2px rgba(168, 95, 101, 0.3);
}
.value-icon svg {
    width: 28px;
    height: 28px;
}

.value-title {
    font-family: "Frank Ruhl Libre", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wine-700);
    margin-bottom: 10px;
}

.value-desc {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* Services section */
.services {
    background: transparent;
}

.services-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.service-item {
    background: var(--cream-50);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    transition: all var(--dur-fast) var(--ease);
}

.service-item:hover {
    border-color: var(--gold-400);
    box-shadow: var(--shadow-sm);
}

.service-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
    display: grid;
    place-items: center;
    color: #fff;
    flex: 0 0 auto;
    margin-top: 2px;
}
.service-check svg {
    width: 14px;
    height: 14px;
    stroke-width: 3;
}

.service-text h4 {
    font-family: "Frank Ruhl Libre", serif;
    font-size: 1.1rem;
    color: var(--wine-700);
    margin: 0 0 4px;
}

.service-text p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    margin: 0;
}

/* Process timeline — always 3 steps, single row */
.process {
    background: linear-gradient(180deg, rgba(249, 226, 222, 0.4), transparent);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}

.step {
    position: relative;
    text-align: center;
    padding: 0 8px;
}

.step-number {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: "Frank Ruhl Libre", serif;
    font-size: 1.7rem;
    font-weight: 700;
    box-shadow: 0 8px 20px -8px rgba(168, 95, 101, 0.55);
}

.step-title {
    font-size: 1.08rem;
    color: var(--wine-700);
    margin-bottom: 8px;
    font-family: "Frank Ruhl Libre", serif;
    font-weight: 700;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* Arrow connector (RTL: points left ←) */
.step::after {
    content: "←";
    position: absolute;
    top: 19px;
    left: -14px;
    color: var(--gold-400);
    font-size: 1.4rem;
    opacity: 0.55;
    line-height: 1;
}
.step:last-child::after { display: none; }

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 24px;
    }
    .step::after {
        content: "↓";
        position: static;
        display: block;
        text-align: center;
        margin-top: 12px;
        font-size: 1.2rem;
    }
    .step:last-child::after { display: none; }
}
