@charset "utf-8";

.mvpn-home {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
    overflow: hidden;
}

.mvpn-section-inner {
    width: min(1440px, calc(100% - 64px));
    margin: 0 auto;
}

/* ==================================================
   메인 배너
   지구 이미지 조정:
   --mvpn-hero-image-size : 이미지 크기
   --mvpn-hero-image-x    : 좌우 위치
   --mvpn-hero-image-y    : 상하 위치
================================================== */

.mvpn-hero {
    --mvpn-hero-image-size: 130%;
    --mvpn-hero-image-x: 92%;
    --mvpn-hero-image-y: 45%;

    position: relative;
    width: 100%;
    min-height: 650px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 45%, rgba(0, 104, 255, 0.35), transparent 27%),
        radial-gradient(circle at 70% 65%, rgba(0, 58, 170, 0.25), transparent 38%),
        linear-gradient(105deg, #020b1d 0%, #03142e 51%, #05224d 100%);
}

.mvpn-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.4;
    background-image:
        linear-gradient(rgba(54, 128, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(54, 128, 255, 0.07) 1px, transparent 1px);
    background-size: 64px 64px;
}

.mvpn-hero::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background-image:
        linear-gradient(
            to right,
            #020b1d 0%,
            rgba(2, 11, 29, 0.98) 38%,
            rgba(2, 11, 29, 0.72) 48%,
            rgba(2, 11, 29, 0.18) 58%,
            rgba(2, 11, 29, 0) 68%
        ),
        url("../img/hero-security.png");
    background-repeat: no-repeat, no-repeat;
    background-size:
        100% 100%,
        auto var(--mvpn-hero-image-size);
    background-position:
        left top,
        var(--mvpn-hero-image-x) var(--mvpn-hero-image-y);
}

.mvpn-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 650px;
    padding: 58px 0 128px;
}

.mvpn-hero-content {
    position: relative;
    z-index: 3;
    width: 47%;
    max-width: 640px;
    padding-left: 38px;
}

.mvpn-hero-label {
    display: none;
}

.mvpn-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(52px, 4vw, 72px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.055em;
}

.mvpn-hero h1 strong {
    color: #3484ff;
}

.mvpn-hero-description {
    max-width: 560px;
    margin: 32px 0 0;
    color: #d1dbee;
    font-size: 20px;
    line-height: 1.75;
    letter-spacing: -0.025em;
}

.mvpn-hero-platforms {
    display: flex;
    align-items: center;
    margin-top: 32px;
}

.mvpn-platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 115px;
    padding: 0 22px;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.4;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.mvpn-platform-item:first-child {
    padding-left: 0;
}

.mvpn-platform-item:last-child {
    border-right: 0;
}

.mvpn-platform-item i {
    margin-bottom: 10px;
    color: #50a7ff;
    font-size: 27px;
}

.mvpn-hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 34px;
}

.mvpn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 205px;
    height: 60px;
    padding: 0 28px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.mvpn-btn i {
    margin-left: 12px;
}

.mvpn-btn-primary {
    color: #ffffff;
    border: 1px solid #2474ff;
    background: linear-gradient(135deg, #247dff, #0857ed);
    box-shadow: 0 14px 35px rgba(9, 82, 228, 0.38);
}

.mvpn-btn-outline {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(0, 0, 0, 0.10);
}

.mvpn-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* index.php에 남아 있는 기존 우측 비주얼 요소는 사용하지 않음 */
.mvpn-hero-visual,
.mvpn-hero-image,
.mvpn-security-circle,
.mvpn-security-glow,
.mvpn-shield,
.mvpn-orbit {
    display: none !important;
}

/* ==================================================
   핵심 장점
================================================== */

.mvpn-features {
    position: relative;
    z-index: 10;
    margin-top: -96px;
    padding-bottom: 72px;
}

.mvpn-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid #e0e6ef;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 55px rgba(1, 26, 66, 0.17);
}

.mvpn-feature-card {
    display: flex;
    align-items: center;
    min-height: 176px;
    padding: 38px 34px;
    border-right: 1px solid #e7ebf2;
}

