@charset "UTF-8";

/* ==========================================================================
   HOME (고객용 메인)
========================================================================== */

section {
    padding: 80px 0;
}

section h2, section h3 {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1.3;
}

.title-wrap {
    margin-bottom: 56px;
    color: #666;
}

.title-wrap h2, .title-wrap h3 {
    color: #111111;
}

.title-wrap .orange {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* ==========================================================================
   Colors
========================================================================== */

.bg-light {
    background-color: #f9f9f9;
}

.bg-dark {
    background-color: var(--navy-color);
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   Section: 01: Hero
========================================================================== */

.section01 {
    position: relative;
    gap: 40px;
    background: linear-gradient(90deg, #FDF6F0 0%, #FEF7F2 20%, #FFF6F0 100%);
    text-align: left;
    padding: 80px 0;
    overflow: hidden;
}

.section01::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(-20%, 20%);
    width: 440px;
    height: 440px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient( circle, rgba(255, 102, 0, 0.18) 0%, rgba(255, 102, 0, 0.08) 35%, rgba(255, 102, 0, 0) 70% );
}

.section01::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    transform: translate(20%, -20%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient( circle, rgba(255, 102, 0, 0.18) 0%, rgba(255, 102, 0, 0.08) 35%, rgba(255, 102, 0, 0) 70% );
}

.section01 .inner-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section01 .badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 13px;
}

.section01 h2 {
    font-size: 46px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.section01 .title-row h2 {
    font-size: 24px;
    margin-bottom: 0;
}

.section01 p {
    color: var(--text-gray);
}

.section01 .stats-row {
    display: flex;
    margin-top: 40px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.section01 .stat-item {
    display: flex;
    flex-direction: column;
    min-width: 100px;
    padding: 16px 10px;
    border-right: 1px solid var(--border-color);
    text-align: center;
}

.section01 .stat-item strong {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 900;
}

.section01 .stat-item p {
    font-size: 13px;
    color: var(--text-gray);
}

.section01 .stat-item:last-child {
    border-right: none;
}

.section01 .match-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-weight: 600;
}

.section01 .match-proof ul {
    display: flex;
}

.section01 .match-proof ul li {
    margin-left: -8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    border: 2px solid #fff;
    background-color: #6C63FF;
}

.section01 .match-proof ul li:nth-child(1) {
    margin-left: 0;
}

.section01 .match-proof ul li:nth-child(2) {
    background-color: #22C55E;
}

.section01 .match-proof ul li:nth-child(3) {
    background-color: #F59E0B;
}

.section01 .match-proof ul li:nth-child(4) {
    background-color: var(--primary-color);
}

.section01 .match-proof p {
    text-align: left;
}

.section01 .step-wrap {
    width: 420px;
    animation: heroFloat 4.5s ease-in-out infinite;
    background: #fff;
    border-radius: 24px;
    z-index: 1;
}

.section01 .btn-cta {
    display: none;
    height: 52px;
    padding: 8px 40px;
    border-radius: 12px;
    margin-top: 32px;
}

@keyframes stepFadeUp {

    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-view.is-active {
    animation: stepFadeUp 0.4s ease forwards;
}

/* ==========================================================================
   모달 내 프로그래스 바(상단 진행률) 스무스 효과
========================================================================== */

[data-progress-bar] {
    transition: width 0.5s ease-in-out;
}

@keyframes heroFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================================================
   Section: Grids
========================================================================== */

.grid-card-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: left;
}

.grid-card-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: left;
}

.grid-card-4 .card {
    background: #fff;
    padding: 24px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.grid-card-4 .card h4 {
    font-size: 19px;
    font-weight: 800;
    margin: 16px 0 12px;
}

.card p {
    color: var(--text-gray);
    font-size: 13px;
}

.card .point {
    padding-top: 16px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
}

/* ==========================================================================
   Section: 02 : 고민
========================================================================== */

.section02 {
    text-align: center;
}

.section02 .card {
    background-color: var(--bg-gray);
    border: 1px solid var(--border-color);
}

.section02 .card .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    font-size: 20px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.section02 .card .point {
    color: #22C55E;
}

.section02 .cta-banner {
    background: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 40px;
    border-radius: 20px;
    margin-top: 40px;
    text-align: left;
}

.section02 .cta-banner strong {
    font-size: 22px;
    font-weight: 800;
    vertical-align: baseline;
}

.section02 .cta-banner strong .yellow {
    vertical-align: baseline;
}

.section02 .cta-banner p {
    margin-top: 16px;
    font-weight: 400;
    opacity: .8;
}

.section02 .btn.btn-white {
    padding: 16px 32px;
    height: 56px;
    border: none;
    font-weight: 800;
    color: var(--orange);
    white-space: nowrap;
}

.section02 .btn.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    color: var(--primary-color);
}

/* ==========================================================================
   Section: 03: 이용 방법
========================================================================== */

.section03 {
    text-align: center;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.section03 .card {
    background: #fff;
    padding: 0 24px 32px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.section03 h4 {
    font-size: 21px;
    font-weight: 800;
    margin: 16px 0 12px;
}

.section03 .step-num {
    margin-top: -24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
}

/* ==========================================================================
   Section: 04: 왜 노크인가요?
========================================================================== */

.section04 {
    text-align: center;
}

.section04 .grid-card-2 .card {
    display: flex;
    gap: 24px;
    padding: 24px 28px;
    background-color: #F0F4FF;
    border: 1px solid #D0DAFF;
    border-top: 3px solid #6C63FF;
    border-radius: 12px;
}

.section04 .grid-card-2 .card .icon {
    background-color: #E0E2FF;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 20px;
}

.section04 .grid-card-2 .card .right {
    width: calc(100% - 48px);
}

.section04 .grid-card-2 .card .badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: #E0E2FF;
    color: #6C63FF;
    font-weight: 700;
    font-size: 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section04 .grid-card-2 .card h4 {
    font-size: 21px;
    color: #111;
    font-weight: 800;
}

.section04 .grid-card-2 .card p {
    color: var(--text-gray);
    margin-top: 8px;
}

.section04 .grid-card-2 .card.yellow {
    background-color: #FFFBF0;
    border: 1px solid #FFE4A0;
    border-top: 3px solid #F59E0B;
}

.section04 .grid-card-2 .card.yellow .icon {
    background-color: #FDEFD4;
}

.section04 .grid-card-2 .card.yellow .badge {
    background-color: #FDEFD4;
    color: #D97706;
}

.section04 .grid-card-2 .card.green {
    background-color: #F0FFF5;
    border: 1px solid #A7F3C0;
    border-top: 3px solid #22C55E;
}

.section04 .grid-card-2 .card.green .icon {
    background-color: #D7F8E2;
}

.section04 .grid-card-2 .card.green .badge {
    background-color: #D7F8E2;
    color: #16A34A;
}

.section04 .grid-card-2 .card.red {
    background-color: #FFF0F0;
    border: 1px solid #FFBABA;
    border-top: 3px solid #EF4444;
}

.section04 .grid-card-2 .card.red .icon {
    background-color: #FDDBDB;
}

.section04 .grid-card-2 .card.red .badge {
    background-color: #FDDBDB;
    color: #DC2626;
}

.dark-card {
    position: relative;
    overflow: hidden;
    padding: 40px 56px;
    margin-top: 32px;
    background-color: #101B46;
    color: #fff;
    text-align: left;
    border-radius: 20px;
}

.dark-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(24%, -30%);
    width: 440px;
    height: 440px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient( circle, rgba(255, 102, 0, 0.18) 0%, rgba(255, 102, 0, 0.08) 35%, rgba(255, 102, 0, 0) 70% );
}

.dark-card h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-flow: row wrap;
    margin-bottom: 8px;
    font-size: 21px;
    font-weight: 800;
}

.dark-card p {
    color: #878DA2;
    font-weight: 500;
}

.dark-card ul {
    display: flex;
    flex-flow: row wrap;
    gap: 8px;
    font-size: 12px;
    margin-top: 16px;
}

.dark-card ul li {
    color: rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .1);
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50px;
}

