/* ============ ACCOUNTING SERVICES — page-specific compositions ============ */

/* What you get — benefit cards */
.get-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 44px; }
.get { padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.get .chip { transition: transform .25s var(--ease); }
.get:hover .chip { transform: scale(1.06) rotate(-3deg); }
.get h4 { color: var(--ink); font-size: 17px; }
.get p { color: var(--body); font-size: 14.5px; line-height: 1.5; }
@media (max-width: 900px){ .get-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .get-grid { grid-template-columns: 1fr; } }

/* 3-step process */
.proc { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 52px; position: relative; align-items: stretch; }
.proc::before { content:""; position:absolute; top: 27px; left: 16.667%; right: 16.667%; height: 2px; z-index: 0; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); }
.pstep { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.pstep .num { width: 54px; height: 54px; border-radius: 16px; background: var(--surface); box-shadow: var(--sh-sm), inset 0 0 0 1px var(--line); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--brand); margin: 0 auto; transition: background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease); }
.pstep:hover .num { background: var(--brand); color: #fff; box-shadow: var(--sh-brand); }
.pstep h4 { margin-top: 22px; color: var(--ink); font-size: 17px; }
.pstep p { margin-top: 12px; color: var(--body); font-size: 14.5px; line-height: 1.55; max-width: 264px; margin-inline: auto; text-wrap: balance; }
@media (max-width: 980px){ .proc { gap: 20px; } .pstep p { max-width: 220px; } }
@media (max-width: 760px){ .proc { grid-template-columns: 1fr; gap: 36px; } .proc::before { display:none; } .pstep p { max-width: 320px; } }

/* Fixed monthly pricing — model band (not a table / not tiers) */
.fixprice { position: relative; overflow: hidden; border-radius: var(--r-xl); background: var(--dark); color: var(--on-dark); padding: clamp(36px,4.5vw,60px); }
.fixprice .fp-glow { position:absolute; z-index:0; top:-40%; right:-8%; width:54%; height:150%; background: radial-gradient(closest-side, color-mix(in oklab,var(--brand) 32%, transparent), transparent); filter: blur(34px); opacity:.55; }
.fixprice > * { position: relative; z-index: 1; }
.fp-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px,5vw,64px); align-items: center; }
.fixprice .eyebrow { color: #fff; }
.fixprice h2 { color: #fff; margin-top: 14px; }
.fixprice .fp-lead { color: var(--on-dark-mut); font-size: 18px; margin-top: 16px; max-width: 460px; line-height: 1.55; }
.fp-points { margin-top: 26px; display: grid; gap: 14px; }
.fp-points .fpp { display: flex; align-items: center; gap: 13px; color: var(--on-dark); font-size: 15.5px; font-weight: 500; }
.fp-points .fpp .ic { width: 30px; height: 30px; border-radius: 9px; flex:none; display: grid; place-items: center; background: rgba(255,255,255,.07); color: #fff; box-shadow: inset 0 0 0 1px var(--dark-line); }
.fp-points .fpp .ic [data-lucide]{ width: 17px; height: 17px; color: var(--green); }
.fp-card { background: rgba(255,255,255,.05); border-radius: var(--r-lg); padding: 28px; box-shadow: inset 0 0 0 1px var(--dark-line); }
.fp-card .fp-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: #fff; background: rgba(255,255,255,.08); padding: 6px 12px; border-radius: var(--r-pill); box-shadow: inset 0 0 0 1px var(--dark-line); }
.fp-card .fp-headline { margin-top: 18px; font-family: var(--font-display); color: #fff; font-size: 30px; font-weight: 700; letter-spacing: -.02em; line-height: 1.1; }
.fp-card .fp-sub { color: var(--on-dark-mut); font-size: 14.5px; margin-top: 10px; line-height: 1.5; }
.fp-card .btn { width: 100%; margin-top: 22px; }
.fp-card .fp-note { text-align: center; color: var(--on-dark-mut); font-size: 12.5px; margin-top: 12px; }
@media (max-width: 820px){ .fp-grid { grid-template-columns: 1fr; gap: 32px; } }