.mvpn-feature-card:last-child {
    border-right: 0;
}

.mvpn-feature-icon {
    display: flex;
    flex: 0 0 64px;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-right: 22px;
    color: #176af1;
    font-size: 31px;
    border: 1px solid #d8e7ff;
    border-radius: 16px;
    background: #f5f9ff;
}

.mvpn-feature-card h2 {
    margin: 0 0 12px;
    color: #172238;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.mvpn-feature-card p {
    margin: 0;
    color: #657185;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: -0.025em;
}

/* ==================================================
   메인 배너 및 핵심 장점 반응형
================================================== */

@media (max-width: 1400px) {
    .mvpn-hero-content {
        width: 48%;
        padding-left: 20px;
    }
}

@media (max-width: 1180px) {
    .mvpn-section-inner {
        width: calc(100% - 40px);
    }

    .mvpn-hero {
        min-height: 610px;
    }

    .mvpn-hero-inner {
        min-height: 610px;
        padding: 52px 0 118px;
    }

    .mvpn-hero-content {
        width: 50%;
        max-width: 560px;
        padding-left: 0;
    }

    .mvpn-hero h1 {
        font-size: 58px;
    }

    .mvpn-hero-description {
        font-size: 17px;
    }
}

@media (max-width: 1150px) {
    .mvpn-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mvpn-feature-card:nth-child(2) {
        border-right: 0;
    }

    .mvpn-feature-card:nth-child(-n+2) {
        border-bottom: 1px solid #e7ebf2;
    }
}

@media (max-width: 900px) {
    .mvpn-hero {
        min-height: auto;
    }

    .mvpn-hero::after {
        display: none;
    }

    .mvpn-hero-inner {
        display: block;
        min-height: auto;
        padding: 72px 0 125px;
    }

    .mvpn-hero-content {
        width: 100%;
        max-width: none;
        padding: 0;
        text-align: center;
    }

    .mvpn-hero h1 {
        font-size: 50px;
        line-height: 1.2;
    }

    .mvpn-hero-description {
        max-width: none;
        margin-top: 24px;
        font-size: 17px;
    }

    .mvpn-hero-platforms {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 520px;
        margin: 30px auto 0;
    }

    .mvpn-platform-item {
        width: 25%;
        min-width: 0;
        padding: 0 12px;
    }

    .mvpn-hero-buttons {
        justify-content: center;
    }

    .mvpn-features {
        margin-top: -76px;
    }

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

    .mvpn-feature-card {
        min-height: 160px;
    }
}

@media (max-width: 640px) {
    .mvpn-section-inner {
        width: calc(100% - 28px);
    }

    .mvpn-hero-inner {
        padding: 58px 0 110px;
    }

    .mvpn-hero h1 {
        font-size: 39px;
        letter-spacing: -0.045em;
    }

    .mvpn-hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .mvpn-hero-description br {
        display: none;
    }

    .mvpn-hero-platforms {
        margin-top: 28px;
    }

    .mvpn-platform-item {
        width: 50%;
        margin-bottom: 24px;
        padding: 0 8px !important;
        border-right: 0;
        font-size: 12px;
    }

    .mvpn-platform-item i {
        font-size: 23px;
    }

    .mvpn-hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .mvpn-btn {
        width: 100%;
        min-width: 0;
        height: 54px;
        font-size: 15px;
    }

    .mvpn-features {
        margin-top: -66px;
        padding-bottom: 48px;
    }

    .mvpn-feature-grid {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }

    .mvpn-feature-card {
        min-height: 0;
        padding: 25px 22px;
        border-right: 0 !important;
        border-bottom: 1px solid #e7ebf2 !important;
    }

    .mvpn-feature-card:last-child {
        border-bottom: 0 !important;
    }

    .mvpn-feature-icon {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
        margin-right: 16px;
        font-size: 25px;
    }

    .mvpn-feature-card h2 {
        margin-bottom: 7px;
        font-size: 16px;
    }

    .mvpn-feature-card p {
        font-size: 13px;
    }

    .mvpn-feature-card p br {
        display: none;
    }
}