/* ==========================================================================
   Section: 05: CTA
========================================================================== */

.section05 {
    position: relative;
    background: #101B46;
    color: #fff;
    overflow: hidden;
}

.section05 h3 {
    font-size: 42px;
}

.section05 p {
    padding: 24px 0 40px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, .65);
}

.section05 .btn-large {
    height: 60px;
    width: 100%;
    max-width: 520px;
    font-size: 18px;
}

.section05 ul {
    margin-top: 24px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.section05 ul li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.section05::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(25%, 36%);
    width: 440px;
    height: 440px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient( circle, rgba(255, 102, 0, 0.18) 0%, rgba(255, 102, 0, 0.08) 35%, rgba(255, 102, 0, 0) 70% );
}

.section05::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    transform: translate(-38%, -30%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient( circle, rgba(255, 102, 0, 0.18) 0%, rgba(255, 102, 0, 0.08) 35%, rgba(255, 102, 0, 0) 70% );
}

/* ==========================================================================
   Section: 06: 중개사 전용 CTA
========================================================================== */

.section06 {
    padding: 40px 0;
    background: linear-gradient(#162447, #101A36);
    color: #fff;
}

.section06 .inner-wrap {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.section06 h3 {
    font-size: 22px;
    line-height: 1.5;
}

.section06 .badge {
    margin-bottom: 16px;
    display: inline-block;
    padding: 4px 12px;
    font-size: 13px;
    color: #22C55E;
    border: 1px solid #22C55E;
    background-color: #163346;
    border-radius: 20px;
}

.section06 p {
    color: #878da2;
    font-size: 14px;
    margin-top: 16px;
}

.btn.btn-line {
    padding: 14px 28px;
    background-color: transparent;
    border: 1px solid #727272;
    color: #fff;
    border-radius: 12px;
}

/* ==========================================================================
   Acting
========================================================================== */

.layout-acting {
    position: fixed;
    right: 40px;
    bottom: 40px;
    text-align: right;
    z-index: 2;
}

.layout-acting li {
    margin-top: 8px;
}

.match-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e5eaf2;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    color: #3D4151;
    letter-spacing: -0.04em;
}

.match-status strong {
    color: #ff5a00;
    font-weight: 900;
}

.match-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5a00;
    animation: matchBlink 1.2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes matchBlink {

    0% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 90, 0, 0.45);
    }

    50% {
        opacity: 0.45;
        transform: scale(0.82);
        box-shadow: 0 0 0 10px rgba(255, 90, 0, 0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 90, 0, 0);
    }
}

