/* =====================================================
   와와학습코칭센터
   MAIN PAGE
===================================================== */


/* =========================
   기본 설정
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        "SUIT",
        "Noto Sans KR",
        Arial,
        sans-serif;

    color: #222222;
    background: #ffffff;

    word-break: keep-all;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

:root {
    --orange: #FF7A00;
    --orange-dark: #E96B00;
    --orange-soft: #FFF0DF;
    --cream: #FFF8F1;
    --cream-deep: #FFF2E5;
    --black: #1D1D1D;
    --dark: #1F1F1F;
    --gray: #727272;
    --line: #ECECEC;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: relative;
    z-index: 100;

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;
}

.header-inner {
    width: 100%;
    max-width: 1380px;

    min-height: 96px;

    margin: 0 auto;
    padding: 18px 32px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 30px;
}


/* 로고 */

.logo {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

    text-decoration: none;

    white-space: nowrap;
}

.logo-mark {
    display: block;

    width: 72px;
    height: auto;

    max-height: 38px;

    object-fit: contain;
}

.logo-text {
    display: block;

    color: var(--orange);

    font-size: 27px;
    font-weight: 850;

    line-height: 1;

    letter-spacing: -0.8px;
}


/* 메뉴 */

.nav {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: 25px;

    flex-wrap: nowrap;
}

.nav a {
    position: relative;

    color: #222222;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition:
        color 0.2s,
        transform 0.2s;
}

.nav a:hover {
    color: var(--orange);

    transform: translateY(-1px);
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 760px;

    overflow: hidden;

    color: #ffffff;

    background:
        linear-gradient(
            90deg,
            rgba(16, 16, 16, 0.80) 0%,
            rgba(16, 16, 16, 0.63) 44%,
            rgba(16, 16, 16, 0.28) 72%,
            rgba(16, 16, 16, 0.22) 100%
        ),
        url("images/main1.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";

    position: absolute;

    inset: auto 0 0 0;

    height: 190px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(0, 0, 0, 0.30)
        );

    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1380px;

    min-height: 760px;

    margin: 0 auto;
    padding: 105px 32px 85px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 70px;
}


/* 왼쪽 */

.hero-copy {
    width: 100%;
    max-width: 680px;
}

.hero-eyebrow {
    margin: 0 0 22px;

    color: #FFB46B;

    font-size: 13px;
    font-weight: 850;

    letter-spacing: 2.6px;
}

.hero-small {
    margin: 0 0 16px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 20px;
    font-weight: 700;
}

.hero h1 {
    margin: 0;

    font-size: clamp(52px, 6vw, 82px);
    font-weight: 900;

    line-height: 1.06;

    letter-spacing: -4px;
}

.hero-brand {
    margin: 19px 0 0;

    color: var(--orange);

    font-size: 27px;
    font-weight: 900;
}

.hero-description {
    margin: 27px 0 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 18px;

    line-height: 1.75;
}


/* 버튼 */

.hero-buttons {
    margin-top: 39px;

    display: flex;

    gap: 11px;
}

.button {
    min-width: 168px;

    padding: 16px 26px;

    border-radius: 12px;

    text-align: center;

    font-size: 15px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform 0.2s,
        background 0.2s,
        border-color 0.2s;
}

.button:hover {
    transform: translateY(-2px);
}

.button-white {
    color: #222222;

    background: #ffffff;

    border: 2px solid #ffffff;
}

.button-white:hover {
    background: #FFF3E7;
}

.button-orange {
    color: #ffffff;

    background: var(--orange);

    border: 2px solid var(--orange);
}

.button-orange:hover {
    background: var(--orange-dark);

    border-color: var(--orange-dark);
}


/* 오른쪽 플로우 */

.hero-flow {
    width: 360px;

    padding: 30px;

    flex-shrink: 0;

    border:
        1px solid
        rgba(255, 255, 255, 0.22);

    border-radius: 24px;

    background:
        rgba(20, 20, 20, 0.34);

    backdrop-filter:
        blur(14px);

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.20);
}