@media (max-width: 380px) {
    .mvpn-section-inner {
        width: calc(100% - 22px);
    }

    .mvpn-hero h1 {
        font-size: 34px;
    }

    .mvpn-hero-description {
        font-size: 14px;
    }
}


/* ==================================================
   다운로드 섹션
================================================== */

.mvpn-download {
    padding: 88px 0 100px;
    background:
        radial-gradient(circle at 50% 0%, rgba(38, 116, 255, 0.08), transparent 34%),
        #f7f9fc;
}

.mvpn-section-heading {
    margin-bottom: 48px;
    text-align: center;
}

.mvpn-section-label {
    display: block;
    margin-bottom: 10px;
    color: #2674ed;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.mvpn-section-heading h2 {
    margin: 0;
    color: #14213a;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.mvpn-section-heading p {
    margin: 16px 0 0;
    color: #69758a;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: -0.025em;
}

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

.mvpn-download-card {
    position: relative;
    min-height: 405px;
    padding: 42px 34px 36px;
    text-align: center;
    border: 1px solid #e0e7f1;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(17, 42, 82, 0.07);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.mvpn-download-card:hover {
    transform: translateY(-7px);
    border-color: #b9d3ff;
    box-shadow: 0 22px 50px rgba(21, 65, 132, 0.13);
}

.mvpn-download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    margin: 0 auto 24px;
    font-size: 48px;
    border-radius: 22px;
}

.mvpn-download-icon.windows {
    color: #1475ef;
    background: #eef6ff;
}

.mvpn-download-icon.android {
    color: #63b448;
    background: #f1f9ed;
}

.mvpn-download-icon.ios {
    color: #111827;
    background: #f3f4f6;
}

.mvpn-download-card h3 {
    margin: 0;
    color: #16243d;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.mvpn-download-card strong {
    display: block;
    margin-top: 7px;
    color: #3e4c63;
    font-size: 16px;
    font-weight: 700;
}

.mvpn-download-card p {
    min-height: 66px;
    margin: 20px 0 26px;
    color: #6c788b;
    font-size: 14px;
    line-height: 1.65;
    letter-spacing: -0.02em;
}

.mvpn-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 48px;
    padding: 0 22px;
    color: #2168db;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #9ec2ff;
    border-radius: 8px;
    background: #ffffff;
    transition: 0.2s ease;
}

.mvpn-download-button i {
    margin-left: 10px;
}

.mvpn-download-button:hover {
    color: #ffffff;
    border-color: #2168e6;
    background: #2168e6;
}

.mvpn-download-button.primary {
    color: #ffffff;
    border-color: #1769eb;
    background: linear-gradient(135deg, #2c7cff, #1558db);
    box-shadow: 0 10px 24px rgba(31, 102, 226, 0.24);
}

.mvpn-download-button.primary:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #1f70ef, #0d4ac7);
}

.mvpn-guide-link {
    margin-top: 28px;
}

.mvpn-guide-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 74px;
    padding: 18px 26px;
    color: #1d5fcf;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid #d8e5f8;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(27, 57, 101, 0.06);
}

.mvpn-guide-link a > i:first-child {
    margin-right: 12px;
    font-size: 22px;
}

.mvpn-guide-link span {
    margin-left: 16px;
    color: #778397;
    font-size: 14px;
    font-weight: 500;
}

.mvpn-guide-link .arrow {
    margin-left: 14px;
    font-size: 20px;
}

