:root {
    --blue: #e94820;
    --blue-dark: #c83a16;
    --ink: #101217;
    --navy: #101827;
    --muted: #667085;
    --line: #e7eaf0;
    --soft: #f5f7fb;
    --white: #fff;
    --test: #fff3c4;
    --test-ink: #6b4f00;
    --shell: min(1180px, calc(100% - 40px));
    --radius: 24px;
    --shadow: 0 24px 70px rgba(16, 24, 39, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    line-height: 1.6;
    word-break: keep-all;
}

img {
    display: block;
    max-width: 100%;
}

button,
a {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 8px;
    left: 8px;
    padding: 10px 16px;
    color: #fff;
    background: #111;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.narrow {
    max-width: 870px;
}

.center {
    text-align: center;
}

.test-notice {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 6px 20px;
    color: var(--test-ink);
    background: var(--test);
    border-bottom: 1px solid #ead47e;
    font-size: 13px;
}

.test-notice strong {
    letter-spacing: .04em;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: 76px;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(16, 18, 23, .08);
    backdrop-filter: blur(16px);
}

.header-inner {
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-wordmark {
    color: var(--ink);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: 1;
    white-space: nowrap;
}

.primary-menu {
    display: flex;
    justify-content: center;
    gap: 34px;
}

.primary-menu a {
    position: relative;
    padding: 10px 0;
    color: #596071;
    font-size: 14px;
    font-weight: 700;
}

.primary-menu a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform .25s ease;
}

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after {
    transform: scaleX(1);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 0;
}

.menu-button span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 12px 30px rgba(233, 72, 32, .25);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--blue-dark);
}

.button-light {
    color: var(--ink);
    background: #fff;
    border-color: rgba(16, 18, 23, .12);
}

.button-large {
    min-width: 190px;
    min-height: 58px;
    padding: 16px 28px;
    border-radius: 14px;
}

.hero {
    position: relative;
    min-height: calc(100svh - 110px);
    display: flex;
    align-items: center;
    color: #fff;
    background: #0c0d10;
    overflow: hidden;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background:
        url("./assets/education/education-baemin-2023.jpg") center 48% / cover no-repeat;
    filter: saturate(.65) contrast(1.05);
    transform: scale(1.02);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(8, 10, 15, .95) 0%, rgba(8, 10, 15, .78) 46%, rgba(8, 10, 15, .24) 100%),
        linear-gradient(0deg, rgba(8, 10, 15, .55), transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 100px 0 92px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
}

.eyebrow-light {
    color: #ffb7a5;
}

.hero h1 {
    max-width: 830px;
    margin: 0;
    font-size: clamp(44px, 5.4vw, 76px);
    line-height: 1.12;
    letter-spacing: -.045em;
}

.hero h1 span {
    color: #ff6b46;
}

