/* =========================================================
   Global Base
   ========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, .05);
    word-break: keep-all;
}


:root {
    --brand: #3b47ff;
    --brand-600: #2f39d4;
    --ink: #111;
    --ink-2: #222;
    --ink-3: #333;
    --ink-6: #666;
    --ink-7: #797979;
    --bg: #ffffff;
    --bg-sub: #f5f7ff;
    --nav-h: 64px;
}

html,
body {
    background: var(--bg);
    color: var(--ink-2);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Util */
.blue {
    color: #3b47ff;
}

.gray {
    color: #797979;
}

.black {
    color: #000 !important;
}

.mt30 {
    margin-top: 30px;
}

.mt50 {
    margin-top: 50px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb50 {
    margin-bottom: 50px;
}

/* =========================================================
   Navigation (element <nav> 와 .nav 둘 다 지원)
   ========================================================= */
nav,
.nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    z-index: 1000;
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
    background: transparent;
}

.nav-inner {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo img {
    width: 150px;
    transition: .3s;
}

.nav-links,
.gnb {
    display: flex;
    gap: 30px;
    font-weight: 600;
    align-items: center;
}

.nav-links li,
.gnb li {
    list-style: none;
}

.nav-links a {
    color: #fff;
    font-size: 1em;
    transition: color .3s;
}


.nav {
    background-color: #fff;
}


/* GNB 모바일 오버레이 */
#gnb.gnb {
    display: flex;
}

@media (min-width: 1025px) {
    #gnb {
        position: static;
        display: flex !important;
        background: transparent;
        box-shadow: none;
        padding: 0;
        flex-direction: row !important;
    }
}

@media (max-width:1024px) {
    .nav.menu-open {
        background: #fff !important;
    }

    .nav.menu-open .gnb li a,
    .nav.menu-open .hamburger {
        color: #000 !important;
    }

    .nav.menu-open .logo .logo-black {
        display: block;
    }

    .nav.menu-open .logo .logo-white {
        display: none;
    }
}

@media (max-width:1024px) {
    #gnb.gnb {
        display: none !important;
    }

    #gnb.gnb.active {
        display: flex !important;
        position: fixed !important;
        top: var(--nav-h);
        left: 0;
        right: 0;
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 14px 16px;
        flex-direction: column;
        gap: 12px;
        background: #fff;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 16px 28px rgba(0, 0, 0, .08);
        z-index: 2000;
    }

    #gnb.gnb a {
        color: #111;
        font-weight: 700;
        display: block;
        padding: 12px 4px;
    }
}

/* 햄버거 */
.hamburger {
    appearance: none;
    -webkit-appearance: none;
    background: transparent !important;
    border: 0 !important;
    width: 28px;
    height: 20px;
    display: none;
    padding: 0;
    margin: 0;
    line-height: 1;
    color: #fff;
    z-index: 1100;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: background .2s, transform .2s;
    box-shadow: 0 0 .5px rgba(0, 0, 0, .25);
}

.nav.scrolled {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.nav.scrolled .hamburger {
    color: #111;
}

.nav.scrolled .gnb a {
    color: #000 !important;
}

body.login-page .hamburger {
    color: #111 !important;
}

@media (max-width:1024px) {
    .hamburger {
        display: flex;
    }
}

@media (min-width:1025px) {
    .hamburger {
        display: none !important;
    }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
    background: url(../img/main_bg.svg) repeat center !important;
    width: 100%;
    color: #fff;
    height: 100%;
    overflow: hidden;
    margin-top: -100px;
}

.hero-inner {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 10% 5% 0%;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    overflow: hidden;
    margin-top: 100px;
}

.hero-left {
    max-width: 40%;
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 200px;
    margin-top: 100px;
}

.hero-left .sub {
    font-size: 1em;
    margin-bottom: 10px;
    color: #eee;
    letter-spacing: 2px;
}

.hero-left .title {
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 10px;
}

.hero-left .desc {
    font-size: 1em;
    margin-bottom: 20px;
}

.hero-right {
    display: flex;
    gap: 40px;
    align-items: flex-end;
    justify-content: flex-end;
    margin: 200px 0 50px;
}

.hero-card {
    width: 220px;
    height: 280px;
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
}

.hero-card img {
    width: 60px;
    height: 60px;
}


/* Buttons */
.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 1em;
    font-weight: 600;
    display: inline-block;
    transition: .3s;
}