/* 다운로드 반응형 */
@media (max-width: 900px) {
    .mvpn-download {
        padding: 72px 0 80px;
    }

    .mvpn-download-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin: 0 auto;
    }

    .mvpn-download-card {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .mvpn-download {
        padding: 58px 0 65px;
    }

    .mvpn-section-heading {
        margin-bottom: 34px;
    }

    .mvpn-section-heading h2 {
        font-size: 31px;
    }

    .mvpn-section-heading p {
        font-size: 14px;
    }

    .mvpn-section-heading p br {
        display: none;
    }

    .mvpn-download-grid {
        gap: 16px;
    }

    .mvpn-download-card {
        padding: 32px 22px 28px;
        border-radius: 14px;
    }

    .mvpn-download-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 18px;
        font-size: 40px;
    }

    .mvpn-download-card h3 {
        font-size: 21px;
    }

    .mvpn-download-card p {
        min-height: 0;
        font-size: 13px;
    }

    .mvpn-download-card p br {
        display: none;
    }

    .mvpn-download-button {
        width: 100%;
    }

    .mvpn-guide-link a {
        flex-wrap: wrap;
        min-height: 0;
        padding: 19px;
        font-size: 15px;
    }

    .mvpn-guide-link span {
        width: 100%;
        margin: 8px 0 0;
        text-align: center;
        font-size: 12px;
    }

    .mvpn-guide-link .arrow {
        display: none;
    }
}

/* ==================================================
   요금 안내
================================================== */

.mvpn-pricing {
    position: relative;
    padding: 92px 0 105px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 25%, rgba(30, 112, 255, 0.2), transparent 30%),
        linear-gradient(135deg, #020c20 0%, #061a38 48%, #031126 100%);
}

.mvpn-pricing::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(65, 137, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(65, 137, 255, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
}

.mvpn-pricing .mvpn-section-inner {
    position: relative;
    z-index: 2;
}

.mvpn-section-heading-light h2 {
    color: #ffffff;
}

.mvpn-section-heading-light p {
    color: #aebbd0;
}

.mvpn-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 26px;
}

.mvpn-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    padding: 38px 36px 34px;
    border: 1px solid rgba(112, 154, 220, 0.2);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(23, 48, 84, 0.95), rgba(11, 29, 58, 0.95));
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
    transition: 0.22s ease;
}

.mvpn-price-card:hover {
    transform: translateY(-7px);
    border-color: rgba(62, 135, 255, 0.65);
}

.mvpn-price-card.featured {
    border: 2px solid #2f80ff;
    background:
        radial-gradient(circle at 50% 0%, rgba(45, 128, 255, 0.18), transparent 38%),
        linear-gradient(145deg, #173860, #0b203e);
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.28),
        0 0 38px rgba(29, 107, 255, 0.18);
}

.mvpn-recommend-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    min-width: 90px;
    padding: 7px 18px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    border-radius: 100px;
    background: linear-gradient(135deg, #3386ff, #1760e8);
    box-shadow: 0 8px 18px rgba(24, 91, 224, 0.35);
    transform: translateX(-50%);
}

.mvpn-price-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    color: #8fc2ff;
    font-size: 29px;
    border: 1px solid rgba(102, 169, 255, 0.22);
    border-radius: 15px;
    background: rgba(35, 105, 205, 0.12);
}

.mvpn-price-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.mvpn-price-summary {
    min-height: 48px;
    margin: 11px 0 24px;
    color: #aebbd0;
    font-size: 14px;
    line-height: 1.65;
}

.mvpn-price-speed {
    display: flex;
    align-items: flex-end;
    margin-bottom: 28px;
}

.mvpn-price-speed strong {
    color: #ffffff;
    font-size: 54px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.055em;
}

.mvpn-price-speed span {
    margin: 0 0 6px 9px;
    color: #7fb6ff;
    font-size: 18px;
    font-weight: 700;
}

.mvpn-price-card ul {
    flex: 1;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mvpn-price-card li {
    margin-bottom: 15px;
    color: #d7e0ee;
    font-size: 15px;
}

.mvpn-price-card li i {
    margin-right: 10px;
    color: #4c9aff;
}

.mvpn-price-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    margin-top: 24px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(113, 165, 240, 0.45);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.04);
    transition: 0.2s ease;
}