.flow-label {
    margin: 0 0 26px;

    color: #FFB36A;

    font-size: 12px;
    font-weight: 850;

    letter-spacing: 2px;
}

.flow-line {
    display: grid;

    gap: 0;
}

.flow-item {
    position: relative;

    padding:
        4px 0
        24px 52px;
}

.flow-item:last-child {
    padding-bottom: 0;
}

.flow-item::before {
    content: "";

    position: absolute;

    left: 17px;
    top: 32px;

    width: 1px;
    height: calc(100% - 14px);

    background:
        rgba(255, 255, 255, 0.23);
}

.flow-item:last-child::before {
    display: none;
}

.flow-item > span {
    position: absolute;

    left: 0;
    top: 0;

    width: 35px;
    height: 35px;

    display: flex;

    justify-content: center;
    align-items: center;

    color: #ffffff;

    background: var(--orange);

    border-radius: 50%;

    font-size: 11px;
    font-weight: 850;
}

.flow-item strong {
    display: block;

    margin-bottom: 5px;

    font-size: 17px;
    font-weight: 850;
}

.flow-item p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.70);

    font-size: 13px;

    line-height: 1.6;
}


/* 스크롤 */

.scroll-down {
    position: absolute;

    left: 32px;
    bottom: 30px;

    display: flex;

    align-items: center;

    gap: 12px;

    color:
        rgba(255, 255, 255, 0.63);

    font-size: 10px;
    font-weight: 750;

    letter-spacing: 2px;

    text-decoration: none;
}

.scroll-down i {
    width: 44px;
    height: 1px;

    background:
        rgba(255, 255, 255, 0.5);
}


/* =====================================================
   공통 SECTION
===================================================== */

.section-inner {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}

.section-heading {
    max-width: 760px;
}

.section-heading > p,
.section-label {
    margin: 0 0 15px;

    color: var(--orange);

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2.4px;
}

.section-heading h2 {
    margin: 0;

    color: var(--black);

    font-size: clamp(38px, 4.6vw, 58px);
    font-weight: 900;

    line-height: 1.23;

    letter-spacing: -2.3px;
}

.section-heading > span {
    display: block;

    max-width: 650px;

    margin-top: 24px;

    color: #747474;

    font-size: 17px;

    line-height: 1.8;
}


/* =====================================================
   BRAND SECTION
===================================================== */

.brand-section {
    padding: 135px 24px;

    background: #ffffff;
}

