/* =========================================================
   Dplaza 소개 페이지
   최대 가로폭 785px
========================================================= */

.dplazaInfoPage,
.dplazaInfoPage * {
    box-sizing: border-box;
}

.dplazaInfoPage {
    width: 100%;
    max-width: 785px;
    margin: 0 auto;
    color: #1d2736;
    font-family:
        "Pretendard",
        "Noto Sans KR",
        "Malgun Gothic",
        sans-serif;
    letter-spacing: -0.035em;
}

.dplazaInfoPage a {
    text-decoration: none;
}


/* =========================================================
   상단 소개
========================================================= */

.dplazaIntroHero {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 500px;
    padding: 48px 42px;
    overflow: hidden;
    border: 1px solid #d6e2f0;
    border-radius: 7px;
    background:
        linear-gradient(
            125deg,
            #f8fbff 0%,
            #ffffff 53%,
            #eef5fd 100%
        );
}


/* =========================================================
   왼쪽 소개 문구
========================================================= */

.dplazaIntroHeroText {
    position: relative;
    z-index: 5;
    flex: 0 0 50%;
    width: 50%;
    padding-right: 28px;
}

.dplazaIntroLabel {
    display: block;
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #245da6;
}

.dplazaIntroHeroText h1 {
    margin: 0 0 26px;
    font-size: 24px;
    line-height: 1.48;
    font-weight: 700;
    letter-spacing: -0.055em;
    color: #172235;
    word-break: keep-all;
}

.dplazaIntroHeroText h1 strong {
    color: #245da6;
    font-weight: 800;
}

.dplazaIntroHeroText p {
    max-width: 335px;
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
    color: #626e7d;
    word-break: keep-all;
}


/* =========================================================
   오른쪽 전체 연결 구조
========================================================= */

.dplazaPlatformFlow {
    position: relative;
    z-index: 2;
    flex: 0 0 50%;
    width: 50%;
    height: 408px;
}


/* 배경 원형 장식 */

.dplazaFlowBgCircle {
    position: absolute;
    z-index: 0;
    display: block;
    border-radius: 50%;
    background: rgba(36, 93, 166, 0.055);
}

.flowBgCircleTop {
    top: -39px;
    right: -50px;
    width: 180px;
    height: 180px;
}

.flowBgCircleBottom {
    right: 82px;
    bottom: -68px;
    width: 155px;
    height: 155px;
}


/* =========================================================
   위·아래 정보 카드
========================================================= */

.dplazaFlowCard {
    position: absolute;
    z-index: 5;
    left: 50%;
    display: flex;
    align-items: center;
    width: 245px;
    min-height: 96px;
    padding: 10px 10px;
    transform: translateX(-50%);
    border: 1px solid #d9e4f0;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 27px rgba(31, 68, 112, 0.09);
}

.dplazaFlowStore {
    top: 0;
}

.dplazaFlowCustomer {
    bottom: 0;
}

.dplazaFlowCardIcon {
    display: flex;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-right: 15px;
    border-radius: 50%;
    background: #eef5fd;
}

.dplazaFlowCardIcon img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.dplazaFlowCardText {
    min-width: 0;
}

.dplazaFlowCardText > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 21px;
    margin-bottom: 7px;
    padding: 0 9px;
    border-radius: 20px;
    background: #eaf3ff;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.09em;
    color: #245da6;
}

.dplazaFlowCardText strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 750;
    color: #1e2f46;
    white-space: nowrap;
}

.dplazaFlowCardText p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #7c8693;
    white-space: nowrap;
}


/* =========================================================
   중앙 원형 Dplaza 플랫폼
========================================================= */

.dplazaPlatformOrbit {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    width: 176px;
    height: 176px;
    transform: translate(-50%, -50%);
    border: 1px dashed #82b1e8;
    border-radius: 50%;
}

/* 원형 점선 바깥에 은은한 두 번째 원 */

.dplazaPlatformOrbit::before {
    content: "";
    position: absolute;
    inset: 9px;
    border: 1px solid rgba(105, 157, 218, 0.2);
    border-radius: 50%;
}