.btn-outline:hover {
    background: #fff;
    color: #3d3dff;
}

.btn-gradient {
    background: linear-gradient(to right, #4c55ff, #6d6aff);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
    font-size: .875em;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    transition: background .3s;
}

.btn-gradient:hover {
    background: linear-gradient(to right, #3d43d8, #555ff5);
}

.btn-primary {
    display: inline-block;
    padding: 8px 16px;
    background: #3d3dff;
    border-radius: 10px;
    font-size: .85em;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* 회원가입 폼 전용 스타일 */

.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 150px 20px 100px;
}

.auth-wrap {
    background-color: #fff;
    width: 100%;
    max-width: 440px;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.auth-wrap h2 {
    font-size: 20px;
    font-weight: 700;
    color: #2643e9;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.phone-inputs1 {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

.phone-inputs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.phone-inputs select,
.phone-inputs input {
    flex: 1;
}

.terms-box {
    background-color: #f4f4f4;
    font-size: 13px;
    color: #444;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    line-height: 1.6;
}

.checkbox-wrap {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 14px;
}

.checkbox-wrap input[type="checkbox"] {
    margin-right: 8px;
}

.auth-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.auth-link a {
    color: #2643e9;
    text-decoration: none;
    font-weight: 500;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* 반응형 대응 */
@media (max-width: 480px) {
    .register-box {
        padding: 30px 20px;
    }

    .phone-inputs {
        flex-direction: column;
    }
}

/* Hero responsive */
@media (max-width:768px) {
    .hero-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-inner {
        padding: 20% 5% 10%;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        margin: 0;
    }

    .hero-right {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .hero-card {
        width: calc(50% - 6px);
        height: auto;
        padding: 20px 12px;
    }
}

/* =========================================================
   Section: Subscribe (bubbles)
   ========================================================= */
.subscribe-section {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #e9f0ff, #ffffff);
}

.section-title h2 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title h3 {
    font-size: 1.2em;
    color: #333;
}

.section-title .blue,
.section-title span {
    color: #3b47ff;
}

.bubble-wrap {
    position: relative;
    max-width: 1000px;
    height: 700px;
    margin: 0 auto;
}

.bubble-group {
    position: absolute;
    width: 420px;
    opacity: 0;
    transform: translateY(30px);
    animation: bubbleFadeUp .6s ease forwards;
}

.bubble-face {
    width: 130px;
    height: auto;
    position: absolute;
    z-index: 2;
}

.bubble-svg {
    position: relative;
    width: 100%;
    z-index: 1;
}

.bubble-svg img {
    width: 100%;
    display: block;
}

.bubble-text {
    position: absolute;
    top: 25%;
    left: 10%;
    width: 80%;
    font-size: .95em;
    line-height: 1.5;
    color: #000;
    font-weight: 500;
}

.bubble-text.text2 {
    top: 18%;
}

.bubble-text.text4 {
    top: 19%;
}

.bubble-text strong {
    font-weight: 800;
}

/* positions */
.bubble1 {
    top: 0;
    left: 0;
}

.bubble2 {
    top: 150px;
    right: 0;
}

.bubble3 {
    top: 320px;
    left: 0;
}

.bubble4 {
    top: 490px;
    right: 0;
}

.bubble1 .bubble-face {
    top: 150px;
    left: -10px;
}

.bubble2 .bubble-face {
    top: 130px;
    right: -60px;
}

.bubble3 .bubble-face {
    top: 150px;
    left: -10px;
    width: 180px;
}

.bubble4 .bubble-face {
    top: 120px;
    right: -60px;
}

@media (min-width:769px) {
    .bubble-mobile {
        display: none;
    }
}

@media (max-width:768px) {

    .bubble-wrap {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 0px;
        align-items: center;
        width: 100%;
        padding-bottom: 550px;
    }

    .bubble-group {
        position: relative;
        display: flex !important;
        align-items: center;
        gap: 12px;
        width: min(560px, 92vw);
        margin: 0 auto;
    }

    .bubble-face {
        position: static !important;
        width: clamp(10px, 20vw, 710px);
        height: auto;
        transform: translateY(120px) scale(1.5);
        transform-origin: center bottom;
        margin: 0;
    }

    .bubble-group.bubble3 .bubble-face {
        transform: translateY(120px) scale(1.6);
    }

    .bubble-group.bubble4 .bubble-face {
        transform: translateY(100px) scale(1.1);
    }

    .bubble2,
    .bubble4 {
        flex-direction: row-reverse;
    }

    .bubble-text {
        position: absolute;
        top: 40% !important;
        left: 0% !important;
        width: 100% !important;
        transform: translateY(-50%);
        text-align: center;
        font-size: clamp(12px, 3.7vw, 16px);
        line-height: 1.45;
    }

    .card-features li {
        display: flex;
        align-items: center;
        font-size: 1em;
        margin-bottom: 12px;
        color: #222;
        justify-content: center;
    }

    .subscribe-section .section-title.trans {
        padding: 10px 0 !important;
    }

}

/* =========================================================
   Pricing
   ========================================================= */
.pricing-section {
    background: #e6f6ff;
    padding: 80px 20px;
    text-align: center;
}

.pricing-section h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.pricing-section .desc {
    font-size: 3em;
    font-weight: 700;
    color: #3a3aff;
}

.price-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    padding: 60px 20px;
    background: #e8f8ff;
}

.price-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    padding: 30px 24px;
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: background .3s, box-shadow .3s, border .3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.price-card:hover {
    background: linear-gradient(to bottom, #f0f8ff, #d3eaff);
    border: 1px solid #2d93ff;
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
}

.card-header h3 {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 6px;
}

.card-header .label {
    font-size: .6em;
    margin: 10px 0 5px;
    text-decoration: line-through;
}

.badge {
    display: inline-block;
    padding: 5px 20px;
    font-size: .75em;
    font-weight: 800;
    border-radius: 6px;
    color: #fff;
}

.badge.light {
    background: linear-gradient(to bottom, #E3FF64, #BAED00);
    color: #333;
}

.badge.basic {
    background: linear-gradient(to bottom, #FF5E5E, #FF2A2A);
}

.badge.standard {
    background: linear-gradient(to bottom, #91FFB3, #00D97E);
}

.badge.pemium {
    background: linear-gradient(to bottom, #7C9EFF, #395CFF);
}

.price {
    font-size: 1.4em;
    font-weight: 700;
    color: #000;
}

.price span {
    font-size: .85em;
    font-weight: 400;
    color: #555;
}

.card-features {
    list-style: none;
    margin: 0;
    padding: 0;
    align-self: stretch;
}

.card-features li {
    display: flex;
    align-items: center;
    font-size: 1em;
    margin-bottom: 12px;
    color: #222;
}

.card-features li strong {
    font-weight: 700;
    margin: 0 3px;
}

.card-note {
    margin-left: 23px;
    font-size: 12px !important;
    color: #797979 !important;
    line-height: 1.2 !important;
}

@media (max-width:768px) {
    .price-card {
        width: 100%;
        max-width: 340px;
    }
}

/* Event CTA */
.event-section {
    text-align: center;
    padding: 60px 20px;
}

.event-banner h3 {
    font-size: 1.8em;
    font-weight: 900;
    color: #3a34ff;
    margin-bottom: 15px;
}

.event-banner p {
    background: #6ab4f5;
    color: #fff;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 12px;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
}

.event-banner small {
    display: block;
    font-size: .75em;
    color: #666;
    line-height: 1.5;
    margin-bottom: 30px;
}

.subscribe-btn {
    background: linear-gradient(to right, #7b9fff, #395cff);
    color: #fff;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.6em;
    display: inline-block;
}

/* =========================================================
   Process
   ========================================================= */
.process-section {
    background: linear-gradient(to bottom, #e6f6ff, #3549ff);
    padding: 100px 20px;
    text-align: center;
    color: #000;
}

.process-section .section-subtitle {
    color: #005ef5;
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}

.process-section .section-title {
    font-size: 2.8em;
    font-weight: 900;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    margin-bottom: 50px;
    background: transparent;
}

.process-section .process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 16px;
}

.process-section .process-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.process-section .process-card img {
    width: 80px;
    height: auto;
}

.process-section .process-card h4 {
    font-size: 1em;
    font-weight: 900;
    margin-bottom: 6px;
}

.process-section .process-card p {
    font-size: .85em;
    color: #333;
    line-height: 1.4;
}

@media (max-width:768px) {
    .process-section .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 12px;
        box-sizing: border-box;
    }

    .process-section .process-card {
        height: auto !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 24px 18px;
    }

    .process-section .process-card img {
        width: clamp(60px, 20vw, 90px);
        height: auto;
    }
}

/* =========================================================
   Content / Insta / Blog Sections (공통 래아웃 정리)
   ========================================================= */
.insta-section {
    padding: 100px 0 0;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.content-section,
.blog-section {
    padding: 100px 0;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.section_wrap {
    margin: auto;
    text-align: center;
    margin-bottom: 50px;
}

.insta-section {
    padding: 100px 20px;
}

.insta-section .section-label {
    text-align: center;
    font-size: 1.5em;
    font-weight: 600;
    color: #4c55ff;
    margin-bottom: 20px;
}

.insta-section .section-headline {
    font-size: 2.8em;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
}

.insta-section .section-sub {
    text-align: center;
    font-size: 1.5em;
    margin: 0 0 50px;
}

.section-title {
    text-align: center;
    font-size: 1.6em;
    font-weight: 700;
    background: #4c55ff;
    color: #fff;
    display: inline-block;
    padding: 10px 0;
    border-radius: 999px;
    margin: 0 auto 50px;
}

.insta-section .section-title {
    padding: 10px 80px;
}

.trans {
    background: transparent;
    color: #000;
}

.insta-row,
.content-row,
.blog-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    width: 100%;
    margin-bottom: 100px;
    align-items: center;
}

.reverse-row {
    flex-direction: row-reverse;
}

.text-col {
    flex: 1;
    margin-left: 50px;
}

.text-col h3 {
    color: #4c55ff;
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 10px;
}

.text-col p {
    color: #333;
    font-size: 1em;
    line-height: 1.4;
}

.slider-col {
    flex: 2;
    min-width: 300px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.insta-slider,
.content-slider {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}



.insta-slider img,
.content-slider img {
    width: calc((100% - 40px * 1.5) / 2.3);
    min-width: auto;
    flex-shrink: 0;
}


.slider-arrow.left {
    left: 0.5rem;
}

.slider-arrow.right {
    right: 0.5rem;
}



.pricing-section .desc {
    font-size: 2.5em;
}

.process-section .section-title {
    font-size: 2.5em;
    padding: 0;
}

.partner-right {
    order: 2;
    flex: 2 1 !important;
    width: 100%;
    margin-top: 12px;
}

.badge.premium {
    background: linear-gradient(to bottom, #7C9EFF, #395CFF);
    color: #fff;
    padding: 5px 20px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 6px;
    display: inline-block;
}

.price-card .active {
    display: block;
    background: #005ef5;
    padding: 10px 0;
    text-align: center;
    color: white;
    border-radius: 10px;
}

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

.content-section .section-title,
.blog-section .section-title {
    padding: 10px 80px !important;
}

@media (max-width:768px) {

    .insta-row,
    .content-row,
    .blog-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .process-section .section-title {
        padding: 0 !important;
    }

    .insta-slider {
        gap: 8px;
        padding: 0 12px;
    }

    .insta-slider img {
        max-width: 80vw;
        flex: 0 0 80vw;
    }
}

/* Content slider */
.content-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.content-item {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.content-slider-wrapper {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    position: relative;
}


.content-description-wrap {
    flex: 1;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-right: 50px;
}

.content-description h3 {
    color: #4c55ff;
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 10px;
}

.content-description strong {
    font-size: .95em;
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.content-description p {
    font-size: 1em;
    color: #333;
    line-height: 1.4;
}

.slider-arrow,
.content-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    background: rgba(0, 0, 0, .3);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 2;
}

.content-arrow.left {
    left: 10px;
}

.content-arrow.right {
    right: 10px;
}

@media (max-width:768px) {
    .content-item {
        flex-direction: column;
    }

    .content-slider {
        justify-content: center;
    }

    .content-slider img {
        flex: 0 0 80%;
        max-width: 80%;
    }

    .content-description-wrap {
        align-items: center;
        text-align: center;
        margin: 0;
    }
}

/* Blog */
.blog-grid {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    min-width: 280px;
    max-width: 48%;
}

.blog-grid img {
    width: 250px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

.text-col.right-align {
    text-align: right;
    margin-left: auto;
    margin-right: 50px;
}

.cta-button-wrap {
    text-align: center;
    margin-top: 60px;
}

.cta-button {
    background: #4c55ff;
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: .95em;
    display: inline-block;
    transition: background .3s;
}

.cta-button:hover {
    background: #3a42d9;
}

@media (max-width:768px) {
    .text-col {
        max-width: 100%;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .blog-grid img {
        height: auto;
    }

    .text-col {
        text-align: center;
        margin: 0 0 24px;
    }

    .text-col.right-align {
        text-align: center;
        margin: 0;
    }
}

/* =========================================================
   Partners
   ========================================================= */
.partner-section {
    background: #f5f5ff;
    padding: 100px 20px;
}

.partner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.partner-left {
    flex: 0.5 0 50px;

}

.partner-left h2 {
    font-size: 1.8em;
    font-weight: 700;
    color: #3b47ff;
    margin-bottom: 10px;
    text-align: left;
    background: transparent;
    padding: 0;
}

.partner-left p {
    font-size: 1em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.partner-right {
    position: relative;
    overflow: hidden;
}

.partner-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partner-slider {
    display: flex;
    animation: scroll-left 10s linear infinite;
}

.partner-slide {
    flex: 0 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.partner-slide img {
    width: 120px;
    height: auto;
    object-fit: contain;
    margin: 0 30px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width:768px) {
    .partner-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .partner-left {
        order: 1;
        flex: 1 1 0;
    }

    .partner-right {
        order: 2;
        flex: 2 1 !important;
        width: 100%;
        margin-top: 12px;
    }

    .partner-slide img {
        width: 80px;
    }

    .partner-section {
        padding: 50px 0 80px !important;
    }
}

.slick-slide img {
    width: 100%;
    height: auto;
    display: block;
}


.slick-track {
    display: flex !important;
}

.slick-slide {
    height: auto !important;
}

/* =========================================================
   Footer
   ========================================================= */
.footer-wrapper {
    background: #eaeaea;
    width: 100%;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
    font-size: .9em;
    color: #555;
    line-height: 1.5em;
}

/* =========================================================
   Logo Marquee (Top)
   ========================================================= */
:root {
    --logo-gap: 56px;
    --logo-size: 42px;
    --marquee-duration: 25s;
    --brand-extra-offset: 24px;
}

.logo-slider {
    overflow: hidden;
    background: #f8f9ff;
    padding: 36px 0 24px;
    margin-top: 0;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: var(--logo-gap);
    animation: logo-marquee var(--marquee-duration) linear infinite;
    will-change: transform;
}

.logo-track img {
        width: 80px;
    object-fit: contain;
    display: block;
    filter: none;
    opacity: 1;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

@keyframes logo-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width:768px) {
    :root {
        --logo-gap: 28px;
        --logo-size: 34px;
        --brand-extra-offset: 36px;
    }

    .logo-slider {
        padding: 24px 0 16px;
    }
}

@media (max-width:480px) {
    :root {
        --brand-extra-offset: 48px;
    }
}

/* =========================================================
   Profiles
   ========================================================= */
.profile-section {
    text-align: center;
    padding: 24px 16px 0;
}

.profile-section>h2 {
    font-size: 1.25em;
    font-weight: 800;
    color: #111;
    margin: 12px 0 22px;
}

.profile-section .profile-images {
    width: min(1100px, 94vw);
    margin: 0 auto 24px;
    padding-left: 0 !important;
    list-style: none !important;
    display: block !important;
}

.profile-section .profile-images img {
    width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.profile-section .profile-images:first-of-type {
    max-width: 740px;
    margin-bottom: 28px;
}

.profile-section .profile-images+.profile-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 1100px;
}

@media (max-width:768px) {
    .profile-section {
        padding: 16px 12px 0;
    }

    .profile-section .profile-images+.profile-images {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 600px;
    }

    .profile-section .profile-images:first-of-type {
        max-width: 100%;
        margin-bottom: 18px;
    }
}

@media (max-width:480px) {
    .profile-section .profile-images img {
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
    }
}

/* =========================================================
   Forms: Subscribe & Consulting (공통 룩)
   ========================================================= */
.subscription-form,
.consulting-section {
    max-width: 500px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.formWrap,
.login-wrapper,
.auth-section {
    background: #f4f6ff !important;
    padding: 150px 5% 100px;
}

.subscription-form h2,
.consulting-section h2 {
    font-size: 1.6em;
    margin-bottom: 30px;
    text-align: center;
    color: var(--brand);
}

.subscription-form label,
.consulting-section label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.subscription-form input,
.subscription-form select,
.subscription-form textarea,
.consulting-section input,
.consulting-section select,
.consulting-section textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.subscription-form textarea,
.consulting-section textarea {
    resize: vertical;
    height: 120px;
    font-size: 13px;
    line-height: 1.5;
}

.checkbox-row,
.checkbox-inline {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
}

.checkbox-row input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--brand);
}

.subscription-form button,
.consulting-section button {
    width: 100%;
    background: var(--brand);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease;
}

.subscription-form button:hover,
.consulting-section button:hover {
    background: var(--brand-600);
}

.terms-content-scroll,
.subscription-form textarea[readonly],
.consulting-form textarea[readonly] {
    max-height: 120px;
    overflow-y: auto;
    background: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    line-height: 1.5;
    font-size: .9em;
}

@media (max-width:480px) {
    .subscription-form {
        padding: 24px 18px;
        border-radius: 12px;
    }

    .consulting-section {
        padding: 24px 18px;
        border-radius: 12px;
    }

    .subscription-form input,
    .subscription-form select,
    .subscription-form textarea {
        font-size: 16px;
        padding: 14px;
    }
}

/* =========================================================
   Cafe24 Auth (로그인/회원가입/찾기) 통합 스타일
   - ePlaceholder 충돌 제거
   - 모듈 출력 구조 유지 + 우리 룩으로 통일
   ========================================================= */

/* 기본 경로/타이틀 블록 숨김 (있으면) */


.section.path,
.section.titleArea {
    display: none !important;
}

/* 공통 카드 레이아웃 */
.auth-section {
    background: var(--bg-sub);
    padding: 80px 16px;
    min-height: 100vh;
}

.auth-card,
.auth-container {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.auth-card.wide {
    max-width: 720px;
}

.form-title,
.auth-title {
    text-align: center;
    font-size: 1.5em;
    font-weight: 800;
    color: var(--brand);
    margin: 0 0 20px;
}

@media (max-width:480px) {

    .auth-card,
    .auth-container {
        padding: 32px 24px;
    }

    .form-title,
    .auth-title {
        font-size: 1.3em;
    }
}

.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 150px 20px 100px;
    background-color: #f8f9ff;
}

.login-section small {
    margin-top: 10px;
    display: block;
    color: #797979;
    font-size: 0.8rem;
}

.login-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.auth-title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #2d3fef;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #222;
}

.input-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

.auth-button {
    display: block;
    width: 100%;
    padding: 14px;
    border: none;
    background: #2d3fef;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.auth-button:hover {
    background: #1b2fcc;
}

.login__util {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    color: #444;
}

.login__util a {
    color: #2d3fef;
    text-decoration: underline;
    margin-left: 4px;
}



/* =========================================================
   Mobile Global Tweaks
   ========================================================= */
@media (max-width:768px) {
    body {
        font-size: 14px;
        line-height: 1.4;
    }

    .section-title {
        font-size: 1.4em;
    }

    .nav-inner {
        justify-content: space-between;
    }

    .brand-row,
    .logo-slider {
        padding-top: calc(var(--nav-h) + var(--brand-extra-offset)) !important;
        margin-top: 0 !important;
    }

    .pricing-section {
        padding: 80px 0px;
    }
}

@media (max-width:480px) {

    nav,
    .nav {
        padding: 8px 16px;
    }

    .logo img {
        width: 120px;
    }
}

/* =========================================================
   Keyframes
   ========================================================= */
@keyframes bubbleFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Pretendard 경로 404 해결 (CDN 사용) */
@font-face {
    font-family: 'Pretendard';
    src:
        url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/woff2/Pretendard-Regular.woff2') format('woff2'),
        url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/woff/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


:root {
    --nav-h: 64px;
    /* 앵커( #id )로 이동할 때 스티키 헤더만큼 상단 여백 확보 */
    scroll-padding-top: var(--nav-h);
}

@media (min-width:1024px) {
    :root {
        --nav-h: 72px;
    }
}

/* 헤더 스티키 */
.nav {
    position: -webkit-sticky;
    /* iOS */
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 2000;

    background: transparent;
    transition: background .25s, box-shadow .25s;
}


/* --- Mobile nav fix: dropdown를 화면 위로 고정 --- */
.nav {
    position: fixed;
    z-index: 2000;
}

.hamburger {
    position: relative;
    z-index: 2002;
}

/* 기본 숨김 */
#gnb {
    position: fixed;
    /* nav 내부 절대 → 화면 기준 고정 */
    top: var(--nav-h);
    /* 헤더 바로 아래 */
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 14px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
    z-index: 2001;
    /* 버튼보다 아래, 페이지보다 위 */
}

/* 열림 상태 (기존 .open / .active 둘 다 대응) */
#gnb.open,
#gnb.active {
    display: flex !important;
}

/* 데스크톱은 항상 노출 + 레이아웃 안으로 */
@media (min-width:1025px) {
    #gnb {
        position: static;
        display: flex !important;
        background: transparent;
        box-shadow: none;
        padding: 0;
        flex-direction: row;
    }
}

/* 결제 완료 */
.payment-box {
    max-width: 480px;
    margin: 80px auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.payment-box h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.payment-box p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.btn-back {
    background: #4a56ff;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
}