.hero-copy {
    max-width: 610px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.scroll-hint {
    position: absolute;
    right: 0;
    bottom: 36px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
}

.scroll-hint i {
    font-size: 24px;
    font-style: normal;
    animation: bounce 1.8s ease-in-out infinite;
}

@keyframes bounce {
    50% { transform: translateY(7px); }
}

.section {
    padding: 120px 0;
}

.intro {
    padding-bottom: 100px;
}

.intro h2,
.section-heading h2,
.analysis-head h2,
.services-head h2,
.execution-heading h2,
.final-content h2 {
    margin: 0;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.18;
    letter-spacing: -.04em;
}

.section-lead,
.section-heading > p,
.analysis-head > p,
.services-head > p,
.execution-heading > p {
    color: var(--muted);
    font-size: 18px;
}

.intro .section-lead {
    margin: 28px auto;
}

.text-button {
    padding: 8px 0;
    color: var(--blue);
    background: transparent;
    border: 0;
    border-bottom: 1px solid currentColor;
    font-weight: 800;
}

.photo-marquee {
    padding: 0 0 110px;
    overflow: hidden;
}

.photo-track {
    width: max-content;
    display: flex;
    gap: 14px;
    padding-left: max(20px, calc((100vw - 1180px) / 2));
}

.photo-track figure {
    width: 270px;
    height: 330px;
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #ddd;
}

.photo-track figure:nth-child(even) {
    margin-top: 42px;
}

.photo-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.photo-track figure:hover img {
    transform: scale(1.05);
}

.metrics {
    padding: 90px 0;
    color: #fff;
    background: var(--navy);
}

.metrics-heading,
.analysis-head,
.services-head {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 54px;
}

.metrics-heading h2 {
    margin: 0;
    font-size: clamp(32px, 3.4vw, 48px);
    line-height: 1.2;
}

.metrics-heading > p,
.analysis-head > p {
    margin: 0;
    color: rgba(255, 255, 255, .6);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.metric-grid article {
    position: relative;
    min-height: 250px;
    padding: 40px 28px 28px;
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.metric-grid article:first-child {
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.demo-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 5px 9px;
    color: var(--test-ink);
    background: var(--test);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .03em;
}

.metric-grid strong {
    display: block;
    margin-top: 20px;
    font-size: clamp(42px, 4vw, 60px);
    line-height: 1;
}

.metric-grid strong em {
    margin-left: 3px;
    color: #ff8f73;
    font-size: .46em;
    font-style: normal;
}

.metric-grid h3 {
    margin: 20px 0 3px;
    font-size: 16px;
}

.metric-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 64px;
}

.section-heading > p {
    margin: 20px auto 0;
}

.problems {
    background: var(--soft);
}

.problems .section-heading {
    max-width: 1180px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.problem-card {
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    padding: 42px 36px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 50px rgba(16, 24, 39, .05);
}

.problem-card h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.35;
}

.problem-card p {
    margin: auto 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.split,
.story-layout,
.promise-layout,
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 82px;
}

.split-media {
    position: relative;
}

.split-media img {
    width: 100%;
    min-height: 640px;
    object-fit: cover;
    border-radius: 28px;
}

.split-content h2,
.story-content h2,
.promise-intro h2,
.faq-intro h2 {
    margin: 0;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.18;
    letter-spacing: -.04em;
}

.split-content .section-lead,
.story-content .section-lead {
    margin: 28px 0;
}

.check-list {
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
}

.check-list li:last-child {
    border-bottom: 1px solid var(--line);
}

.check-list li > span {
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
}

.check-list strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.check-list p {
    margin: 0;
    color: var(--muted);
}

.analysis,
.execution {
    color: #fff;
    background: var(--navy);
}

.analysis-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    list-style: none;
}

.analysis-steps li {
    min-height: 300px;
    padding: 32px 24px;
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.analysis-steps li:first-child {
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.analysis-steps span,
.execution-list > li > span {
    color: #ff8f73;
    font-size: 13px;
    font-weight: 900;
}

.analysis-steps h3 {
    margin: 90px 0 12px;
    font-size: 19px;
}

.analysis-steps p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
}

.story {
    overflow: hidden;
}

.story-layout {
    grid-template-columns: .86fr 1.14fr;
}

.profile {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 36px 0 20px;
}

.profile strong {
    font-size: 22px;
}

.profile span {
    color: var(--muted);
}

.career-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.career-list li {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.career-list b {
    color: var(--blue);
}

.story-media {
    position: relative;
    padding: 22px 0 64px 22px;
}

.story-media::before {
    content: "";
    position: absolute;
    inset: 0 90px 0 0;
    background: #fff3ef;
    border-radius: 30px;
}

.story-media img {
    position: relative;
    width: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.quote-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(390px, 80%);
    padding: 26px;
    color: #fff;
    background: var(--blue);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.quote-card p {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 800;
}

.quote-card span {
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
}

.results {
    background: var(--soft);
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.result-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 50px rgba(16, 24, 39, .05);
}

.result-visual {
    position: relative;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px;
    overflow: hidden;
}

.result-visual > .demo-badge {
    position: absolute;
    top: 22px;
    left: 22px;
}

.result-visual.blue { background: #fff0ec; }
.result-visual.violet { background: #eee9ff; }
.result-visual.mint { background: #e5f9f2; }
.result-visual.orange { background: #fff0df; }

.bars {
    width: 80%;
    height: 170px;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(233, 72, 32, .25);
}

.bars i {
    flex: 1;
    height: var(--bar);
    background: linear-gradient(180deg, #ff8a6d, var(--blue));
    border-radius: 8px 8px 0 0;
}

.rank-shift {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rank-shift span {
    font-size: 68px;
    font-weight: 900;
    line-height: 1;
}

.rank-shift span:last-child {
    color: var(--blue);
}

.rank-shift i {
    color: #8f93a0;
    font-size: 30px;
    font-style: normal;
}

.result-visual > small {
    margin-top: 18px;
    color: var(--muted);
}

.result-visual svg {
    width: 100%;
    overflow: visible;
}

.result-visual polyline {
    fill: none;
    stroke: #16a378;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.result-visual circle {
    fill: #fff;
    stroke: #16a378;
    stroke-width: 4;
}

.donut {
    width: 160px;
    height: 160px;
    display: grid;
    place-items: center;
    background: conic-gradient(#f08821 0 82%, #f8d9b8 82% 100%);
    border-radius: 50%;
}

.donut::before {
    content: "";
    position: absolute;
    width: 112px;
    height: 112px;
    background: #fff0df;
    border-radius: 50%;
}

.donut span {
    position: relative;
    z-index: 1;
    font-size: 34px;
    font-weight: 900;
}

.result-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
}

.result-copy > p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 12px;
}

.result-copy > p span {
    color: inherit;
    font-weight: 800;
}

.result-copy h3 {
    margin: 0 0 46px;
    font-size: 22px;
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.before-after span {
    display: grid;
}

.before-after small {
    color: var(--muted);
}

.before-after b {
    font-size: clamp(24px, 2vw, 28px);
}

.result-arrow {
    width: 28px;
    height: 20px;
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    color: var(--blue);
    font-style: normal;
}

.result-arrow svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-head > p {
    margin: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-grid article {
    position: relative;
    min-height: 300px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: color .25s ease, background .25s ease;
}

.service-grid article:hover {
    color: #fff;
    background: var(--blue);
}

.service-grid article > span {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #aab0bd;
    font-size: 12px;
    font-weight: 900;
}

.service-grid article > i {
    height: 46px;
    display: flex;
    align-items: center;
    margin-top: 50px;
    color: var(--blue);
    font-size: 38px;
    font-style: normal;
    line-height: 1;
}

.service-chair-icon svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-grid article:hover > i,
.service-grid article:hover > span,
.service-grid article:hover p {
    color: rgba(255, 255, 255, .72);
}

.service-grid h3 {
    margin: 28px 0 10px;
    font-size: 19px;
}

.service-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.execution-heading {
    max-width: 760px;
    margin: 0 auto 64px;
}

.execution-heading > p {
    color: rgba(255, 255, 255, .55);
}

.execution-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, .16);
    list-style: none;
}

.execution-list li {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 28px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.execution-list li::after {
    content: "↗";
    color: rgba(255, 255, 255, .4);
    font-size: 24px;
}

.execution-list h3 {
    margin: 0 0 5px;
    font-size: 21px;
}

.execution-list p {
    margin: 0;
    color: rgba(255, 255, 255, .56);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 14px;
}

.portfolio-grid figure {
    margin: 0;
    overflow: hidden;
    background: #ddd;
    border-radius: 18px;
}

.portfolio-grid .wide {
    grid-column: span 2;
}

.portfolio-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.portfolio-grid figure:hover img {
    transform: scale(1.04);
}

.promise {
    background: var(--soft);
}

.promise-layout {
    align-items: start;
}

.promise-intro {
    position: sticky;
    top: 130px;
}

.promise-intro > p:not(.eyebrow) {
    margin: 24px 0 34px;
    color: var(--muted);
    font-size: 18px;
}

.promise-list {
    border-top: 1px solid #dfe3eb;
}

.promise-list article {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid #dfe3eb;
}

.promise-list article > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 300;
}

.promise-list .no > span {
    color: #d84141;
    background: #ffe6e6;
}

.promise-list .yes > span {
    color: #12865d;
    background: #def5eb;
}

.promise-list h3 {
    margin: 2px 0 8px;
    font-size: 19px;
}

.promise-list p {
    margin: 0;
    color: var(--muted);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.review-grid blockquote {
    margin: 0;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 16px 50px rgba(16, 24, 39, .05);
}

.review-grid blockquote > p {
    min-height: 92px;
    margin: 24px 0 26px;
    font-size: 20px;
    font-weight: 750;
    line-height: 1.6;
}

.review-grid footer {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.review-grid footer span {
    color: var(--muted);
    font-size: 12px;
}

.faq {
    background: var(--soft);
}

.faq-layout {
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 130px;
}

.faq-intro > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
}

.faq-list details {
    border-top: 1px solid #dfe3eb;
}

.faq-list details:last-child {
    border-bottom: 1px solid #dfe3eb;
}

.faq-list summary {
    position: relative;
    padding: 26px 52px 26px 0;
    cursor: pointer;
    font-size: 19px;
    font-weight: 800;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    top: 20px;
    right: 2px;
    color: var(--blue);
    font-size: 30px;
    font-weight: 300;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin: -4px 0 28px;
    padding-right: 50px;
    color: var(--muted);
}

.final-cta {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.final-media,
.final-overlay {
    position: absolute;
    inset: 0;
}

.final-overlay {
    background: linear-gradient(90deg, rgba(8, 10, 16, .9), rgba(8, 10, 16, .38));
}

.final-content {
    position: relative;
    z-index: 1;
}

.final-content p:not(.eyebrow) {
    max-width: 600px;
    margin: 24px 0 34px;
    color: rgba(255, 255, 255, .68);
    font-size: 17px;
}

.site-footer {
    padding: 70px 0 24px;
    color: rgba(255, 255, 255, .7);
    background: #0a0d13;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
}

.footer-info p {
    margin: 4px 0;
    font-size: 13px;
}

.footer-info strong {
    color: #fff;
    font-size: 15px;
}

.footer-info small {
    display: block;
    margin-top: 15px;
    color: rgba(255, 255, 255, .42);
}

.footer-test {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-test strong {
    color: #ffe17a;
    letter-spacing: .08em;
}

.footer-test a {
    color: inherit;
    font-size: 12px;
}

.copyright {
    margin-top: 52px;
    padding-top: 20px;
    color: rgba(255, 255, 255, .35);
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 12px;
}

.floating-actions {
    position: fixed;
    z-index: 80;
    right: 24px;
    bottom: 24px;
    display: flex;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.floating-actions a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
}

.floating-actions a {
    color: var(--ink);
    background: var(--soft);
}

.floating-actions .floating-kakao {
    color: #fff;
    background: var(--blue);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .header-cta {
        display: none;
    }

    .header-inner {
        grid-template-columns: auto 1fr;
    }

    .primary-menu {
        justify-content: flex-end;
    }

    .metric-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .analysis-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .analysis-steps li:last-child {
        grid-column: span 2;
        min-height: 210px;
    }

    .split,
    .story-layout,
    .promise-layout,
    .faq-layout {
        gap: 50px;
    }

    .result-card {
        grid-template-columns: 1fr;
    }

    .result-visual {
        min-height: 260px;
    }
}

@media (max-width: 767px) {
    :root {
        --shell: min(100% - 28px, 1180px);
        --radius: 18px;
    }

    .test-notice {
        align-items: flex-start;
        gap: 5px;
        flex-direction: column;
        padding-block: 7px;
        font-size: 11px;
        line-height: 1.35;
    }

    .site-header {
        height: 66px;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .brand-wordmark {
        font-size: 21px;
    }

    .menu-button {
        display: block;
    }

    .primary-menu {
        position: absolute;
        top: 66px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 18px 20px 22px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 30px rgba(0, 0, 0, .08);
    }

    .primary-menu.is-open {
        display: flex;
    }

    .primary-menu a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .hero {
        min-height: 750px;
    }

    .hero-media {
        background-position: 66% center;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(8, 10, 15, .96), rgba(8, 10, 15, .58));
    }

    .hero-content {
        padding: 90px 0 100px;
    }

    .hero h1 {
        font-size: clamp(40px, 12vw, 56px);
    }

    .hero-copy {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .scroll-hint {
        right: auto;
        bottom: 30px;
        left: 0;
    }

    .section {
        padding: 86px 0;
    }

    .intro {
        padding-bottom: 76px;
    }

    .photo-marquee {
        padding-bottom: 78px;
    }

    .photo-track {
        gap: 10px;
    }

    .photo-track figure {
        width: 210px;
        height: 270px;
        border-radius: 15px;
    }

    .photo-track figure:nth-child(even) {
        margin-top: 24px;
    }

    .metrics-heading,
    .analysis-head,
    .services-head {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .metric-grid,
    .problem-grid,
    .service-grid,
    .result-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .metric-grid article {
        min-height: 210px;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
        border-left: 1px solid rgba(255, 255, 255, .14);
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .problem-card {
        min-height: 380px;
        padding: 34px 30px;
    }

    .split,
    .story-layout,
    .promise-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .split-media img {
        min-height: 460px;
    }

    .analysis-steps {
        grid-template-columns: 1fr;
    }

    .analysis-steps li,
    .analysis-steps li:last-child {
        grid-column: auto;
        min-height: 220px;
        border-left: 1px solid rgba(255, 255, 255, .14);
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .analysis-steps h3 {
        margin-top: 60px;
    }

    .story-media {
        padding: 14px 0 54px 10px;
    }

    .story-media img {
        min-height: 340px;
    }

    .quote-card {
        width: 88%;
        padding: 20px;
    }

    .result-card {
        grid-template-columns: 1fr;
    }

    .result-visual {
        min-height: 260px;
    }

    .service-grid article {
        min-height: 260px;
    }

    .execution-list li {
        grid-template-columns: 50px 1fr;
        gap: 12px;
    }

    .execution-list li::after {
        display: none;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }

    .portfolio-grid .wide {
        grid-column: span 2;
    }

    .promise-intro,
    .faq-intro {
        position: static;
    }

    .review-grid blockquote > p {
        min-height: auto;
    }

    .final-cta {
        min-height: 600px;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-test {
        align-items: flex-start;
        text-align: left;
    }

    .floating-actions {
        right: 10px;
        bottom: 10px;
        left: 10px;
    }

    .floating-actions button,
    .floating-actions a {
        flex: 1;
    }
}

/* CPR benchmark structural parity additions */
.hero-intro {
    min-height: 100svh;
}

.hero-intro-content {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.hero-intro .hero-copy {
    margin-inline: auto;
}

.hero-intro .scroll-hint {
    left: 50%;
    transform: translateX(-50%);
}

.primary-hero {
    padding-top: clamp(100px, 12vw, 170px);
    padding-bottom: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 4%, rgba(233, 72, 32, .09), transparent 31%),
        #fff;
}

.primary-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(36px, 5vw, 76px);
}

.primary-hero-copy {
    min-width: 0;
    max-width: none;
}

.primary-hero h2 {
    margin: 18px 0 26px;
    font-size: clamp(44px, 5.15vw, 76px);
    letter-spacing: -.075em;
    line-height: .99;
}

.primary-hero h2 span {
    color: var(--blue);
}

.primary-hero h2 .primary-title-line {
    color: inherit;
    white-space: nowrap;
}

.primary-hero .section-lead {
    max-width: 680px;
    margin: 0 0 34px;
}

.primary-proof-carousel {
    min-width: 0;
    padding: 16px;
    background: #fff;
    border: 1px solid #e5eaf2;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(12, 31, 70, .14);
}

.proof-slides {
    display: grid;
    aspect-ratio: 16 / 11;
}

.proof-slides figure,
.capture-grid figure,
.evidence-grid figure,
.portfolio-track figure {
    margin: 0;
    overflow: hidden;
    background: #e5e8ee;
}

.proof-slides figure {
    grid-area: 1 / 1;
    position: relative;
    height: 100%;
    border-radius: 18px;
}

.proof-slides img,
.capture-grid img,
.evidence-grid img,
.portfolio-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-slides img {
    object-fit: contain;
    background: #fff;
}

.proof-slides figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 12px 14px;
    color: #fff;
    background: rgba(8, 12, 20, .78);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.proof-carousel-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    padding: 14px 4px 0;
}

.proof-carousel-controls {
    display: flex;
    gap: 8px;
}

.proof-carousel-controls button {
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--ink);
    background: #f1f4f9;
    border: 0;
    border-radius: 50%;
    font: inherit;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.proof-carousel-controls button:hover,
.proof-carousel-controls button:focus-visible {
    color: #fff;
    background: var(--blue);
    transform: translateY(-2px);
    outline: none;
}

.top-metrics {
    width: var(--shell);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin: 72px auto 0;
    color: #fff;
    background: #111723;
}

.top-metrics > div {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    border-right: 1px solid rgba(255, 255, 255, .13);
}

.top-metrics > div:last-child {
    border-right: 0;
}

.top-metrics strong {
    color: #fff;
    font-size: clamp(25px, 2.7vw, 40px);
    letter-spacing: -.045em;
}

.top-metrics span {
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    font-weight: 700;
}

.data-disclaimer {
    width: var(--shell);
    margin: 0 auto;
    padding: 13px 18px;
    color: #bdc4d1;
    background: #0b1019;
    font-size: 12px;
    text-align: center;
}

.problem-card > strong {
    display: block;
    margin-bottom: 32px;
    font-size: 23px;
    line-height: 1.45;
}

.trust-reasons {
    background: var(--soft);
}

.trust-layout {
    align-items: start;
    grid-template-columns: .82fr 1.18fr;
}

.trust-content h2,
.difference h2,
.representative-copy h2,
.evidence h2,
.consult-options h2 {
    margin: 14px 0 22px;
    font-size: clamp(34px, 4.8vw, 62px);
    letter-spacing: -.065em;
    line-height: 1.08;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 38px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.reason-grid article {
    min-height: 190px;
    padding: 24px;
    background: #fff;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.reason-grid article > span,
.difference-grid article > span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

.reason-grid h3 {
    margin: 32px 0 8px;
    font-size: 18px;
}

.reason-grid p,
.difference-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.analysis-preview {
    min-height: 350px;
    display: grid;
    place-items: center;
    margin: 54px 0 18px;
    background:
        linear-gradient(rgba(8, 12, 19, .3), rgba(8, 12, 19, .72)),
        url("./assets/education/education-baemin-jeju-1.jpg") center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 24px;
}

.analysis-preview span {
    padding: 12px 18px;
    color: #fff;
    background: rgba(12, 17, 27, .78);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    font-weight: 850;
}

.difference {
    background: #fff;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 54px;
}

.difference-grid article {
    min-height: 300px;
    padding: 30px;
    background: #f6f8fc;
    border: 1px solid var(--line);
    border-radius: 22px;
}

.difference-grid h3 {
    margin: 70px 0 14px;
    font-size: 23px;
    letter-spacing: -.035em;
}

.representative-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

.profile-card {
    margin-top: 34px;
    padding: 28px;
    color: #fff;
    background: #141b29;
    border-radius: 20px;
}

.profile-card h3 {
    margin: 0 0 4px;
    font-size: 25px;
}

.profile-card span {
    color: #ff9c84;
    font-weight: 800;
}

.profile-card p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .62);
}

.representative-difference {
    padding: 38px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 26px 70px rgba(20, 28, 44, .08);
}

.representative-difference > h3 {
    margin: 0 0 24px;
    font-size: 25px;
}

.representative-difference ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.representative-difference li {
    position: relative;
    padding: 24px 0 24px 54px;
    border-top: 1px solid var(--line);
}

.representative-difference li > span {
    position: absolute;
    top: 22px;
    left: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--blue);
    border-radius: 50%;
    font-weight: 900;
}

.representative-difference strong {
    font-size: 18px;
}

.representative-difference p {
    margin: 6px 0 0;
    color: var(--muted);
}

.history-proof-visual {
    position: relative;
}

.history-proof-visual > img {
    width: 100%;
    max-height: 620px;
    display: block;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.history-metrics {
    --history-metric-radius: min(13.5%, 52px);
    --history-metric-bottom-gap: 12px;
    position: absolute;
    top: 17%;
    right: 7%;
    left: 7%;
    height: 40%;
    overflow: hidden;
    background: #fff;
}

.history-metric {
    position: absolute;
    width: min(27%, 104px);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin: 0;
    padding: 10px;
    color: #fff;
    background: transparent;
    border: 0;
    border-radius: 50%;
    text-align: center;
}

.history-metric::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(22, 28, 41, .9);
    border-radius: inherit;
}

.history-metric strong,
.history-metric span {
    position: relative;
    z-index: 2;
    display: block;
    color: #fff;
}

.history-metric strong {
    font-size: clamp(8px, 1vw, 12px);
    line-height: 1.2;
}

.history-metric span {
    font-size: clamp(7px, .9vw, 11px);
    font-weight: 700;
    line-height: 1.25;
}

.history-metric-yearly {
    top: 0;
    left: calc(50% - var(--history-metric-radius));
}

.history-metric-limit,
.history-metric-project {
    bottom: var(--history-metric-bottom-gap);
}

.history-metric-limit {
    left: calc(39% - var(--history-metric-radius));
}

.history-metric-project {
    left: calc(61% - var(--history-metric-radius));
}

.history-proof > p {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.65;
}

.result-card-grid {
    grid-template-columns: minmax(0, 1fr);
}

.result-card-grid .result-card {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr);
}

.result-image {
    position: relative;
    min-width: 0;
    min-height: 430px;
    display: grid;
    place-items: center;
    padding: 20px;
    overflow: hidden;
    background: #fff;
    border-right: 1px solid var(--line);
}

.result-image img {
    width: 100%;
    height: 100%;
    max-height: 440px;
    display: block;
    object-fit: contain;
}

.result-detail-grid {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 20px;
    margin-top: 24px;
}

.result-detail-grid > article,
.search-captures {
    padding: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
}

.result-detail-grid > * {
    min-width: 0;
}

.result-detail-grid h3,
.search-captures h3 {
    margin: 0 0 6px;
    font-size: 24px;
}

.result-detail-grid article > p,
.search-captures > p {
    margin: 0;
    color: var(--muted);
}

.trend-bars {
    height: 280px;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-top: 34px;
    padding-top: 30px;
    border-bottom: 1px solid var(--line);
}

.trend-bars span {
    height: var(--height);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 4px;
    min-height: 76px;
    padding: 12px 10px 9px;
    color: #fff;
    background: linear-gradient(180deg, #f0603d, #e94820);
    border-radius: 10px 10px 0 0;
    font-size: 12px;
    font-weight: 800;
}

.trend-bar-meat { --height: 57%; }
.trend-bar-chinese { --height: 100%; }
.trend-bar-korean { --height: 16%; }
.trend-bar-hanwoo { --height: 99%; }

.trend-bars small {
    display: block;
    font-size: 12px;
    font-weight: 800;
    line-height: 16px;
    white-space: nowrap;
}

.trend-bars em {
    font-size: 17px;
    font-style: normal;
    line-height: 1.1;
}

.result-stats dl {
    margin: 28px 0 0;
}

.result-stats dl > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.result-stats dt {
    font-size: clamp(16px, 1.45vw, 20px);
    font-weight: 800;
    white-space: nowrap;
}

.result-stats dd {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: clamp(16px, 1.7vw, 22px);
    font-weight: 900;
}

.result-stats .result-arrow {
    width: 22px;
    height: 16px;
}

.result-stat-before {
    color: #9298a4;
}

.result-stat-after {
    color: var(--blue);
}

.search-captures {
    margin-top: 24px;
}

.capture-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.capture-grid figure {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
}

.capture-grid img {
    object-fit: contain;
    background: #fff;
}

.capture-grid figcaption,
.evidence-grid figcaption {
    position: absolute;
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 9px 10px;
    color: #fff;
    background: rgba(7, 10, 17, .78);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
}

.evidence {
    background: #fff;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 52px;
}

.evidence-grid figure {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
}

.evidence-note {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.client-logo-marquee {
    display: grid;
    gap: 12px;
    margin-top: 52px;
    overflow: hidden;
}

.client-logo-row {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.client-logo-track,
.client-logo-set {
    display: flex;
}

.client-logo-track {
    width: max-content;
    will-change: transform;
}

.client-logo-track.is-ready {
    animation: client-logo-left 34s linear infinite;
}

.client-logo-row.moves-right .client-logo-track.is-ready {
    animation-name: client-logo-right;
    animation-duration: 36s;
}

.client-logo-row:hover .client-logo-track,
.client-logo-row:focus-within .client-logo-track {
    animation-play-state: paused;
}

.client-logo-row:focus-visible {
    outline: 3px solid rgba(233, 72, 32, .3);
    outline-offset: -3px;
}

.client-logo-set {
    gap: 12px;
    padding-right: 12px;
}

.client-logo-set figure {
    flex: 0 0 clamp(168px, 16vw, 210px);
    min-height: 96px;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.client-logo-set img {
    width: 100%;
    height: 58px;
    object-fit: contain;
}

@keyframes client-logo-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes client-logo-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.service-grid-nine {
    grid-template-columns: repeat(3, 1fr);
}

.execution-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 60px;
}

.execution-layout .execution-heading {
    margin-inline: 0;
}

.execution-layout > img {
    width: 100%;
    min-height: 650px;
    object-fit: cover;
    border-radius: 26px;
}

.portfolio-marquee {
    overflow: hidden;
    padding-inline: 0;
}

.portfolio-track {
    width: max-content;
    display: flex;
    gap: 14px;
    margin-top: 46px;
    animation: portfolio-flow 48s linear infinite;
}

.portfolio-track figure {
    width: 310px;
    aspect-ratio: 4 / 5;
    flex: 0 0 auto;
    border-radius: 18px;
}

@keyframes portfolio-flow {
    to { transform: translateX(calc(-50% - 7px)); }
}

.review-marquee {
    overflow: hidden;
}

.review-track {
    width: max-content;
    display: flex;
    align-items: stretch;
    gap: 18px;
    margin-top: 48px;
    animation: review-flow 42s linear infinite;
}

.review-track:hover,
.review-track:focus-within {
    animation-play-state: paused;
}

.review-track blockquote {
    width: min(420px, calc(100vw - 42px));
    min-height: 470px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 16px 50px rgba(16, 24, 39, .05);
}

.review-track blockquote > p {
    flex: 1;
    margin: 26px 0;
    font-size: 17px;
    font-weight: 750;
    line-height: 1.7;
}

.review-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.review-meta time {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.review-track footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.review-track footer span {
    color: var(--muted);
    font-size: 12px;
}

@keyframes review-flow {
    to { transform: translateX(calc(-50% - 9px)); }
}

.faq-list summary h3 {
    margin: 0;
    font-size: 19px;
}

.consult-options {
    background: linear-gradient(180deg, #fff, #f5f7fb);
}

.consult-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 960px;
    margin: 54px auto 0;
}

.consult-grid article {
    position: relative;
    padding: 38px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(20, 28, 44, .07);
}

.consult-grid article > span {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #aab0bd;
    font-weight: 900;
}

.consult-grid h3 {
    margin: 0 0 24px;
    font-size: 27px;
}

.consult-grid ul {
    min-height: 132px;
    margin: 0 0 28px;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.9;
}

.case-note {
    max-width: 920px;
    margin: 32px auto 0;
    padding: 20px 24px;
    color: var(--muted);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.75;
}

.service-grid-nine article {
    min-height: 400px;
}

.channel-operation {
    background: var(--soft);
}

.channel-operation .section-heading > p {
    max-width: 860px;
    margin-inline: auto;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 52px;
}

.channel-grid article {
    position: relative;
    min-height: 280px;
    padding: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(20, 28, 44, .06);
}

.channel-grid article > span {
    display: inline-flex;
    margin-bottom: 44px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
}

.channel-grid h3 {
    margin: 0 0 14px;
    font-size: 24px;
    letter-spacing: -.03em;
}

.channel-grid p {
    margin: 0;
    color: var(--muted);
}

.press {
    background: #fff8f5;
}

.press-grid {
    margin-top: 52px;
}

@media (max-width: 1024px) {
    .primary-hero-layout {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .primary-hero-copy {
        max-width: 820px;
        margin-inline: auto;
        text-align: center;
    }

    .primary-hero .section-lead {
        margin-right: auto;
        margin-left: auto;
    }

    .primary-proof-carousel {
        width: min(100%, 820px);
        margin-inline: auto;
    }

    .top-metrics {
        grid-template-columns: repeat(3, 1fr);
    }

    .top-metrics > div:nth-child(3) {
        border-right: 0;
    }

    .trust-layout,
    .representative-layout,
    .execution-layout {
        grid-template-columns: 1fr;
    }

    .split-media,
    .execution-layout > img {
        min-height: 520px;
    }

    .capture-grid,
    .evidence-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {
    .hero-intro {
        min-height: 760px;
    }

    .primary-hero {
        padding-top: 84px;
    }

    .primary-hero h2 {
        font-size: 42px;
    }

    .mobile-break-after {
        display: block;
        white-space: nowrap;
    }

    .primary-hero-layout {
        gap: 38px;
    }

    .primary-proof-carousel {
        padding: 10px;
        border-radius: 18px;
    }

    .proof-slides {
        aspect-ratio: 4 / 3;
    }

    .proof-slides figure {
        border-radius: 12px;
    }

    .proof-slides figcaption {
        right: 7px;
        bottom: 7px;
        left: 7px;
        padding: 9px;
        font-size: 11px;
    }

    .proof-carousel-footer {
        padding: 10px 2px 0;
    }

    .proof-carousel-controls button {
        width: 38px;
        height: 38px;
    }

    .top-metrics {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 42px;
    }

    .top-metrics > div,
    .top-metrics > div:nth-child(3) {
        min-height: 118px;
        border-right: 1px solid rgba(255, 255, 255, .13);
        border-bottom: 1px solid rgba(255, 255, 255, .13);
    }

    .top-metrics > div:nth-child(even) {
        border-right: 0;
    }

    .reason-grid,
    .difference-grid,
    .result-detail-grid,
    .consult-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .reason-grid article,
    .difference-grid article {
        min-height: auto;
    }

    .difference-grid h3 {
        margin-top: 40px;
    }

    .representative-difference,
    .result-detail-grid > article,
    .search-captures,
    .consult-grid article {
        padding: 24px;
    }

    .result-card-grid .result-card {
        grid-template-columns: 1fr;
    }

    .result-image {
        min-height: 0;
        padding: 12px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .result-image img {
        height: auto;
        max-height: none;
    }

    .capture-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
    }

    .evidence-grid {
        gap: 8px;
    }

    .client-logo-marquee {
        gap: 8px;
    }

    .client-logo-set {
        gap: 8px;
        padding-right: 8px;
    }

    .client-logo-set figure {
        flex-basis: 154px;
        min-height: 82px;
        padding: 12px;
    }

    .service-grid-nine {
        grid-template-columns: 1fr;
    }

    .service-grid-nine article {
        min-height: auto;
    }

    .channel-grid {
        grid-template-columns: 1fr;
        margin-top: 36px;
    }

    .channel-grid article {
        min-height: auto;
        padding: 26px;
    }

    .channel-grid article > span {
        margin-bottom: 28px;
    }

    .execution-layout > img {
        min-height: 360px;
    }

    .portfolio-track figure {
        width: 230px;
    }

    .review-track blockquote {
        min-height: 520px;
        padding: 24px;
    }

    .review-track blockquote > p {
        font-size: 16px;
    }

    .faq-list summary h3 {
        font-size: 17px;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .portfolio-track,
    .review-track,
    .client-logo-track {
        animation: none;
    }

    .client-logo-row {
        overflow-x: auto;
        mask-image: none;
    }

    .client-logo-set[aria-hidden="true"] {
        display: none;
    }
}