.dplazaPlatformCenter {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 132px;
    height: 132px;
    transform: translate(-50%, -50%);
    border: 1px solid #b8d1ee;
    border-radius: 50%;
    background: #fff;
    box-shadow:
        0 13px 30px rgba(36, 93, 166, 0.14),
        inset 0 0 0 7px #f5f9fe;
}

.dplazaPlatformLogo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 6px;
    border-radius: 12px 12px 12px 3px;
    background:
        linear-gradient(
            135deg,
            #347bcf 0%,
            #194d91 100%
        );
    font-family: Arial, sans-serif;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    color: #fff;
}

.dplazaPlatformCenter > strong {
    display: block;
    margin-bottom: 4px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.025em;
    color: #245da6;
}

.dplazaPlatformCenter > span {
    display: block;
    font-size: 11px;
    color: #566578;
}


/* 원형 점선 위의 작은 점 */

.platformOrbitDot {
    position: absolute;
    z-index: 4;
    display: block;
    width: 9px;
    height: 9px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #2c76cc;
    box-shadow: 0 1px 4px rgba(36, 93, 166, 0.22);
}

.orbitDotTop {
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.orbitDotBottom {
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.orbitDotLeft {
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
}

.orbitDotRight {
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
}


/* =========================================================
   세로 점선 및 화살표
========================================================= */

.dplazaVerticalConnector {
    position: absolute;
    z-index: 3;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    border-left: 2px dashed #70a5e1;
}

.connectorTop {
    top: 81px;
    height: 50px;
}

.connectorBottom {
    bottom: 103px;
    height: 50px;
}

.connectorStartDot {
    position: absolute;
    top: -4px;
    left: -5px;
    display: block;
    width: 9px;
    height: 9px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: #2c76cc;
    box-shadow: 0 1px 4px rgba(36, 93, 166, 0.2);
}

.connectorArrow {
    position: absolute;
    bottom: -1px;
    left: -7px;
    display: block;
    width: 12px;
    height: 12px;
    border-right: 3px solid #2c76cc;
    border-bottom: 3px solid #2c76cc;
    transform: rotate(45deg);
}


/* =========================================================
   마우스 효과
========================================================= */

.dplazaFlowCard {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.dplazaFlowCard:hover {
    transform: translateX(-50%) translateY(-3px);
    border-color: #b7cfea;
    box-shadow: 0 16px 31px rgba(31, 68, 112, 0.13);
}

.dplazaPlatformCenter {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.dplazaPlatformCenter:hover {
    transform: translate(-50%, -50%) scale(1.035);
    box-shadow:
        0 17px 35px rgba(36, 93, 166, 0.18),
        inset 0 0 0 7px #f5f9fe;
}

.connectDotOne {
    left: -4px;
    bottom: -5px;
}

.connectDotTwo {
    left: 70px;
    bottom: -5px;
}

.connectDotThree {
    right: -4px;
    bottom: -5px;
}

/* =========================================================
   공통 섹션 제목
========================================================= */

.dplazaSectionTitle {
    margin-bottom: 35px;
    text-align: center;
}

.dplazaInfoPage > .dplazaSectionTitle {
    padding-top: 70px;
}

.dplazaSectionTitle > span {
    display: block;
    margin-bottom: 9px;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #245da6;
}

.dplazaSectionTitle h2 {
    position: relative;
    margin: 0;
    padding-bottom: 16px;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 750;
    color: #172235;
}

.dplazaSectionTitle h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 32px;
    height: 2px;
    transform: translateX(-50%);
    border-radius: 10px;
    background: #245da6;
}

.dplazaSectionTitle p {
    margin: 17px 0 0;
    font-size: 15px;
    line-height: 1.8;
    color: #717a86;
}


/* =========================================================
   가입 강점
========================================================= */

.dplazaBenefitList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.dplazaBenefitItem {
    position: relative;
    min-height: 260px;
    padding: 29px 22px 25px;
    overflow: hidden;
    border: 1px solid #e1e8f0;
    border-radius: 7px;
    background: #fff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.dplazaBenefitItem:hover {
    transform: translateY(-5px);
    border-color: #b7cde7;
    box-shadow: 0 14px 28px rgba(34, 72, 119, 0.1);
}

.dplazaBenefitNumber {
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #edf2f8;
}

.dplazaBenefitIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 21px;
    border-radius: 50%;
    background: #f1f6fc;
}

.dplazaBenefitIcon img {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.dplazaBenefitItem h3 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 750;
    color: #245da6;
}

.dplazaBenefitItem p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #69737f;
    word-break: keep-all;
}


/* =========================================================
   주요 기능
========================================================= */

.dplazaFunctionSection {
    margin-top: 70px;
    padding: 62px 34px;
    border-radius: 7px;
    background: #f5f8fc;
}

.dplazaFunctionList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.dplazaFunctionItem {
    position: relative;
    min-height: 126px;
    padding: 25px 25px 22px 71px;
    border: 1px solid #e2e9f1;
    border-radius: 7px;
    background: #fff;
}

.dplazaFunctionNum {
    position: absolute;
    top: 24px;
    left: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eaf3ff;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #245da6;
}

.dplazaFunctionItem h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 750;
    color: #26364b;
}