.brand-grid {
    margin-top: 68px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.brand-card {
    min-height: 335px;

    padding: 36px;

    border:
        1px solid #eeeeee;

    border-radius: 23px;

    background: #ffffff;

    transition:
        transform 0.25s,
        box-shadow 0.25s,
        border-color 0.25s;
}

.brand-card:hover {
    transform: translateY(-6px);

    border-color: #FFD1A7;

    box-shadow:
        0 22px 50px
        rgba(0, 0, 0, 0.06);
}

.brand-card.featured {
    color: #ffffff;

    border-color: var(--orange);

    background: var(--orange);
}

.brand-number {
    margin-bottom: 75px;

    color: var(--orange);

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 1.4px;
}

.featured .brand-number {
    color:
        rgba(255, 255, 255, 0.72);
}

.brand-card h3 {
    margin: 0 0 15px;

    font-size: 27px;
    font-weight: 900;

    letter-spacing: -0.8px;
}

.brand-card p {
    margin: 0;

    color: #757575;

    font-size: 15px;

    line-height: 1.8;
}

.featured p {
    color:
        rgba(255, 255, 255, 0.82);
}

.brand-link-wrap {
    margin-top: 38px;
}

.brand-link-wrap a {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #222222;

    font-size: 15px;
    font-weight: 800;

    text-decoration: none;
}

.brand-link-wrap a span {
    color: var(--orange);

    font-size: 19px;
}


/* =====================================================
   MESSAGE
===================================================== */

.message-section {
    position: relative;

    min-height: 600px;

    padding: 140px 24px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image:
        linear-gradient(
            90deg,
            rgba(255, 248, 241, 0.96) 0%,
            rgba(255, 248, 241, 0.88) 38%,
            rgba(255, 248, 241, 0.58) 65%,
            rgba(255, 248, 241, 0.25) 100%
        ),
        url("images/main2.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.message-inner {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}


.message-inner > p {
    margin: 0 0 24px;

    color: #FF7A00;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2.4px;
}


.message-inner h2 {
    max-width: 1030px;

    margin: 0;

    color: #222222;

    font-size: clamp(45px, 6vw, 76px);
    font-weight: 900;

    line-height: 1.22;

    letter-spacing: -3.5px;
}


.message-inner h2 span {
    color: #FF7A00;
}


/* =====================================================
   SYSTEM DARK
===================================================== */

.system-section {
    padding: 135px 24px;

    color: #ffffff;

    background: #1D1D1D;
}

.system-heading {
    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    align-items: end;

    gap: 90px;
}

.system-heading > div > p {
    margin: 0 0 16px;

    color: #FF9838;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 2.2px;
}

.system-heading h2 {
    margin: 0;

    font-size: clamp(38px, 4.7vw, 58px);
    font-weight: 900;

    line-height: 1.22;

    letter-spacing: -2.3px;
}

.system-heading > span {
    color:
        rgba(255, 255, 255, 0.63);

    font-size: 16px;

    line-height: 1.8;
}

.system-grid {
    margin-top: 70px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;
}

.system-card {
    min-height: 355px;

    padding: 30px;

    border:
        1px solid
        rgba(255, 255, 255, 0.11);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.035);

    transition:
        background 0.25s,
        transform 0.25s,
        border-color 0.25s;
}

.system-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(255, 122, 0, 0.55);

    background:
        rgba(255, 122, 0, 0.08);
}

.system-step {
    display: block;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.system-icon {
    width: 54px;
    height: 54px;

    margin: 57px 0 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    border:
        1px solid
        rgba(255, 122, 0, 0.8);

    border-radius: 16px;

    font-size: 16px;
    font-weight: 900;
}

.system-card h3 {
    margin: 0 0 14px;

    font-size: 24px;
    font-weight: 900;
}

.system-card p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 14px;

    line-height: 1.75;
}


/* =====================================================
   SUBJECT
===================================================== */

.subject-section {
    padding: 135px 24px;

    background: #ffffff;
}

.subject-layout {
    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 90px;

    align-items: center;
}

.subject-copy h2 {
    margin: 0;

    font-size: clamp(38px, 4.8vw, 58px);
    font-weight: 900;

    line-height: 1.22;

    letter-spacing: -2.2px;
}

.subject-description {
    max-width: 500px;

    margin: 26px 0 0;

    color: #707070;

    font-size: 16px;

    line-height: 1.8;
}

.subject-note {
    display: block;

    margin-top: 21px;

    color: #999999;

    font-size: 12px;
}

.subject-list {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 13px;
}

.subject-item {
    min-height: 130px;

    padding: 27px;

    display: flex;

    align-items: center;

    gap: 20px;

    border:
        1px solid #eeeeee;

    border-radius: 19px;

    background: #ffffff;

    transition:
        transform 0.2s,
        border-color 0.2s,
        background 0.2s;
}

.subject-item:last-child {
    grid-column: 1 / -1;
}

.subject-item:hover {
    transform: translateY(-4px);

    border-color: #FFB36D;

    background: #FFF9F3;
}

.subject-item span {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--orange);

    background: var(--orange-soft);

    border-radius: 15px;

    font-size: 18px;
    font-weight: 900;
}

