/* ================================================================
   AHNAF.KZ — SERVICE PAGES
   Стиль в духе главной страницы: просторно, крупно, чисто.
================================================================ */

.srv-page { padding: 0 0 100px; }
.srv-wrap { max-width: 880px; margin: 0 auto; }

/* ── Breadcrumb ───────────────────────────────────────────────── */
.srv-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    padding: 22px 0 36px;
    font-size: 12.5px; color: var(--muted);
    flex-wrap: wrap;
}
.srv-breadcrumb a {
    color: var(--muted); text-decoration: none;
    transition: color var(--tr);
}
.srv-breadcrumb a:hover { color: var(--teal); }
.srv-breadcrumb__sep { color: var(--cream-2); }
.srv-breadcrumb__cur { color: var(--ink-2); font-weight: 500; }

/* ── Page title ────────────────────────────────────────────────── */
.srv-title-block {
    margin-bottom: 48px;
}
.srv-eyebrow {
    font-size: 10.5px; font-weight: 600;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--teal); display: block; margin-bottom: 12px;
}
.srv-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 400; color: var(--ink);
    line-height: 1.06; margin-bottom: 14px;
}
.srv-lead {
    font-size: 16px; color: var(--muted);
    line-height: 1.7; max-width: 600px;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT HERO — лого + специалист БЕЗ фонов
══════════════════════════════════════════════════════════════ */
.srv-contact {
    display: flex; align-items: center; gap: 36px;
    margin-bottom: 64px;
    padding: 36px 40px;
    background: var(--white);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-card);
}
@media (max-width: 640px) {
    .srv-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 28px 24px;
    }
}

/* Лого — без фона, просто картинка */
.srv-contact__logo {
    width: 130px; 
    height: 130px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}

@media (max-width: 640px) { .srv-contact__logo { width: 120px; } }
.srv-contact__logo img {
    width: 100%; 
    object-fit: contain;
}

/* Разделитель */
.srv-contact__sep {
    width: 1px; align-self: stretch;
    background: var(--cream-2);
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .srv-contact__sep {
        width: 100%; height: 1px; align-self: auto;
    }
}

/* Правая часть — специалист, без фона */
.srv-contact__info {
    flex: 1; min-width: 0;
    display: flex; flex-direction: column;
    gap: 6px;
}
.srv-contact__label {
    font-size: 10px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 4px;
}
.srv-contact__name {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 400; color: var(--ink);
    line-height: 1.2;
}
.srv-contact__role {
    font-size: 14px; color: var(--muted);
    line-height: 1.5;
}
.srv-contact__btns {
    display: flex; gap: 10px;
    margin-top: 20px; flex-wrap: wrap;
}

/* WhatsApp button */
.srv-btn-wa {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 12px 24px;
    background: #25D366; color: #fff;
    border-radius: 28px;
    font-size: 14px; font-weight: 600;
    text-decoration: none; cursor: pointer;
    transition: opacity var(--tr);
    font-family: var(--font-body);
}
.srv-btn-wa:hover { opacity: .88; }
.srv-btn-wa img { width: 20px; height: 20px; flex-shrink: 0; }

/* Phone button */
.srv-btn-tel {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px;
    background: var(--white);
    border: 1.5px solid var(--teal-light);
    border-radius: 28px;
    color: var(--teal);
    text-decoration: none;
    font-size: 14px; font-weight: 500;
    transition: background var(--tr), border-color var(--tr);
    font-family: var(--font-body);
}
.srv-btn-tel:hover { background: var(--mint); border-color: var(--teal); }

/* ── Section heading ──────────────────────────────────────────── */
.srv-section-head {
    margin-bottom: 28px;
}
.srv-section-label {
    font-size: 10.5px; font-weight: 600;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--teal); display: block; margin-bottom: 8px;
}
.srv-section-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 400; color: var(--ink);
}

/* ── Benefit blocks 2×2 ───────────────────────────────────────── */
.srv-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 64px;
}
@media (max-width: 540px) { .srv-blocks { grid-template-columns: 1fr; } }

.srv-block {
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-card);
    padding: 32px 28px 28px;
    display: flex; flex-direction: column; gap: 14px;
    transition: transform var(--tr), box-shadow var(--tr);
}
.srv-block:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.srv-block__icon {
    width: 50px; height: 50px;
    background: var(--mint); border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal);
}
.srv-block__title {
    font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.3;
}
.srv-block__desc {
    font-size: 14px; color: var(--muted); line-height: 1.7;
}

/* ── Info text blocks ─────────────────────────────────────────── */
.srv-info-blocks {
    display: flex; flex-direction: column; gap: 16px;
    margin-bottom: 64px;
}
.srv-info-card {
    background: var(--white);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-card);
    padding: 32px 32px 28px;
    display: flex; flex-direction: column; gap: 12px;
    border-left: 4px solid var(--teal);
    transition: transform var(--tr);
}
.srv-info-card:hover { transform: translateX(4px); }
.srv-info-card__icon {
    width: 56px; height: 56px;
    background: var(--mint); border-radius: 100px;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); margin-bottom: 4px;
}
.srv-info-card__title { font-size: 17px; font-weight: 700; color: var(--ink); }
.srv-info-card__desc  { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ── Divider ──────────────────────────────────────────────────── */
.srv-divider {
    position: relative; height: 1px;
    background: var(--teal-light); margin: 56px 0;
}
.srv-divider .divider__diamond {
    position: absolute; left: 50%; top: 50%;
    width: 10px; height: 10px;
    background: var(--bg); border: 1.5px solid var(--teal);
    transform: translate(-50%, -50%) rotate(45deg);
}

/* ── Link cards ───────────────────────────────────────────────── */
.srv-action-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 64px;
}
@media (max-width: 560px) { .srv-action-grid { grid-template-columns: 1fr; } }
.srv-action-grid--1col { grid-template-columns: 1fr; }