.mvpn-price-card.featured .mvpn-price-button,
.mvpn-price-button:hover {
    color: #ffffff;
    border-color: #2c7cff;
    background: linear-gradient(135deg, #2b7dff, #1558db);
}

.mvpn-pricing-more {
    margin-top: 34px;
    text-align: center;
}

.mvpn-pricing-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 50px;
    padding: 0 24px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.mvpn-pricing-more i {
    margin-left: 10px;
}

/* 요금제 반응형 */
@media (max-width: 900px) {
    .mvpn-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin: 0 auto;
    }

    .mvpn-price-card {
        min-height: 0;
    }

    .mvpn-price-summary {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .mvpn-pricing {
        padding: 64px 0 72px;
    }

    .mvpn-pricing-grid {
        gap: 22px;
    }

    .mvpn-price-card {
        padding: 32px 25px 28px;
        border-radius: 14px;
    }

    .mvpn-price-card h3 {
        font-size: 24px;
    }

    .mvpn-price-speed strong {
        font-size: 47px;
    }

    .mvpn-price-card li {
        font-size: 14px;
    }
}

/* ==================================================
   하단 바로가기
================================================== */

.mvpn-quick-links {
    border-top: 1px solid #e6ebf3;
    border-bottom: 1px solid #e6ebf3;
    background: #ffffff;
}

.mvpn-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.mvpn-quick-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 145px;
    padding: 30px 28px;
    color: inherit;
    text-decoration: none;
    border-right: 1px solid #e8edf4;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.mvpn-quick-item:last-child {
    border-right: 0;
}

.mvpn-quick-item:hover {
    color: inherit;
    background: #f6f9ff;
}

.mvpn-quick-icon {
    display: flex;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-right: 18px;
    color: #2472ef;
    font-size: 27px;
    border: 1px solid #dbe8fc;
    border-radius: 15px;
    background: #f4f8ff;
}

.mvpn-quick-item h3 {
    margin: 0 0 8px;
    color: #17253e;
    font-size: 17px;
    font-weight: 800;
}

.mvpn-quick-item p {
    margin: 0;
    color: #68758a;
    font-size: 13px;
    line-height: 1.65;
}

.mvpn-quick-arrow {
    margin-left: auto;
    padding-left: 14px;
    color: #a3aec0;
    font-size: 20px;
}

/* ==================================================
   푸터
================================================== */

.mvpn-footer {
    position: relative;
    color: #ffffff;
    background: #010d23;
}

.mvpn-footer-main {
    display: grid;
    grid-template-columns: 2.1fr 1fr 1fr 1fr 1.4fr;
    gap: 50px;
    padding: 66px 0 54px;
}

.mvpn-footer-logo {
    display: inline-flex;
    align-items: center;
    background: #010d23;
}

.mvpn-footer-logo img {
    display: block;
    width: 205px;
    height: auto;
    object-fit: contain;
}

.mvpn-footer-brand p {
    max-width: 380px;
    margin: 22px 0 0;
    color: #9eacc1;
    font-size: 14px;
    line-height: 1.8;
    word-break: keep-all;
}

.mvpn-footer-menu,
.mvpn-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mvpn-footer-menu h3,
.mvpn-footer-contact h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.mvpn-footer-menu a {
    margin-bottom: 12px;
    color: #a7b4c7;
    font-size: 14px;
    text-decoration: none;
}

.mvpn-footer-menu a:hover {
    color: #4d96ff;
}

