/* ============================================================
   Accurate Hisab — Services Page  (New Layout)
   No tabs. Vertical editorial sections — each service gets
   a full-width feature block. Clean, spacious, scannable.
   ============================================================ */

/* ─── Page shell ─── */
.sv-page {
    max-width: 100%;
    padding-bottom: 80px;
}

/* ─── Section max-width wrapper ─── */
.sv-inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ════════════════════════════════════════════
   HERO — full-width banner
════════════════════════════════════════════ */
.sv-hero {
    padding: 56px 0 52px;
    text-align: center;
    position: relative;
}

.sv-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(47, 111, 237, .08);
    border: 1px solid rgba(47, 111, 237, .2);
    border-radius: 999px;
    padding: 5px 16px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--ah-primary);
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.sv-hero__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, .65);
    animation: svDot 2s ease-in-out infinite;
}

@keyframes svDot {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.sv-hero__h1 {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1.05;
    color: var(--ah-text);
    margin: 0 0 20px;
}

.sv-hero__h1 span {
    color: var(--ah-primary);
}

.sv-hero__sub {
    font-size: 16px;
    font-weight: 500;
    color: var(--ah-muted);
    line-height: 1.75;
    max-width: 540px;
    margin: 0 auto 36px;
}

.sv-hero__btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

/* ── 4 stat chips in a row ── */
.sv-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.sv-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    background: var(--ah-card);
    border: 1px solid var(--ah-stroke);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 700;
    color: var(--ah-text);
    white-space: nowrap;
}

.sv-chip__ico {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: rgba(47, 111, 237, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.sv-chip__val {
    font-size: 16px;
    font-weight: 900;
    color: var(--ah-primary);
}

.sv-chip__lbl {
    font-size: 11px;
    color: var(--ah-muted);
    font-weight: 600;
}


/* ════════════════════════════════════════════
   SERVICE ROW
   Alternating left-right layout.
   Each service = number + content + feature list
════════════════════════════════════════════ */
.sv-services {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sv-row {
    padding: 72px 0;
    position: relative;
}

/* Alternating background tones — makes each service clearly separate */
.sv-row:nth-child(odd) {
    background: transparent;
}

.sv-row:nth-child(even) {
    background: rgba(239, 246, 255, .55);
}

/* Strong divider line between rows */
.sv-row+.sv-row::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1040px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(47, 111, 237, .22) 20%,
            rgba(47, 111, 237, .22) 80%,
            transparent 100%);
}

.sv-row__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* Odd rows: text left, card right. Even rows: card left, text right */
.sv-row:nth-child(even) .sv-row__grid {
    direction: rtl;
}

.sv-row:nth-child(even) .sv-row__grid>* {
    direction: ltr;
}

/* ── Left/text column ── */
.sv-row__num {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: x-large;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ah-primary);
    background: rgba(47, 111, 237, .08);
    border: 1px solid rgba(47, 111, 237, .2);
    border-radius: 999px;
    padding: 4px 12px;
    margin-bottom: 18px;
}

.sv-row__ico {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 14px;
    display: block;
}

.sv-row__h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1.1;
    color: var(--ah-text);
    margin: 0 0 16px;
}

.sv-row__h2 span {
    color: var(--ah-primary);
}

.sv-row__p {
    font-size: 15.5px;
    font-weight: 500;
    color: rgba(15, 23, 42, .72);
    line-height: 1.85;
    margin: 0 0 20px;
}

.sv-row__btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ── Right/card column ── */
.sv-card {
    background: var(--ah-card);
    border: 1px solid var(--ah-stroke);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(22, 60, 120, .03), 0 16px 48px rgba(22, 60, 120, .09);
    transition: transform .22s cubic-bezier(.34, 1.56, .64, 1), box-shadow .22s ease;
}

.sv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 12px rgba(22, 60, 120, .05), 0 28px 70px rgba(22, 60, 120, .13);
}

/* Coloured top stripe */
.sv-card__bar {
    height: 4px;
    background: linear-gradient(90deg, var(--ah-primary), var(--ah-primary-2));
}

.sv-card__body {
    padding: 26px 24px;
}

/* Steps inside card */
.sv-card__label {
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ah-primary);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(47, 111, 237, .12);
}

.sv-card__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sv-card__step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 16px;
}

.sv-card__step:last-child {
    padding-bottom: 0;
}