.dplazaFunctionItem p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #727b86;
    word-break: keep-all;
}


/* =========================================================
   추천 매장
========================================================= */

.dplazaRecommendSection {
    padding-top: 70px;
}

.dplazaRecommendList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.dplazaRecommendItem {
    min-height: 190px;
    padding: 29px 23px;
    border-top: 3px solid #245da6;
    border-radius: 7px 7px 7px 7px;
    background: #f7f9fc;
}

.dplazaRecommendItem > strong {
    display: block;
    margin-bottom: 16px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 0.1em;
    color: #8aa9cf;
}

.dplazaRecommendItem h3 {
    margin: 0 0 13px;
    font-size: 18px;
    font-weight: 750;
    color: #245da6;
}

.dplazaRecommendItem p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: #68727e;
    word-break: keep-all;
}


/* =========================================================
   하단 버튼
========================================================= */

.dplazaActionSection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    margin-top: 18px;
}

.dplazaActionButton {
    display: flex;
    align-items: center;
    min-height: 92px;
    padding: 18px 20px;
    border-radius: 7px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.dplazaActionButton:hover {
    transform: translateY(-3px);
}

.dplazaActionJoin {
    background:
        linear-gradient(
            135deg,
            #245da6 0%,
            #173f75 100%
        );
    box-shadow: 0 12px 25px rgba(36, 93, 166, 0.2);
}

.dplazaActionView {
    border: 1px solid #cfdbe8;
    background: #fff;
}

.dplazaActionView:hover {
    box-shadow: 0 10px 23px rgba(31, 68, 112, 0.09);
}

.dplazaActionIcon {
    display: flex;
	flex: 0 0 42px;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-right: 13px;
	border-radius: 50%;
}

.dplazaActionIcon svg{
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.dplazaActionJoin .dplazaActionIcon {
    color: #ffffff;
	background: rgba(255, 255, 255, 0.16);
}

.dplazaActionView .dplazaActionIcon {
    color: #245da6;
	background: #f7f9fc;
}

.dplazaActionIcon img {
    display: block;
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.dplazaActionText {
    min-width: 0;
}

.dplazaActionText strong,
.dplazaActionText em {
    display: block;
    font-style: normal;
}

.dplazaActionText strong {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 750;
}

.dplazaActionText em {
    font-size: 15px;
}

.dplazaActionJoin .dplazaActionText strong,
.dplazaActionJoin .dplazaActionArrow {
    color: #fff;
}

.dplazaActionJoin .dplazaActionText em {
    color: rgba(255, 255, 255, 0.75);
}

.dplazaActionView .dplazaActionText strong {
    color: #1c2d43;
}

.dplazaActionView .dplazaActionText em {
    color: #808996;
}

.dplazaActionArrow {
    margin-left: auto;
    padding-left: 12px;
    font-size: 20px;
    color: #8290a0;
}


/* =========================================================
   상담 연락처
========================================================= */

.dplazaContactSection {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 0.85fr;
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid #dfe6ee;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(28, 57, 91, 0.06);
}

.dplazaContactGuide {
    padding: 29px 27px;
    background: #f5f8fc;
}

.dplazaContactGuide > span {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #7696bd;
}

.dplazaContactGuide h2 {
    margin: 0 0 13px;
    font-size: 15px;
    font-weight: 750;
    color: #1f3551;
}

.dplazaContactGuide p {
    margin: 0 0 11px;
    font-size: 13px;
    line-height: 1.7;
    color: #626e7d;
}

.dplazaContactGuide small {
    display: block;
    font-size: 13px;
    line-height: 1.7;
    color: #858d97;
}

.dplazaContactItem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 22px;
    border-left: 1px solid #e5eaf0;
}

.dplazaContactItem span {
    display: block;
    margin-bottom: 9px;
    font-size: 15px;
    font-weight: 700;
    color: #245da6;
}

.dplazaContactItem strong {
    display: block;
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0;
}

.dplazaContactItem strong a {
    color: #1d2e44;
}

.dplazaContactItem strong a:hover {
    color: #245da6;
}

.dplazaContactItem p {
    margin: 0;
    font-size: 13px;
    color: #848d98;
}


/* =========================================================
   태블릿
========================================================= */

@media screen and (max-width: 800px) {

    .dplazaInfoPage {
        padding: 0 15px;
    }

    .dplazaIntroHero {
        padding-right: 32px;
        padding-left: 32px;
    }

    .dplazaIntroHeroText h1 {
        font-size: 26px;
    }

    .dplazaBenefitItem {
        padding-right: 18px;
        padding-left: 18px;
    }
}


/* =========================================================
   모바일
========================================================= */

@media screen and (max-width: 640px) {

    .dplazaInfoPage {
        padding: 0 12px;
    }

	 .dplazaIntroHero {
        display: block;
        min-height: 0;
        padding: 37px 24px 29px;
    }

    .dplazaIntroHeroText {
        width: 100%;
        padding-right: 0;
    }

    .dplazaIntroHeroText h1 {
        font-size: 24px;
        line-height: 1.5;
    }

    .dplazaIntroHeroText p {
        font-size: 13px;
    }

    .dplazaIntroHeroVisual {
        width: 100%;
        height: 285px;
        margin-top: 25px;
    }

    .dplazaIntroVisualCard {
        width: 195px;
        min-height: 105px;
        padding: 15px;
    }

    .visualCardStore {
        top: 8px;
        left: 0;
    }

    .visualCardCustomer {
        right: 0;
        bottom: 10px;
    }

    .dplazaVisualIcon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        margin-right: 11px;
    }

    .dplazaVisualIcon img {
        width: 28px;
        height: 28px;
    }

    .dplazaVisualContent strong {
        font-size: 13px;
    }

    .dplazaVisualContent p {
        font-size: 9px;
    }

    .dplazaIntroConnectLine {
        top: 130px;
        left: 80px;
        width: 150px;
    }

    .dplazaSectionTitle h2 {
        font-size: 22px;
    }

    .dplazaSectionTitle p br {
        display: none;
    }

    .dplazaBenefitList {
        grid-template-columns: 1fr;
    }

    .dplazaBenefitItem {
        min-height: 0;
    }

    .dplazaFunctionSection {
        padding: 50px 18px;
    }

    .dplazaFunctionList {
        grid-template-columns: 1fr;
    }

    .dplazaRecommendList {
        grid-template-columns: 1fr;
    }

    .dplazaRecommendItem {
        min-height: 0;
    }

    .dplazaActionSection {
        grid-template-columns: 1fr;
    }

    .dplazaContactSection {
        grid-template-columns: 1fr;
    }

    .dplazaContactItem {
        min-height: 108px;
        border-top: 1px solid #e5eaf0;
        border-left: 0;
    }
}