.mvpn-footer-contact strong {
    display: block;
    color: #3484ff;
    font-size: 31px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.mvpn-footer-contact p {
    margin: 15px 0;
    color: #a7b4c7;
    font-size: 13px;
    line-height: 1.75;
}

.mvpn-footer-contact > a {
    color: #dbe6f6;
    font-size: 14px;
    text-decoration: none;
}

.mvpn-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mvpn-footer-bottom p {
    margin: 0;
    color: #79889d;
    font-size: 13px;
}

.mvpn-footer-links {
    display: flex;
    gap: 20px;
}

.mvpn-footer-links a {
    color: #8f9db1;
    font-size: 13px;
    text-decoration: none;
}

.mvpn-footer-links a:hover {
    color: #ffffff;
}

.mvpn-top-button {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    color: #ffffff;
    font-size: 22px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    background: rgba(3, 18, 43, 0.88);
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.2s ease;
}

.mvpn-top-button.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==================================================
   하단 반응형
================================================== */

@media (max-width: 1100px) {
    .mvpn-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mvpn-quick-item:nth-child(2) {
        border-right: 0;
    }

    .mvpn-quick-item:nth-child(-n+2) {
        border-bottom: 1px solid #e8edf4;
    }

    .mvpn-footer-main {
        grid-template-columns: 2fr repeat(3, 1fr);
    }

    .mvpn-footer-contact {
        grid-column: 1 / -1;
        padding-top: 10px;
    }
}

@media (max-width: 700px) {
    .mvpn-quick-grid {
        grid-template-columns: 1fr;
    }

    .mvpn-quick-item {
        min-height: 0;
        padding: 24px 18px;
        border-right: 0 !important;
        border-bottom: 1px solid #e8edf4;
    }

    .mvpn-quick-item:last-child {
        border-bottom: 0;
    }

    .mvpn-quick-item p br {
        display: none;
    }

    .mvpn-footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 25px;
        padding: 48px 0 38px;
    }

    .mvpn-footer-brand {
        grid-column: 1 / -1;
    }

    .mvpn-footer-contact {
        grid-column: 1 / -1;
    }

    .mvpn-footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        padding: 22px 0;
        text-align: center;
    }

    .mvpn-top-button {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 420px) {
    .mvpn-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .mvpn-footer-logo img {
        width: 180px;
    }

    .mvpn-footer-contact strong {
        font-size: 27px;
    }
}

/* MegaVPN KCP business footer patch */
.mvpn-footer .mvpn-business-info {
    width: 100%;
    margin: 34px 0 0;
    padding: 22px 0 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    color: #8fa4c5;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    text-align: left;
    clear: both;
}

.mvpn-footer .mvpn-business-info p {
    margin: 0 0 5px;
    color: #8fa4c5;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
}

.mvpn-footer .mvpn-business-info a {
    color: #b8c7e3;
    text-decoration: none;
    font-weight: 400;
}

.mvpn-footer .mvpn-business-info a:hover {
    color: #ffffff;
}

.mvpn-footer .mvpn-business-info span {
    margin: 0 8px;
    color: #4b6388;
}

.mvpn-footer .mvpn-business-links {
    margin-top: 8px !important;
}

.mvpn-footer .mvpn-service-note {
    margin-top: 6px !important;
    color: #7f93b3 !important;
}

@media (max-width: 768px) {
    .mvpn-footer .mvpn-business-info {
        margin-top: 26px;
        padding: 18px 0;
        font-size: 12px;
        line-height: 1.7;
    }

    .mvpn-footer .mvpn-business-info p {
        font-size: 12px;
    }

    .mvpn-footer .mvpn-business-info span {
        margin: 0 5px;
    }
}

/* MegaVPN KCP business footer restore */
.mvpn-footer .mvpn-business-info {
    width: 100%;
    margin: 34px 0 0;
    padding: 20px 0 18px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    color: #8fa4c5;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
    text-align: left;
    clear: both;
}

.mvpn-footer .mvpn-business-info p {
    margin: 0 0 5px;
    color: #8fa4c5;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.75;
}

.mvpn-footer .mvpn-business-info a {
    color: #b8c7e3;
    text-decoration: none;
    font-weight: 400;
}

.mvpn-footer .mvpn-business-info a:hover {
    color: #ffffff;
}

.mvpn-footer .mvpn-business-info span {
    margin: 0 8px;
    color: #4b6388;
}

.mvpn-footer .mvpn-business-links {
    margin-top: 8px !important;
}

.mvpn-footer .mvpn-service-note {
    margin-top: 6px !important;
    color: #7f93b3 !important;
}

.mvpn-footer .mvpn-footer-bottom {
    margin-top: 18px;
}

@media (max-width: 768px) {
    .mvpn-footer .mvpn-business-info {
        margin-top: 24px;
        padding: 16px 0;
        font-size: 12px;
        line-height: 1.7;
    }

    .mvpn-footer .mvpn-business-info p {
        font-size: 12px;
    }

    .mvpn-footer .mvpn-business-info span {
        margin: 0 5px;
    }
}