.sv-card__step-l {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.sv-card__step-n {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(47, 111, 237, .09);
    border: 1.5px solid rgba(47, 111, 237, .22);
    color: var(--ah-primary);
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-card__step-line {
    width: 1.5px;
    flex: 1;
    background: rgba(120, 160, 235, .2);
    margin: 4px 0;
    min-height: 10px;
}

.sv-card__step:last-child .sv-card__step-line {
    display: none;
}

.sv-card__step-t {
    font-size: 14px;
    font-weight: 800;
    color: var(--ah-text);
    margin-bottom: 3px;
    padding-top: 2px;
    letter-spacing: -.015em;
}

.sv-card__step-d {
    font-size: 13px;
    font-weight: 500;
    color: rgba(15, 23, 42, .65);
    line-height: 1.65;
}

/* Includes checklist in card */
.sv-card__list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.sv-card__item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ah-text);
    line-height: 1.55;
}

.sv-card__check {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .25);
    color: #16a34a;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-weight: 900;
}

/* Quote footer inside card */
.sv-card__footer {
    border-top: 1px solid rgba(120, 160, 235, .14);
    margin-top: 20px;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.sv-card__footer-text {
    font-size: 13px;
    color: rgba(15, 23, 42, .6);
    font-weight: 600;
    line-height: 1.6;
}

.sv-card__footer-text strong {
    display: block;
    font-size: 13.5px;
    font-weight: 800;
    color: var(--ah-text);
    margin-bottom: 3px;
}


/* ════════════════════════════════════════════
   WHY US — horizontal feature strip
════════════════════════════════════════════ */
.sv-why {
    padding: 60px 0;
    background: rgba(255, 255, 255, .5);
    border-top: 1px solid rgba(120, 160, 235, .12);
    border-bottom: 1px solid rgba(120, 160, 235, .12);
}

.sv-why__head {
    text-align: center;
    margin-bottom: 40px;
}

.sv-why__eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ah-primary);
    margin-bottom: 10px;
}

.sv-why__h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    letter-spacing: -.04em;
    color: var(--ah-text);
    margin: 0;
    line-height: 1.15;
}

.sv-why__h2 span {
    color: var(--ah-primary);
}

.sv-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sv-why__card {
    padding: 24px 20px;
    background: var(--ah-card);
    border: 1px solid var(--ah-stroke);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform .2s cubic-bezier(.34, 1.56, .64, 1), box-shadow .2s ease;
}

.sv-why__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(22, 60, 120, .12);
}

.sv-why__ico {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(47, 111, 237, .07);
    border: 1px solid rgba(47, 111, 237, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.sv-why__ico svg {
    width: 22px;
    height: 22px;
    stroke: var(--ah-primary);
}

.sv-why__t {
    font-size: 15px;
    font-weight: 800;
    color: var(--ah-text);
    letter-spacing: -.025em;
    margin-bottom: 8px;
}

.sv-why__d {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(15, 23, 42, .65);
    line-height: 1.7;
}


/* ════════════════════════════════════════════
   BOTTOM CTA BANNER
════════════════════════════════════════════ */
.sv-cta-banner {
    background: var(--ah-card);
    border: 1px solid var(--ah-stroke);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    position: relative;
}

.sv-cta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ah-primary), var(--ah-primary-2));
}

.sv-cta-banner__inner {
    padding: 48px 44px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.sv-cta-banner__h {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    letter-spacing: -.04em;
    color: var(--ah-text);
    margin: 0 0 10px;
    line-height: 1.15;
}

.sv-cta-banner__h span {
    color: var(--ah-primary);
}

.sv-cta-banner__p {
    font-size: 14px;
    color: var(--ah-muted);
    line-height: 1.7;
    max-width: 480px;
    margin: 0;
    font-weight: 500;
}

.sv-cta-banner__btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    min-width: 200px;
}

.sv-cta-banner__btns .ah-btn {
    justify-content: center;
    width: 100%;
}


/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 860px) {
    .sv-row__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sv-row:nth-child(even) .sv-row__grid {
        direction: ltr;
    }

    .sv-why__grid {
        grid-template-columns: 1fr 1fr;
    }

    .sv-cta-banner__inner {
        grid-template-columns: 1fr;
        padding: 32px 28px;
    }

    .sv-cta-banner__btns {
        flex-direction: row;
        min-width: 0;
        flex-wrap: wrap;
    }

    .sv-cta-banner__btns .ah-btn {
        width: auto;
    }
}

@media (max-width: 540px) {
    .sv-inner {
        padding: 0 16px;
    }

    .sv-hero {
        padding: 36px 0 40px;
    }

    .sv-row {
        padding: 40px 0;
    }

    .sv-why__grid {
        grid-template-columns: 1fr 1fr;
    }

    .sv-chips {
        flex-direction: column;
        align-items: center;
    }

    .sv-cta-banner__inner {
        padding: 28px 20px;
    }

    .sv-cta-banner__btns {
        flex-direction: column;
    }

    .sv-cta-banner__btns .ah-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .sv-why__grid {
        grid-template-columns: 1fr;
    }
}