.subject-item strong {
    font-size: 21px;
    font-weight: 900;
}


/* =====================================================
   EXPLORE
===================================================== */

.explore-section {
    padding: 135px 24px;

    background: var(--cream);
}

.explore-heading {
    margin-bottom: 60px;
}

.explore-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 16px;
}

.explore-card {
    min-height: 390px;

    padding: 34px;

    display: flex;

    flex-direction: column;
    justify-content: space-between;

    border:
        1px solid
        rgba(0, 0, 0, 0.06);

    border-radius: 23px;

    background: #ffffff;

    text-decoration: none;

    transition:
        transform 0.25s,
        box-shadow 0.25s;
}

.explore-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 55px
        rgba(65, 44, 25, 0.08);
}

.explore-number {
    color: var(--orange);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1.4px;
}

.explore-card div > p {
    margin: 0 0 9px;

    color: var(--orange);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1.8px;
}

.explore-card h3 {
    margin: 0 0 14px;

    font-size: 29px;
    font-weight: 900;

    letter-spacing: -1px;
}

.explore-card div > span {
    display: block;

    color: #777777;

    font-size: 14px;

    line-height: 1.75;
}

.explore-card > strong {
    color: var(--orange);

    font-size: 25px;
}


/* =====================================================
   CENTER PREVIEW
===================================================== */

.center-preview {
    padding: 120px 24px;

    background: #ffffff;
}

.center-preview-inner {
    width: 100%;
    max-width: 1180px;

    min-height: 570px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    overflow: hidden;

    border-radius: 30px;

    background: var(--orange);
}

.center-preview-copy {
    padding: 68px 30px 68px 65px;

    color: #ffffff;

    display: flex;

    flex-direction: column;
    justify-content: center;
}

.center-preview-copy > p {
    margin: 0 0 18px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;
}

.center-preview-copy h2 {
    margin: 0;

    font-size: clamp(40px, 4.6vw, 57px);
    font-weight: 900;

    line-height: 1.2;

    letter-spacing: -2.3px;
}

.center-preview-copy > span {
    max-width: 400px;

    margin-top: 25px;

    color:
        rgba(255, 255, 255, 0.79);

    font-size: 16px;

    line-height: 1.75;
}

.center-preview-copy > a {
    width: fit-content;

    margin-top: 35px;
    padding: 15px 21px;

    display: flex;

    align-items: center;

    gap: 18px;

    color: #222222;

    background: #ffffff;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 850;

    text-decoration: none;
}


/* 오른쪽 */

.center-preview-visual {
    position: relative;

    overflow: hidden;

    background: #FFF1E2;
}

.map-circle {
    position: absolute;

    border:
        1px solid
        rgba(255, 122, 0, 0.17);

    border-radius: 50%;
}

.circle-one {
    width: 520px;
    height: 520px;

    right: -90px;
    top: -110px;
}

.circle-two {
    width: 370px;
    height: 370px;

    left: -70px;
    bottom: -130px;
}

.center-pin {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 7px;

    color: #222222;

    font-size: 11px;
    font-weight: 900;
}

.center-pin i {
    width: 18px;
    height: 18px;

    display: block;

    background: var(--orange);

    border:
        4px solid #ffffff;

    border-radius: 50%;

    box-shadow:
        0 5px 16px
        rgba(255, 122, 0, 0.3);
}

.pin-one {
    right: 15%;
    top: 18%;
}

.pin-two {
    left: 15%;
    top: 28%;
}

.pin-three {
    right: 30%;
    bottom: 19%;
}

.center-search-card {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 340px;

    padding: 31px;

    transform:
        translate(-50%, -50%);

    border-radius: 21px;

    background: #ffffff;

    box-shadow:
        0 25px 65px
        rgba(96, 57, 22, 0.14);
}

.center-search-card > span {
    display: block;

    margin-bottom: 11px;

    color: var(--orange);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.7px;
}