/* ==========================================================================
   카드 모션
========================================================================== */

.grid-card-4 .card,
.step-grid .card,
.section04 .grid-card-2 .card {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.grid-card-4 .card:hover,
.step-grid .card:hover,
.section04 .grid-card-2 .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.grid-card-4 .card:hover .icon,
.section04 .grid-card-2 .card:hover .icon {
    animation: iconWiggle .45s ease;
}

@keyframes iconWiggle {

    0% {
        transform: rotate(0deg) scale(1);
    }

    30% {
        transform: rotate(-6deg) scale(1.08);
    }

    60% {
        transform: rotate(6deg) scale(1.08);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

/* ==========================================================================
   반응형
========================================================================== */

@media (max-width: 1024px) {

    .section01 .inner-wrap {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .section01 .img-area {
        margin-top: 40px;
        width: 100%;
        max-width: 400px;
        height: 500px;
    }

    .section01 .stats-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .grid-card-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-banner .text {
        text-align: left;
        width: 100%;
    }

    .layout-acting {
        right: 16px;
        bottom: 24px;
    }
}

@media (max-width: 768px) {

    section h2, section h3, .section05 h3 {
        font-size: 28px;
    }

    .section01 h2 {
        font-size: 30px;
    }

    .section01 .btn-cta {
        display: flex;
    }

    .section01 .text-area {
        text-align: center;
        margin: 0 auto;
    }

    .section01 .step-wrap {
        display: none;
    }

    .section05 p {
        font-size: 15px;
    }

    .grid-card-4, .step-grid, .grid-card-2 {
        grid-template-columns: 1fr;
    }

    .section01 .stat-item {
        width: 50%;
        min-width: 50%;
        padding: 12px;
        border-bottom: 1px solid var(--border-color);
    }

    .section01 .stat-item:nth-child(2) {
        border-right: none;
    }

    .section01 .stat-item:nth-child(3),.section01 .stat-item:nth-child(4) {
        border-bottom: none;
    }

    .step-wrap, .step-wrap img {
        width: 90%;
    }

    
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .section02 .cta-banner, .dark-card {
        padding: 32px 32px;
    }

    .section02 .grid-card-4 .card {
        display: flex;
        gap: 12px;
    }

    .section02 .grid-card-4 .card h4 {
        margin: 12px 0 12px;
    }

    .section02 .card .txt {
        width: calc(100% - 48px);
    }

    .section04 .grid-card-2 .card {
        padding: 20px;
        gap: 12px;
    }

    .section06 .inner-wrap {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        gap: 24px;
    }
}

/* ========================================================================== 
   KNOCK brand refresh
========================================================================== */

body {
    color: var(--text-dark);
    background: #fff;
    letter-spacing: -0.025em;
}

.orange { color: #171717 !important; }
.yellow { color: var(--primary-color) !important; }

.layout-header {
    position: sticky;
    background: rgba(255, 255, 255, .9);
    border-color: rgba(23, 23, 23, .08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.layout-header .logo,
footer .logo {
    width: 122px;
}

.layout-header .logo img,
footer .logo img {
    display: block;
    width: 100%;
}

.btn {
    background: var(--primary-color);
    color: #171717;
    box-shadow: 0 5px 0 #171717;
    font-weight: 800;
}

.btn:hover {
    color: #171717;
    background: #fff36a;
    transform: translateY(-2px);
    box-shadow: 0 7px 0 #171717;
}

.layout-header .btn.btn-white {
    color: #171717;
    border-color: #171717;
    box-shadow: none;
}

.layout-header .btn.btn-white:hover {
    color: #171717;
    border-color: #171717;
    background: #fffbea;
}

.section01 {
    min-height: 690px;
    padding: 92px 0 96px;
    background-color: #FFFDF0;
    background-image:
        linear-gradient(rgba(23, 23, 23, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 23, 23, .035) 1px, transparent 1px);
    background-size: 32px 32px;
}

.section01::before {
    width: 340px;
    height: 340px;
    left: 8%;
    bottom: -190px;
    transform: rotate(14deg);
    border-radius: 72px;
    border: 42px solid var(--primary-color);
    background: transparent;
}

.section01::after {
    width: 420px;
    height: 420px;
    top: -225px;
    right: -100px;
    transform: none;
    background: var(--primary-color);
    opacity: .78;
}

.section01 .inner-wrap {
    position: relative;
    z-index: 1;
    gap: 72px;
}

.section01 .text-area {
    flex: 1;
    max-width: 540px;
}

.section01 .badge {
    padding: 8px 14px;
    color: #171717;
    background: var(--primary-color);
    border: 1px solid #171717;
    border-radius: 999px;
    box-shadow: 3px 3px 0 #171717;
    letter-spacing: .02em;
}

.section01 h2 {
    margin: 18px 0;
    font-size: clamp(42px, 5vw, 58px);
    line-height: 1.17;
    letter-spacing: -0.055em;
}

.section01 h2 .orange {
    position: relative;
    z-index: 0;
}

.section01 h2 .orange::after {
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 2px;
    z-index: -1;
    height: 18px;
    content: '';
    background: var(--primary-color);
    transform: rotate(-1deg);
}

.section01 .text-area > p {
    color: #5d5d57;
    font-size: 17px;
    line-height: 1.75;
}

.section01 .stats-row {
    overflow: hidden;
    border: 1px solid #171717;
    border-radius: 18px;
    box-shadow: 7px 7px 0 var(--primary-color);
}

.section01 .stat-item {
    border-color: #dedbca;
}

.section01 .stat-item strong {
    color: #171717;
}

.section01 .match-proof ul li {
    color: #171717;
    background: var(--primary-color) !important;
    border-color: #fff;
}

.section01 .step-wrap {
    position: relative;
    border: 1px solid #171717;
    box-shadow: 14px 14px 0 var(--primary-color), 14px 14px 0 1px #171717;
}

.section01 .step-wrap::before {
    position: absolute;
    top: -24px;
    right: -22px;
    z-index: 2;
    content: 'KNOCK!';
    padding: 10px 14px;
    color: #fff;
    background: #171717;
    border-radius: 999px 999px 999px 4px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
}

.title-wrap .orange {
    display: inline-flex;
    padding: 6px 12px;
    color: #171717 !important;
    background: var(--primary-color);
    border-radius: 999px;
}

.title-wrap h2,
.title-wrap h3 {
    margin-top: 14px;
    letter-spacing: -0.045em;
}

.grid-card-4 {
    gap: 18px;
}

.grid-card-4 .card {
    border: 1px solid #dedccb;
    border-radius: 20px;
    box-shadow: none;
}

.section02 .card {
    background: #fffef7;
}

.section02 .card .icon {
    width: 52px;
    height: 52px;
    background: var(--primary-color);
    border-color: #171717;
    border-radius: 16px;
}

.section02 .card .point,
.card .point {
    color: #3f3f39;
    font-weight: 800;
}

.section02 .cta-banner {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #1d1d1b;
    border: 1px solid #171717;
    box-shadow: 10px 10px 0 var(--primary-color);
}

.section02 .cta-banner::after {
    position: absolute;
    right: 22%;
    bottom: -68px;
    width: 150px;
    height: 150px;
    content: '';
    border: 18px solid var(--primary-color);
    border-radius: 50%;
    opacity: .18;
}

.section02 .cta-banner .text,
.section02 .cta-banner .btn {
    position: relative;
    z-index: 1;
}

.section02 .btn.btn-white {
    color: #171717;
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 5px 0 #fff;
}

.section03 {
    background: #FFFDF0;
}

.section03 .card {
    padding-top: 12px;
    border: 1px solid #171717;
    border-radius: 20px;
    box-shadow: 7px 7px 0 #e9e7d9;
}

.section03 .step-num {
    width: 44px;
    height: 44px;
    color: #171717;
    background: var(--primary-color);
    border: 1px solid #171717;
}

.section04 .grid-card-2 .card,
.section04 .grid-card-2 .card.yellow,
.section04 .grid-card-2 .card.green,
.section04 .grid-card-2 .card.red {
    background: #fffef7;
    border: 1px solid #dedccb;
    border-top: 5px solid var(--primary-color);
    border-radius: 20px;
}

.section04 .grid-card-2 .card .icon,
.section04 .grid-card-2 .card.yellow .icon,
.section04 .grid-card-2 .card.green .icon,
.section04 .grid-card-2 .card.red .icon,
.section04 .grid-card-2 .card .badge,
.section04 .grid-card-2 .card.yellow .badge,
.section04 .grid-card-2 .card.green .badge,
.section04 .grid-card-2 .card.red .badge {
    color: #171717;
    background: #fff7a3;
}

.dark-card {
    color: #fff;
    background: #1d1d1b;
    border: 1px solid #171717;
    box-shadow: 10px 10px 0 var(--primary-color);
}

.dark-card::after {
    background: radial-gradient(circle, rgba(247, 230, 0, .28), transparent 68%);
}

.section05 {
    color: #171717;
    background: var(--primary-color);
}

.section05::before,
.section05::after {
    background: transparent;
    border: 44px solid rgba(23, 23, 23, .08);
}

.section05 .orange { color: #171717 !important; }
.section05 p { color: rgba(23, 23, 23, .68); }
.section05 .green { color: #171717 !important; }

.section05 .btn-large {
    color: #fff;
    background: #171717;
    box-shadow: 0 6px 0 #fff;
}

.section05 .btn-large:hover {
    color: #171717;
    background: #fff;
    box-shadow: 0 8px 0 #171717;
}

.section06 {
    background: #22221f;
}

.section06 .badge {
    color: var(--primary-color);
    background: rgba(247, 230, 0, .08);
    border-color: var(--primary-color);
}

.btn.btn-line {
    color: #171717;
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: none;
}

footer {
    border-top: 8px solid var(--primary-color);
}

footer .logo {
    width: 146px;
    padding: 8px 12px;
    background: #fff;
    border-radius: 14px;
}

.layout-acting .btn-modal {
    color: #171717;
    border: 1px solid #171717;
}

.match-status strong,
.match-dot {
    color: #171717;
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .section01 {
        min-height: auto;
        padding: 64px 0 76px;
    }

    .section01 h2 {
        font-size: 38px;
    }

    .section01 .text-area > p br {
        display: none;
    }

    .section01 .btn-cta {
        width: 100%;
        margin-top: 30px;
    }

    .section02 .cta-banner,
    .dark-card {
        box-shadow: 6px 6px 0 var(--primary-color);
    }

    .layout-acting {
        right: 12px;
        bottom: 16px;
        left: 12px;
    }

    .layout-acting .btn-modal {
        width: 100%;
    }

    .layout-acting .match-status {
        display: none;
    }
}