.srv-link-card {
    display: flex; align-items: center; gap: 18px;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 22px 24px;
    box-shadow: var(--sh-card);
    text-decoration: none; color: inherit;
    border: 1.5px solid transparent;
    transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.srv-link-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
    border-color: var(--teal-light);
}
.srv-link-card__img {
    width: 48px; height: 48px;
    object-fit: contain; flex-shrink: 0;
}
.srv-link-card__icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.srv-link-card__icon > img{
    width: 100%;
    height: 100%;
}
.srv-link-card__icon--green  { padding:6px; }
.srv-link-card__icon--blue   { padding:6px; }
.srv-link-card__icon--black  { padding:0px; }
.srv-link-card__icon--android{ padding:6px; }
.srv-link-card__icon--teal   { background-color: var(--teal); color: #fff; }

.srv-link-card__body { flex: 1; min-width: 0; }
.srv-link-card__label {
    font-size: 10.5px; font-weight: 600;
    color: var(--muted); text-transform: uppercase;
    letter-spacing: .08em; display: block; margin-bottom: 3px;
}
.srv-link-card__name {
    font-size: 15.5px; font-weight: 600; color: var(--ink);
    line-height: 1.3;
}
.srv-link-card__sub {
    font-size: 12.5px; color: var(--muted); margin-top: 2px;
}
.srv-link-card__arrow {
    color: var(--teal); flex-shrink: 0;
    transition: transform var(--tr);
}
.srv-link-card:hover .srv-link-card__arrow { transform: translateX(4px); }

/* ── External CTA ─────────────────────────────────────────────── */
.srv-cta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px;
    background: var(--teal-dark);
    border-radius: var(--r-xl);
    padding: 32px 40px;
    text-decoration: none; color: #fff;
    transition: opacity var(--tr), transform var(--tr);
    margin-bottom: 0;
}
.srv-cta:hover { opacity: .93; transform: translateY(-2px); }
@media (max-width: 540px) { .srv-cta { padding: 24px 24px; flex-wrap: wrap; } }

.srv-cta__text { display: flex; flex-direction: column; gap: 5px; }
.srv-cta__eyebrow {
    font-size: 10.5px; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.55);
}
.srv-cta__name { font-family: var(--font-display); font-size: clamp(20px, 3vw, 28px); font-weight: 400; color: #fff; }
.srv-cta__sub  { font-size: 13.5px; color: rgba(255,255,255,.65); }

.srv-cta__btn {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 28px; padding: 12px 28px;
    font-size: 14px; font-weight: 600; color: #fff;
    white-space: nowrap; flex-shrink: 0;
    transition: background var(--tr);
}
.srv-cta:hover .srv-cta__btn { background: rgba(255,255,255,.22); }

/* ── Certificate ──────────────────────────────────────────────── */
.srv-cert-wrap {
    background: var(--white);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-card);
    overflow: hidden;
    margin-bottom: 64px;
}
.srv-cert-wrap img {
    width: 100%; display: block;
    max-height: 520px; object-fit: contain;
}
.srv-cert-caption {
    padding: 16px 28px;
    font-size: 12.5px; color: var(--muted); text-align: center;
    border-top: 1px solid var(--cream-2);
}

/* ── Kaspi QR card ───────────────────────────────────────────── */
.srv-kaspi-card {
    display: flex; align-items: center; gap: 40px;
    background: var(--white);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-md);
    padding: 40px 44px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}
@media (max-width: 560px) { .srv-kaspi-card { padding: 28px 24px; gap: 24px; } }
.srv-kaspi-qr {
    width: 160px; height: 160px;
    object-fit: contain; flex-shrink: 0;
    /* border-radius: var(--r-lg); */
    /* border: 1px solid var(--cream-2); */
}
.srv-kaspi-text { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 10px; }
.srv-kaspi-title { font-family: var(--font-display); font-size: clamp(18px, 3vw, 24px); font-weight: 400; color: var(--ink); }
.srv-kaspi-desc  { font-size: 14.5px; color: var(--muted); line-height: 1.65; }
.srv-kaspi-btn {
    display: inline-flex; align-items: center; gap: 10px;
    width: fit-content;
    background: var(--teal); color: #fff;
    padding: 13px 30px; border-radius: 30px;
    font-size: 14.5px; font-weight: 600;
    text-decoration: none; transition: background var(--tr);
}
.srv-kaspi-btn:hover { background: var(--teal-dark); }
.srv-kaspi-btn img { width: 20px; height: 20px; }

/* ── Spacing helper ───────────────────────────────────────────── */
.srv-mb { margin-bottom: 64px; }