.center-search-card > strong {
    display: block;

    color: #222222;

    font-size: 25px;
    font-weight: 900;

    line-height: 1.35;

    letter-spacing: -0.8px;
}

.fake-search {
    margin-top: 25px;
    padding: 15px 17px;

    color: #9A9A9A;

    background: #F7F7F7;

    border-radius: 11px;

    font-size: 13px;
}


/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {
    padding: 125px 24px;

    background:
        linear-gradient(
            135deg,
            #FF8615,
            #EF6900
        );
}

.final-cta-inner {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    text-align: center;

    color: #ffffff;
}

.final-cta-inner > p {
    margin: 0 0 17px;

    color:
        rgba(255, 255, 255, 0.76);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2.2px;
}

.final-cta h2 {
    margin: 0;

    font-size: clamp(40px, 5vw, 62px);
    font-weight: 900;

    line-height: 1.24;

    letter-spacing: -2.6px;
}

.final-cta-inner > span {
    display: block;

    max-width: 600px;

    margin: 23px auto 0;

    color:
        rgba(255, 255, 255, 0.82);

    font-size: 16px;

    line-height: 1.75;
}

.final-buttons {
    margin-top: 38px;

    display: flex;

    justify-content: center;

    gap: 10px;
}

.final-buttons a {
    min-width: 165px;

    padding: 16px 25px;

    border-radius: 12px;

    font-size: 15px;
    font-weight: 850;

    text-decoration: none;

    transition: transform 0.2s;
}

.final-buttons a:hover {
    transform: translateY(-2px);
}

.final-white {
    color: var(--orange);

    background: #ffffff;
}

.final-dark {
    color: #ffffff;

    background: #222222;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    padding: 70px 24px;

    color:
        rgba(255, 255, 255, 0.65);

    background: #181818;
}

.footer-inner {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;
}

.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-size: 21px;
    font-weight: 850;

    text-decoration: none;
}

.footer-logo img {
    width: 58px;

    filter:
        brightness(0)
        invert(1);
}

.footer-inner > p {
    margin: 20px 0 0;

    font-size: 13px;
}

.footer-links {
    margin-top: 35px;

    display: flex;

    gap: 23px;

    flex-wrap: wrap;
}

.footer-links a {
    color:
        rgba(255, 255, 255, 0.62);

    font-size: 13px;
    font-weight: 650;

    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1150px) {

    .header-inner {
        padding: 16px 22px;

        gap: 20px;
    }

    .logo-mark {
        width: 62px;

        max-height: 34px;
    }

    .logo-text {
        font-size: 23px;
    }

    .nav {
        gap: 16px;
    }

    .nav a {
        font-size: 14px;
    }


    .hero-inner {
        padding-left: 28px;
        padding-right: 28px;
    }

    .hero-flow {
        width: 330px;
    }


    .section-inner {
        max-width: 1000px;
    }

}


/* =====================================================
   MID
===================================================== */

