/* 콘텐츠 스튜디오 — 홈(home) 전용 CSS. 공통은 base.css, 여기선 히어로·ct-* 섹션만. */

/* ── 스크롤 등장(카드 시간차) — 홈 공용 ── */
.dg-stagger > * {
    opacity: 0;
    transform: translateY(30px) scale(.97);
    transition: opacity .55s ease, transform .6s cubic-bezier(.2, .7, .2, 1);
}
.dg-stagger.in > * { opacity: 1; transform: none; }
.dg-stagger.in > *:nth-child(2) { transition-delay: .13s; }
.dg-stagger.in > *:nth-child(3) { transition-delay: .26s; }
.dg-stagger.in > *:nth-child(4) { transition-delay: .39s; }
.dg-stagger.in > *:nth-child(5) { transition-delay: .52s; }
.dg-stagger.in > *:nth-child(6) { transition-delay: .65s; }
/* 중첩 컨테이너 자신은 애니메이션 없이 자식만 순차 등장 */
.dg-stagger > .dg-stagger { opacity: 1; transform: none; transition: none; }
@media (prefers-reduced-motion: reduce) {
    .dg-stagger > * { transition: none; transform: none; }
}

/* ── 히어로 ── */
.dg-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(46% 40% at 50% -10%, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 60%),
        radial-gradient(120% 90% at 50% 6%, transparent 50%, rgba(0, 0, 0, .32) 100%),
        linear-gradient(160deg, #1a1030 0%, #241247 46%, #3a1d6e 100%);
}
/* 배경 사진 + 살짝 보랏빛 틴트 (사진은 어두운 추상 → 흰 글씨 가독성 유지) */
.dg-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(160deg, rgba(22, 22, 29, .54) 0%, rgba(16, 16, 22, .40) 54%, rgba(38, 33, 58, .34) 100%),
        url(/img/bg.jpg) center / cover no-repeat;
}

.ct-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
    aspect-ratio: 1 / 1;
    will-change: transform;
}
.ct-hero-glow.g1 {
    top: -18%;
    left: -8%;
    width: 46%;
    background: radial-gradient(circle, rgba(109, 92, 232, .26), transparent 66%);
    animation: ctGlowA 18s ease-in-out infinite;
}
.ct-hero-glow.g2 {
    bottom: -24%;
    right: -10%;
    width: 52%;
    background: radial-gradient(circle, rgba(84, 110, 236, .22), transparent 66%);
    animation: ctGlowB 22s ease-in-out infinite;
}
@keyframes ctGlowA { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(7%, 6%) scale(1.12); } }
@keyframes ctGlowB { 0%, 100% { transform: translate(0, 0) scale(1.05); } 50% { transform: translate(-6%, -7%) scale(.94); } }
@media (prefers-reduced-motion: reduce) { .ct-hero-glow { animation: none; } }

.dg-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(58px, 8vw, 104px) 24px;
    display: grid;
    grid-template-columns: 1fr;
}

.hero_text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .1em;
    color: #d6c2ff;
    background: rgba(124, 58, 237, .22);
    border: 1px solid rgba(160, 113, 245, .45);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.hero_eyebrow .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b18cff;
    box-shadow: 0 0 10px #b18cff;
}

.dg-hero h1 {
    font-family: 'GmarketSans', sans-serif;
    font-size: clamp(28px, 4.6vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin: 0 0 16px;
    text-shadow: 0 2px 22px rgba(0, 0, 0, .3);
}
.dg-hero h1 .hero_pt {
    background: linear-gradient(100deg, #c4b5fd 0%, #9db4fc 34%, #6aa2f7 70%, #c4b5fd 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: ctShine 6s ease-in-out infinite;
}
@keyframes ctShine { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@media (prefers-reduced-motion: reduce) { .dg-hero h1 .hero_pt { animation: none; } }

.dg-hero .sub {
    font-size: clamp(14.5px, 1.8vw, 17px);
    color: rgba(255, 255, 255, .92);
    margin: 0 0 18px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, .24);
    max-width: 620px;
}
.dg-hero .sub b { color: #fff; font-weight: 700; }

.hero_keys {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    margin: 0 0 34px;
}
.hero_keys span {
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .26);
    padding: 6px 12px;
    border-radius: 8px;
}

.hero_cta {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
    justify-content: center;
}
.hcta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    padding: 14px 26px;
    border-radius: 12px;
    font-size: 15px;
    transition: .15s;
}
.hcta.primary {
    background: var(--grad);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 14px 30px -10px rgba(124, 58, 237, .7);
}
.hcta.primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -160%;
    width: 55%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    animation: ctBtnShine 3.4s ease-in-out infinite;
}
@keyframes ctBtnShine { 0% { left: -160%; } 60%, 100% { left: 160%; } }
.hcta.primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(124, 58, 237, .8); }
.hcta.ghost {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
}
.hcta.ghost:hover { background: rgba(255, 255, 255, .18); }
@media (prefers-reduced-motion: reduce) { .hcta.primary::after { animation: none; display: none; } }

/* ── S03. 제작 프로세스 (4단계) ── */
.ct-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    max-width: 1040px;
    margin: 0 auto;
}
.ct-flow-step {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 24px 26px;
    box-shadow: 0 12px 34px -26px rgba(31, 39, 51, .3);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.ct-flow-step:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: 0 22px 40px -26px rgba(124, 58, 237, .38); }
/* 단계 사이 연결 화살표(데스크톱) */
.ct-flow-step:not(:last-child)::after {
    content: "\ea6c";   /* ri-arrow-right-s-line */
    font-family: 'remixicon';
    position: absolute;
    top: 50%;
    left: calc(100% + 18px);   /* 카드 사이 gap(36px) 정중앙 */
    transform: translate(-50%, -50%);
    font-size: 22px;
    color: #5b8def;   /* 프로세스 연결 화살표 — 파란 포인트 */
    z-index: 2;
}
.ct-flow-n {
    font-family: 'GmarketSans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #3b82f6;   /* 단계 번호 — 파란 포인트 */
    letter-spacing: .08em;
}
.ct-flow-ic {
    display: flex;
    width: 50px;
    height: 50px;
    margin: 12px 0 16px;
    border-radius: 14px;
    background: var(--blue-l);
    color: var(--blue);
    align-items: center;
    justify-content: center;
    font-size: 25px;
}
.ct-flow-step h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; letter-spacing: -.01em; }
.ct-flow-step p { font-size: 13.5px; color: var(--gray); line-height: 1.65; margin: 0; }

/* ── S04. 활용 사례 ── */
.ct-uc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.ct-uc-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px 26px;
    background: #fff;
    box-shadow: 0 12px 34px -26px rgba(31, 39, 51, .28);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.ct-uc-card:hover { transform: translateY(-6px); border-color: var(--blue); box-shadow: 0 24px 44px -26px rgba(124, 58, 237, .3); }