@media (max-width: 960px) {

    .header-inner {
        flex-direction: column;

        justify-content: center;

        gap: 18px;
    }

    .nav {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;
    }


    .hero-inner {
        padding-top: 85px;
        padding-bottom: 95px;

        flex-direction: column;

        align-items: flex-start;
    }

    .hero-flow {
        width: 100%;
        max-width: 620px;
    }

    .flow-line {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 22px;
    }

    .flow-item::before {
        display: none;
    }


    .brand-grid {
        grid-template-columns: 1fr;
    }

    .brand-card {
        min-height: auto;
    }

    .brand-number {
        margin-bottom: 40px;
    }


    .system-heading {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .system-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .subject-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .explore-grid {
        grid-template-columns: 1fr;
    }

    .explore-card {
        min-height: 280px;
    }


    .center-preview-inner {
        grid-template-columns: 1fr;
    }

    .center-preview-copy {
        padding: 65px 45px;
    }

    .center-preview-visual {
        min-height: 470px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .header-inner {
        min-height: auto;

        padding: 17px 15px;

        flex-direction: column;

        gap: 17px;
    }

    .logo {
        justify-content: center;

        gap: 10px;
    }

    .logo-mark {
        width: 58px;

        max-height: 30px;
    }

    .logo-text {
        font-size: 22px;
    }

    .nav {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 13px 16px;
    }

    .nav a {
        font-size: 14px;
    }


    /* HERO */

    .hero {
        background-position:
            62% center;
    }

    .hero-inner {
        min-height: auto;

        padding:
            85px 20px
            95px;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-eyebrow {
        font-size: 11px;
    }

    .hero-small {
        font-size: 17px;
    }

    .hero h1 {
        font-size: 49px;

        letter-spacing: -2.5px;
    }

    .hero-brand {
        font-size: 22px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .button {
        width: 100%;

        max-width: 300px;
    }

    .hero-flow {
        padding: 25px;
    }

    .flow-line {
        grid-template-columns: 1fr;
    }

    .scroll-down {
        display: none;
    }


    /* 일반 */

    .brand-section,
    .system-section,
    .subject-section,
    .explore-section {
        padding:
            90px 20px;
    }

    .section-heading h2,
    .subject-copy h2,
    .system-heading h2 {
        font-size: 37px;

        letter-spacing: -1.5px;
    }

    .section-heading > span,
    .subject-description {
        font-size: 15px;
    }


    /* MESSAGE */

    .message-section {
        padding:
            95px 20px;
    }

    .message-inner h2 {
        font-size: 42px;

        letter-spacing: -2px;
    }


    /* SYSTEM */

    .system-grid {
        grid-template-columns: 1fr;
    }

    .system-card {
        min-height: auto;
    }

    .system-icon {
        margin-top: 42px;
    }


    /* SUBJECT */

    .subject-list {
        grid-template-columns: 1fr;
    }

    .subject-item:last-child {
        grid-column: auto;
    }


    /* CENTER */

    .center-preview {
        padding:
            80px 18px;
    }

    .center-preview-inner {
        border-radius: 23px;
    }

    .center-preview-copy {
        padding:
            55px 27px;
    }

    .center-preview-copy h2 {
        font-size: 39px;

        letter-spacing: -1.7px;
    }

    .center-preview-visual {
        min-height: 410px;
    }

    .center-search-card {
        width:
            calc(100% - 50px);

        padding: 26px;
    }


    /* FINAL */

    .final-cta {
        padding:
            90px 20px;
    }

    .final-cta h2 {
        font-size: 39px;

        letter-spacing: -1.8px;
    }

    .final-buttons {
        flex-direction: column;

        align-items: center;
    }

    .final-buttons a {
        width: 100%;

        max-width: 300px;
    }


    /* FOOTER */

    .footer {
        padding:
            60px 20px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 430px) {

    .logo-mark {
        width: 52px;
    }

    .logo-text {
        font-size: 20px;
    }

    .nav {
        gap: 11px 13px;
    }

    .nav a {
        font-size: 13px;
    }


    .hero h1 {
        font-size: 42px;
    }

    .hero-brand {
        font-size: 20px;
    }


    .section-heading h2,
    .subject-copy h2,
    .system-heading h2 {
        font-size: 33px;
    }

    .message-inner h2 {
        font-size: 36px;
    }

    .brand-card {
        padding: 29px;
    }

    .explore-card {
        padding: 29px;

        min-height: 260px;
    }

    .center-preview-copy h2 {
        font-size: 34px;
    }

    .final-cta h2 {
        font-size: 34px;
    }

}

/* =====================================================
   EXPLORE WAWA
===================================================== */

.explore-section {
    padding: 120px 24px 140px;
    background: #f7f2eb;
}

.explore-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* 윗부분: 왼쪽 글 + 오른쪽 이미지 */
.explore-top {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

.explore-text {
    max-width: 560px;
}

.explore-label {
    margin: 0 0 18px;
    color: #ff7a00;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2.4px;
}

.explore-text h2 {
    margin: 0;
    color: #1f1f1f;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: -2.6px;
}

.explore-description {
    margin: 28px 0 0;
    color: #6d6d6d;
    font-size: 18px;
    line-height: 1.8;
}

/* 오른쪽 선생님 이미지 */
.explore-image-wrap {
    position: relative;
    min-height: 520px;
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05)),
        linear-gradient(135deg, #f9f4ee 0%, #efe5d8 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.explore-image-wrap::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 122, 0, 0.08);
    z-index: 1;
}

.explore-image-wrap::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 122, 0, 0.06);
    z-index: 1;
}

.explore-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    z-index: 2;
}

/* 아래 카드 3개 */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.explore-card {
    position: relative;
    display: block;
    min-height: 310px;
    padding: 34px 34px 36px;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #ece3d8;
    border-radius: 28px;
    transition:
        transform 0.25s,
        box-shadow 0.25s,
        border-color 0.25s;
}

.explore-card:hover {
    transform: translateY(-6px);
    border-color: #ffb36e;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.explore-number {
    display: inline-block;
    margin-bottom: 44px;
    color: #ff7a00;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.explore-card-label {
    margin: 0 0 10px;
    color: #ff7a00;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.explore-card h3 {
    margin: 0 0 16px;
    color: #1f1f1f;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -1px;
}

.explore-card p {
    margin: 0;
    color: #6f6f6f;
    font-size: 16px;
    line-height: 1.75;
}

.explore-arrow {
    position: absolute;
    left: 34px;
    bottom: 28px;
    color: #ff7a00;
    font-size: 30px;
    font-weight: 700;
}

/* 반응형 */
@media (max-width: 1024px) {
    .explore-top {
        grid-template-columns: 1fr;
    }

    .explore-text {
        max-width: 100%;
    }

    .explore-image-wrap {
        min-height: 460px;
    }

    .explore-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .explore-section {
        padding: 90px 18px 100px;
    }

    .explore-top {
        gap: 28px;
        margin-bottom: 40px;
    }

    .explore-text h2 {
        font-size: 42px;
        line-height: 1.2;
        letter-spacing: -1.8px;
    }

    .explore-description {
        font-size: 16px;
        line-height: 1.7;
    }

    .explore-image-wrap {
        min-height: 360px;
        border-radius: 24px;
    }

    .explore-card {
        min-height: 260px;
        padding: 28px 24px 32px;
        border-radius: 22px;
    }

    .explore-number {
        margin-bottom: 28px;
        font-size: 18px;
    }

    .explore-card h3 {
        font-size: 26px;
    }

    .explore-card p {
        font-size: 15px;
    }

    .explore-arrow {
        left: 24px;
        bottom: 22px;
        font-size: 26px;
    }
}

/* =====================================================
   MOBILE PHOTO FIX - MAIN
===================================================== */

@media (max-width: 768px) {

    /* 첫 메인 HERO - main1.png */
    .hero {
        min-height: 720px;

        padding:
            320px 20px
            80px;

        align-items: flex-start;

        background-color: #222222;

        background-size:
            100% auto;

        background-position:
            top center;

        background-repeat:
            no-repeat;
    }


    /* 좋은 공부는... - main2.png */
    .message-section {
        min-height: 650px;

        padding:
            320px 20px
            85px;

        align-items: flex-start;

        background-image:
            linear-gradient(
                180deg,
                rgba(255, 248, 241, 0.02) 0%,
                rgba(255, 248, 241, 0.12) 42%,
                rgba(255, 248, 241, 0.94) 68%,
                #FFF8F1 100%
            ),
            url("images/main2.png");

        background-size:
            100% auto;

        background-position:
            top center;

        background-repeat:
            no-repeat;
    }

}