.ct-uc-hd { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.ct-uc-ic {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 22px;
    background: var(--grad);
    box-shadow: 0 8px 18px -8px rgba(124, 58, 237, .7);
}
.ct-uc-nm { font-size: 16px; font-weight: 800; line-height: 1.25; color: var(--ink); }
.ct-uc-cap { font-size: 12px; color: var(--gray2); margin-top: 2px; }
.ct-uc-sits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 14px; }
.ct-uc-sit { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: #46505d; }
.ct-uc-sit .dot { flex: 0 0 auto; width: 19px; height: 19px; border-radius: 50%; background: #e9ecfa; display: grid; place-items: center; color: #6f7fd4; font-size: 11px; }

/* ── S05. 신뢰 지표 (다크 밴드) ── */
.ct-do { background: #15171f; }   /* 보라 대신 어두운 차콜 슬레이트(중립) */
.ct-do-in { max-width: 1080px; margin: 0 auto; padding: clamp(58px, 7vw, 88px) 28px; color: #eee7fb; text-align: center; }
.ct-do-eyebrow { display: block; color: #a5b4fc; font-weight: 800; font-size: 13px; letter-spacing: .2em; margin-bottom: 14px; }
.ct-do-h2 { font-weight: 700; font-size: clamp(23px, 3.1vw, 35px); line-height: 1.3; letter-spacing: -.02em; color: #fff; margin: 0; }
.ct-do-h2 .hl {
    background: linear-gradient(100deg, #c4b5fd 0%, #9db4fc 34%, #6aa2f7 70%, #c4b5fd 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: ctShine 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .ct-do-h2 .hl { animation: none; } }
.ct-do-sub { color: #b7add0; font-size: 15px; margin: 16px auto 50px; max-width: 600px; }
.ct-do-nums { display: grid; grid-template-columns: repeat(4, 1fr); }
.ct-do-stat { position: relative; padding: 0 10px; }
.ct-do-stat + .ct-do-stat::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 1px; background: #2b2f3d; }
.ct-do-pre { font-size: 14px; font-weight: 800; color: #a5b4fc; letter-spacing: .04em; margin-bottom: 14px; }
.ct-do-v { font-weight: 800; letter-spacing: -.02em; line-height: 1; color: #fff; font-size: clamp(28px, 3.6vw, 42px); }
.ct-do-v .u { font-size: .5em; font-weight: 800; font-style: normal; margin-left: 2px; color: #a5b4fc; }
.ct-do-k { font-size: 13px; margin-top: 11px; color: #9a90b8; }

/* ── 홈 FAQ 아코디언 (base.css엔 FAQ 스타일이 없고 faq.css는 홈에서 미로드 → 여기서 전부 정의) ── */
.faq_list { margin: 0 auto; }
.faq_item {
    border: 1px solid transparent;
    border-radius: 13px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #f5f6f8;
}
.faq_item.open { background: #f5f6f8; }   /* 펼쳐도 동일한 회색 유지 */
.faq_q {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px 19px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    color: var(--ink);
    font-family: inherit;
}
.faq_q .qm {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'GmarketSans', sans-serif;
    font-size: 13px;
    font-weight: 700;
}
.faq_q .qt { flex: 1; }
.faq_q .qx {
    display: inline-flex;
    align-items: center;
    font-size: 21px;
    color: var(--gray2);
    transition: .3s;
}
.faq_a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.faq_item.open .faq_a { max-height: 400px; }
.faq_item.open .qx { transform: rotate(180deg); color: var(--blue); }
.faq_a_inner {
    padding: 0 19px 18px 55px;
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.75;
}
.faq_a_inner strong { color: var(--ink); }

/* ── S08. 최종 CTA (보라 그라데이션 밴드) ── */
.ct-cta {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(85% 100% at 50% 0%, rgba(99, 102, 241, .22), transparent 60%),
        linear-gradient(180deg, #1b2036 0%, #12141f 100%);
    padding: clamp(48px, 6vw, 76px) 0;
}
.ct-cta-in { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.ct-cta-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.ct-cta-eyebrow .ld { position: relative; width: 7px; height: 7px; border-radius: 50%; background: #fff; }
.ct-cta-eyebrow .ld::before, .ct-cta-eyebrow .ld::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #fff; animation: ctPulse 1.8s ease-out infinite; pointer-events: none; }
.ct-cta-eyebrow .ld::after { animation-delay: .9s; }
@keyframes ctPulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(3.4); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .ct-cta-eyebrow .ld::before, .ct-cta-eyebrow .ld::after { animation: none; } }
.ct-cta-h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 700; line-height: 1.3; margin: 0 0 14px; color: #fff; }
.ct-cta-desc { font-size: 15.5px; line-height: 1.6; color: rgba(255, 255, 255, .88); max-width: 560px; margin: 0 auto 30px; }
.ct-cta-desc strong { color: #fff; }
.ct-cta-action { display: flex; gap: 11px; justify-content: center; flex-wrap: wrap; }
.ct-cta-btn { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; padding: 14px 26px; border-radius: 12px; font-size: 15px; transition: .15s; }
/* 히어로 primary 버튼과 동일한 빛나는(shine) 스윕 */
.ct-cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -160%;
    width: 55%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    animation: ctBtnShine 3.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .ct-cta-btn::after { animation: none; display: none; } }
.ct-cta-btn.primary { background: #fff; color: var(--blue-d); box-shadow: 0 12px 28px -12px rgba(30, 10, 60, .5); }
.ct-cta-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(30, 10, 60, .6); }
.ct-cta-btn.ghost { background: rgba(255, 255, 255, .14); color: #fff; border: 1px solid rgba(255, 255, 255, .5); }
.ct-cta-btn.ghost:hover { background: rgba(255, 255, 255, .24); transform: translateY(-2px); }

/* ── 2단 분할: 촬영 없이 AI로 (좌 텍스트 + 우 비교 카드) ── */
.ct-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 56px); align-items: center; max-width: 1040px; margin: 0 auto; }
.ct-split-tx .dg-eyebrow { display: inline-block; }
.ct-split-tx .dg-h2 { text-align: left; }
.ct-split-tx .dg-desc { text-align: left; margin-bottom: 22px; }
.ct-split-list { display: flex; flex-direction: column; gap: 12px; }
.ct-split-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; font-weight: 500; color: var(--ink); }
/* 체크리스트: 한 줄씩 뚜렷한 시간차로 아래→위 등장 */
.ct-split-list.dg-stagger > li { transform: translateY(12px); }
.ct-split-list.dg-stagger.in > li:nth-child(1) { transition-delay: .05s; }
.ct-split-list.dg-stagger.in > li:nth-child(2) { transition-delay: .25s; }
.ct-split-list.dg-stagger.in > li:nth-child(3) { transition-delay: .45s; }
.ct-split-list.dg-stagger.in > li:nth-child(4) { transition-delay: .65s; }
.ct-split-list i { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--blue-l); color: var(--blue); display: grid; place-items: center; font-size: 13px; margin-top: 1px; }
.ct-cmp { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 24px; box-shadow: var(--shadow); }
.ct-cmp-row { border-radius: 14px; padding: 18px 20px; }
.ct-cmp-row.old { background: #f5f6f8; }
.ct-cmp-row.new { background: var(--blue-l); border: 1px solid #e6ddfb; }
.ct-cmp-k { display: block; font-size: 12.5px; font-weight: 800; letter-spacing: .02em; margin-bottom: 6px; }
.ct-cmp-row.old .ct-cmp-k { color: var(--gray2); }
.ct-cmp-row.new .ct-cmp-k { color: var(--blue-d); }
.ct-cmp-v { font-size: 14px; color: var(--ink); line-height: 1.5; }
.ct-cmp-row.old .ct-cmp-v { color: var(--gray); }
.ct-cmp-vs { text-align: center; font-family: 'GmarketSans', sans-serif; font-size: 12px; font-weight: 700; color: var(--gray2); padding: 10px 0; }

/* ── 프로세스: 1→2→3→4→1 무한 순차 포커스 (느리게) ── */
/* 등장(아래→위)은 컨테이너 .ct-flow.dg-reveal 가 담당, 스텝은 무한 포커스 루프 */
.ct-flow-step { animation: ctFocus 10s ease-in-out infinite; }
.ct-flow-step:nth-child(2) { animation-delay: 2.5s; }
.ct-flow-step:nth-child(3) { animation-delay: 5s; }
.ct-flow-step:nth-child(4) { animation-delay: 7.5s; }
@keyframes ctFocus {
    0%, 20%, 100% { transform: translateY(0) scale(1); border-color: var(--line); box-shadow: 0 12px 34px -26px rgba(31, 39, 51, .3); }
    8%            { transform: translateY(-8px) scale(1.04); border-color: var(--blue); box-shadow: 0 24px 42px -22px rgba(124, 58, 237, .5); }
}
.ct-flow-step .ct-flow-ic { animation: ctFocusIc 10s ease-in-out infinite; }
.ct-flow-step:nth-child(2) .ct-flow-ic { animation-delay: 2.5s; }
.ct-flow-step:nth-child(3) .ct-flow-ic { animation-delay: 5s; }
.ct-flow-step:nth-child(4) .ct-flow-ic { animation-delay: 7.5s; }
@keyframes ctFocusIc {
    0%, 20%, 100% { background: var(--blue-l); color: var(--blue); }
    8%            { background: var(--blue); color: #fff; }
}
@media (prefers-reduced-motion: reduce) {
    .ct-flow-step, .ct-flow-step .ct-flow-ic { animation: none; }
}

/* ── 호버 효과(적당히) ── */
.dg-card .ic { transition: transform .25s ease; }
.dg-card:hover .ic { transform: scale(1.08) rotate(-4deg); }
.ct-cmp { transition: transform .25s ease, box-shadow .25s ease; }
.ct-cmp:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -26px rgba(124, 58, 237, .3); }
.ct-do-stat .ct-do-v { transition: transform .25s ease; }
.ct-do-stat:hover .ct-do-v { transform: scale(1.06); }

/* ── 상시 모션(정적 방지): 아이콘 샤인 스윕 + 강조어 은은한 시머 ── */
.em_grad { background-size: 220% 100%; animation: ctShine 6s ease-in-out infinite; }
.dg-card .ic, .ct-uc-ic { position: relative; overflow: hidden; }
.dg-card .ic::after, .ct-uc-ic::after {
    content: "";
    position: absolute;
    top: 0;
    left: -160%;
    width: 55%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .5), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    animation: ctBtnShine 3.6s ease-in-out infinite;
}
/* 카드마다 시차를 둬서 순차적으로 반짝 */
.dg-cards > .dg-card:nth-child(2) .ic::after { animation-delay: .35s; }
.dg-cards > .dg-card:nth-child(3) .ic::after { animation-delay: .7s; }
.dg-cards > .dg-card:nth-child(4) .ic::after { animation-delay: 1.05s; }
.dg-cards > .dg-card:nth-child(5) .ic::after { animation-delay: 1.4s; }
.dg-cards > .dg-card:nth-child(6) .ic::after { animation-delay: 1.75s; }
.ct-uc-card:nth-child(2) .ct-uc-ic::after { animation-delay: .5s; }
.ct-uc-card:nth-child(3) .ct-uc-ic::after { animation-delay: 1s; }
.ct-uc-card:nth-child(4) .ct-uc-ic::after { animation-delay: 1.5s; }
/* 활용사례 아이콘 hover 시 살짝 커지고 기울기 */
.ct-uc-ic { transition: transform .25s ease; }
.ct-uc-card:hover .ct-uc-ic { transform: scale(1.1) rotate(-4deg); }
@media (prefers-reduced-motion: reduce) {
    .em_grad { animation: none; }
    .dg-card .ic::after, .ct-uc-ic::after { animation: none; display: none; }
}

/* ── 반응형 ── */
@media (max-width: 860px) {
    .ct-split { grid-template-columns: 1fr; gap: 28px; }
}
/* ── 반응형 ── */
@media (max-width: 900px) {
    .ct-flow { grid-template-columns: repeat(2, 1fr); }
    .ct-flow-step:not(:last-child)::after { display: none; }
    .ct-uc { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .ct-do-nums { grid-template-columns: 1fr 1fr; gap: 36px 0; }
    .ct-do-stat:nth-child(odd)::before { display: none; }
}
@media (max-width: 460px) {
    .ct-flow { grid-template-columns: 1fr; }
    .ct-uc-sits { grid-template-columns: 1fr; }
}
