/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --red: #A23228;
    --red-dark: #882720;
    --red-light: #C04A3F;
    --red-pale: rgba(162, 50, 40, 0.05);
    --red-08: rgba(162, 50, 40, 0.08);
    --red-12: rgba(162, 50, 40, 0.12);
    --red-18: rgba(162, 50, 40, 0.18);
    /* varied red tones */
    --terra: rgba(185, 82, 50, 0.12);
    --terra-06: rgba(185, 82, 50, 0.06);
    --sienna: rgba(145, 56, 40, 0.10);
    --sienna-06: rgba(145, 56, 40, 0.06);
    --rosewood: rgba(120, 38, 42, 0.10);
    --rosewood-14: rgba(120, 38, 42, 0.14);
    --rust: rgba(180, 65, 38, 0.10);
    --rust-06: rgba(180, 65, 38, 0.06);
    --coral: rgba(195, 90, 70, 0.09);
    --coral-05: rgba(195, 90, 70, 0.05);
    --cream: #F4EFE9;
    --cream-dark: #E6DED6;
    --white: #FAF8F6;
    --text: #1C1917;
    --text-sub: #58504A;
    --text-muted: #988E86;
    --border: #D6CEC5;

    --font-en: 'Outfit', -apple-system, sans-serif;
    --font-kr: 'Noto Sans KR', -apple-system, sans-serif;
    --font-mono: 'DM Mono', 'Menlo', monospace;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-kr);
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 36px;
    position: relative;
    z-index: 1;
}

::selection { background: var(--red); color: var(--cream); }

/* ===== Geometric Patterns ===== */
.geo {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

/* cross helper */
.geo-hero-cross, .geo-svc-cross, .geo-comm-cross { width: 20px; height: 20px; }
.geo-hero-cross::before, .geo-hero-cross::after,
.geo-svc-cross::before, .geo-svc-cross::after,
.geo-comm-cross::before, .geo-comm-cross::after {
    content: '';
    position: absolute;
}
.geo-hero-cross::before, .geo-svc-cross::before, .geo-comm-cross::before {
    top: 50%; left: 0; width: 100%; height: 1px;
}
.geo-hero-cross::after, .geo-svc-cross::after, .geo-comm-cross::after {
    top: 0; left: 50%; width: 1px; height: 100%;
}

/* ---- Hero ---- */
.geo-hero-ring {
    top: 60px; right: -100px;
    width: 440px; height: 440px;
    border: 1px solid var(--terra);
    border-radius: 50%;
}
.geo-hero-ring2 {
    top: 140px; right: -20px;
    width: 240px; height: 240px;
    border: 1px solid var(--sienna-06);
    border-radius: 50%;
}
.geo-hero-ring3 {
    bottom: 40px; left: -60px;
    width: 180px; height: 180px;
    border: 1px solid var(--rosewood);
    border-radius: 50%;
}
.geo-hero-line {
    top: 180px; right: 200px;
    width: 180px; height: 1px;
    background: var(--terra);
    transform: rotate(-45deg);
    transform-origin: right center;
}
.geo-hero-line2 {
    bottom: 160px; right: 300px;
    width: 120px; height: 1px;
    background: var(--sienna);
    transform: rotate(30deg);
}
.geo-hero-line3 {
    top: 120px; left: 10%;
    width: 80px; height: 1px;
    background: var(--rust-06);
    transform: rotate(-20deg);
}
.geo-hero-dots {
    bottom: 80px; left: 36px;
    width: 120px; height: 80px;
    background-image: radial-gradient(var(--sienna) 1.2px, transparent 1.2px);
    background-size: 14px 14px;
}
.geo-hero-dots2 {
    top: 100px; right: 30%;
    width: 60px; height: 60px;
    background-image: radial-gradient(var(--rust) 1px, transparent 1px);
    background-size: 12px 12px;
}
.geo-hero-cross {
    top: 50%; right: 160px;
}
.geo-hero-cross::before, .geo-hero-cross::after { background: var(--rosewood-14); }
.geo-hero-arc {
    top: 30%; right: 8%;
    width: 100px; height: 100px;
    border: 1px solid var(--coral);
    border-radius: 50%;
    clip-path: inset(50% 0 0 0);
}
.geo-hero-diamond {
    bottom: 30%; left: 15%;
    width: 28px; height: 28px;
    border: 1px solid var(--terra);
    transform: rotate(45deg);
}
.geo-hero-tri {
    top: 35%; left: 6%;
    width: 0; height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 24px solid var(--rust-06);
}
.geo-hero-parallel {
    bottom: 40%; right: 6%;
    width: 100px; height: 60px;
    background: repeating-linear-gradient(
        0deg,
        transparent, transparent 7px,
        var(--coral) 7px,
        var(--coral) 8px
    );
}
.geo-hero-semicircle {
    top: 72%; left: 28%;
    width: 64px; height: 32px;
    border: 1px solid var(--sienna-06);
    border-radius: 64px 64px 0 0;
    border-bottom: none;
}

/* ---- Services ---- */
.geo-svc-ring {
    top: -50px; left: -60px;
    width: 180px; height: 180px;
    border: 1px solid var(--rust);
    border-radius: 50%;
}
.geo-svc-ring2 {
    bottom: 15%; right: -40px;
    width: 140px; height: 140px;
    border: 1px solid var(--coral);
    border-radius: 50%;
}
.geo-svc-dots {
    bottom: 40px; right: 20px;
    width: 80px; height: 80px;
    background-image: radial-gradient(var(--sienna) 1.2px, transparent 1.2px);
    background-size: 14px 14px;
}
.geo-svc-dots2 {
    top: 20%; left: 3%;
    width: 50px; height: 50px;
    background-image: radial-gradient(var(--terra-06) 1px, transparent 1px);
    background-size: 10px 10px;
}
.geo-svc-line {
    top: 40%; right: 5%;
    width: 140px; height: 1px;
    background: var(--terra-06);
    transform: rotate(-30deg);
}
.geo-svc-line2 {
    bottom: 30%; right: 12%;
    width: 80px; height: 1px;
    background: var(--rosewood);
    transform: rotate(15deg);
}
.geo-svc-cross {
    bottom: 25%; left: 8%;
}
.geo-svc-cross::before, .geo-svc-cross::after { background: var(--rosewood-14); }
.geo-svc-diamond {
    top: 12%; right: 20%;
    width: 20px; height: 20px;
    border: 1px solid var(--coral);
    transform: rotate(45deg);
}
.geo-svc-arc {
    bottom: 8%; left: 20%;
    width: 80px; height: 80px;
    border: 1px solid var(--rust-06);
    border-radius: 50%;
    clip-path: inset(0 50% 50% 0);
}

/* ---- About (dark bg -> cream colored patterns) ---- */
.geo-about-grid {
    top: 40px; right: 30px;
    width: 160px; height: 160px;
    background-image:
        linear-gradient(rgba(244,239,233,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244,239,233,0.08) 1px, transparent 1px);
    background-size: 18px 18px;
}
.geo-about-diamond {
    bottom: 70px; left: 50px;
    width: 44px; height: 44px;
    border: 1px solid rgba(244,239,233,0.1);
    transform: rotate(45deg);
}
.geo-about-ring {
    top: -60px; right: 25%;
    width: 220px; height: 220px;
    border: 1px solid rgba(244,239,233,0.07);
    border-radius: 50%;
}
.geo-about-ring2 {
    bottom: 20%; left: -50px;
    width: 160px; height: 160px;
    border: 1px solid rgba(244,239,233,0.05);
    border-radius: 50%;
}
.geo-about-dots {
    bottom: 30px; right: 10%;
    width: 90px; height: 60px;
    background-image: radial-gradient(rgba(244,239,233,0.1) 1.2px, transparent 1.2px);
    background-size: 14px 14px;
}
.geo-about-line {
    top: 50%; left: -20px;
    width: 160px; height: 1px;
    background: rgba(244,239,233,0.08);
    transform: rotate(25deg);
}
.geo-about-line2 {
    bottom: 20%; right: 8%;
    width: 100px; height: 1px;
    background: rgba(244,239,233,0.06);
    transform: rotate(-40deg);
}
.geo-about-tri {
    top: 22%; left: 45%;
    width: 0; height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid rgba(244,239,233,0.06);
}
.geo-about-semicircle {
    bottom: 10%; right: 30%;
    width: 50px; height: 25px;
    border: 1px solid rgba(244,239,233,0.06);
    border-radius: 0 0 50px 50px;
    border-top: none;
}

/* ---- Consultant ---- */
.geo-con-circle {
    top: 30px; right: 40px;
    width: 160px; height: 160px;
    border: 1px solid var(--coral);
    border-radius: 50%;
}
.geo-con-circle2 {
    bottom: -30px; left: 10%;
    width: 120px; height: 120px;
    border: 1px solid var(--terra-06);
    border-radius: 50%;
}
.geo-con-dots {
    bottom: 40px; left: 30px;
    width: 70px; height: 70px;
    background-image: radial-gradient(var(--rosewood) 1.2px, transparent 1.2px);
    background-size: 14px 14px;
}
.geo-con-line {
    top: 60%; right: 12%;
    width: 100px; height: 1px;
    background: var(--sienna-06);
    transform: rotate(-35deg);
}
.geo-con-line2 {
    top: 18%; left: 5%;
    width: 70px; height: 1px;
    background: var(--rust-06);
    transform: rotate(20deg);
}
.geo-con-diamond {
    top: 20%; left: 60%;
    width: 24px; height: 24px;
    border: 1px solid var(--terra);
    transform: rotate(45deg);
}
.geo-con-grid {
    top: 15%; right: 8%;
    width: 80px; height: 80px;
    background-image:
        linear-gradient(var(--coral-05) 1px, transparent 1px),
        linear-gradient(90deg, var(--coral-05) 1px, transparent 1px);
    background-size: 14px 14px;
}
.geo-con-arc {
    bottom: 20%; right: 25%;
    width: 60px; height: 60px;
    border: 1px solid var(--sienna-06);
    border-radius: 50%;
    clip-path: inset(50% 0 0 50%);
}

/* ---- Community ---- */
.geo-comm-grid {
    top: 30px; left: 20px;
    width: 110px; height: 110px;
    background-image:
        linear-gradient(var(--sienna-06) 1px, transparent 1px),
        linear-gradient(90deg, var(--sienna-06) 1px, transparent 1px);
    background-size: 16px 16px;
}
.geo-comm-ring {
    bottom: -40px; right: -40px;
    width: 220px; height: 220px;
    border: 1px solid var(--terra-06);
    border-radius: 50%;
}
.geo-comm-ring2 {
    top: 10%; left: -30px;
    width: 100px; height: 100px;
    border: 1px solid var(--rust-06);
    border-radius: 50%;
}
.geo-comm-arc {
    top: 20%; right: 10%;
    width: 120px; height: 120px;
    border: 1px solid var(--coral);
    border-radius: 50%;
    clip-path: inset(0 0 50% 50%);
}
.geo-comm-cross {
    bottom: 30%; left: 15%;
}
.geo-comm-cross::before, .geo-comm-cross::after { background: var(--rosewood-14); }
.geo-comm-dots {
    top: 55%; right: 3%;
    width: 60px; height: 40px;
    background-image: radial-gradient(var(--rust-06) 1px, transparent 1px);
    background-size: 10px 10px;
}
.geo-comm-parallel {
    bottom: 12%; left: 30%;
    width: 80px; height: 50px;
    background: repeating-linear-gradient(
        -45deg,
        transparent, transparent 6px,
        var(--terra-06) 6px,
        var(--terra-06) 7px
    );
}
.geo-comm-diamond {
    top: 40%; right: 22%;
    width: 18px; height: 18px;
    border: 1px solid var(--sienna);
    transform: rotate(45deg);
}

/* ---- Contact (dark bg -> cream patterns) ---- */
.geo-contact-lines {
    top: 30px; right: 60px;
    width: 120px; height: 120px;
    background: repeating-linear-gradient(
        -45deg,
        transparent, transparent 8px,
        rgba(244,239,233,0.07) 8px,
        rgba(244,239,233,0.07) 9px
    );
}
.geo-contact-ring {
    bottom: -50px; left: -30px;
    width: 200px; height: 200px;
    border: 1px solid rgba(244,239,233,0.08);
    border-radius: 50%;
}
.geo-contact-ring2 {
    top: 15%; right: -30px;
    width: 140px; height: 140px;
    border: 1px solid rgba(244,239,233,0.05);
    border-radius: 50%;
}
.geo-contact-dots {
    top: 50%; right: 5%;
    width: 60px; height: 60px;
    background-image: radial-gradient(rgba(244,239,233,0.1) 1.2px, transparent 1.2px);
    background-size: 12px 12px;
}
.geo-contact-diamond {
    bottom: 25%; left: 40%;
    width: 28px; height: 28px;
    border: 1px solid rgba(244,239,233,0.07);
    transform: rotate(45deg);
}
.geo-contact-grid {
    bottom: 20px; left: 50%;
    width: 90px; height: 70px;
    background-image:
        linear-gradient(rgba(244,239,233,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244,239,233,0.05) 1px, transparent 1px);
    background-size: 14px 14px;
}
.geo-contact-semicircle {
    top: 60%; left: 15%;
    width: 40px; height: 20px;
    border: 1px solid rgba(244,239,233,0.06);
    border-radius: 40px 40px 0 0;
    border-bottom: none;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(244, 239, 233, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-family: var(--font-en);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-en);
    color: var(--text-sub);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s var(--ease);
}

.nav-links a:hover { color: var(--red); }

.nav-tag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--text-muted);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--red);
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

.mobile-menu-btn.active span:first-child {
    transform: rotate(45deg) translate(2px, 2px);
}

.mobile-menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(2px, -2px);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 164px 0 0;
    overflow: hidden;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: end;
    padding-bottom: 80px;
}

.hero-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-en);
    font-size: clamp(3.2rem, 7.5vw, 5.6rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--red);
}

.dot { color: var(--red-light); }

.hero-sub {
    margin-top: 28px;
    color: var(--text-sub);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-kr);
    padding: 13px 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.btn-fill {
    background: var(--red);
    color: var(--cream);
    border: 1px solid var(--red);
}

.btn-fill:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
}

.btn-outline {
    background: transparent;
    color: var(--red);
    border: 1px solid var(--red);
}

.btn-outline:hover {
    background: var(--red);
    color: var(--cream);
}

.hero-side {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 8px;
}

.hero-tagline {
    font-family: var(--font-en);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-sub);
}

.divider { height: 1px; background: var(--border); }

/* ===== Shared ===== */
.label-mono {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--red);
    margin-bottom: 14px;
}

.label-mono.light { color: rgba(244, 239, 233, 0.45); }

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.section-head h2 {
    font-family: var(--font-kr);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
}

/* ===== Services ===== */
.services {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.services-list { display: flex; flex-direction: column; }

.service-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 28px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s var(--ease);
}

.service-row:first-child { border-top: 1px solid var(--border); }

.service-row:hover {
    padding-left: 16px;
    background: var(--red-pale);
}

.service-row:hover .service-name { color: var(--red); }

.service-row:hover .service-arrow {
    background: var(--red);
    color: var(--cream);
    border-color: var(--red);
}

.service-info { min-width: 0; }

.service-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.02rem;
    font-weight: 600;
    transition: color 0.3s var(--ease);
    margin-bottom: 4px;
}

.service-badge {
    display: inline-block;
    background: var(--red);
    color: var(--cream);
    font-family: var(--font-en);
    font-size: 0.55rem;
    font-weight: 600;
    padding: 2px 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    vertical-align: middle;
    border-radius: 2px;
}

.service-desc {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.service-price {
    font-family: var(--font-mono);
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--red);
    white-space: nowrap;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}

/* ===== Hook / Pain Points ===== */
.hook {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.geo-hook-ring {
    top: -60px; right: -40px;
    width: 200px; height: 200px;
    border: 1px solid var(--terra-06);
    border-radius: 50%;
}
.geo-hook-dots {
    bottom: 60px; left: 20px;
    width: 80px; height: 60px;
    background-image: radial-gradient(var(--sienna-06) 1.2px, transparent 1.2px);
    background-size: 14px 14px;
}
.geo-hook-line {
    top: 40%; right: 8%;
    width: 100px; height: 1px;
    background: var(--rust-06);
    transform: rotate(-25deg);
}
.geo-hook-diamond {
    bottom: 25%; right: 15%;
    width: 22px; height: 22px;
    border: 1px solid var(--coral);
    transform: rotate(45deg);
}

.hook-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.hook-question h2 {
    font-family: var(--font-kr);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hook-question p {
    color: var(--text-sub);
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.hook-question strong { color: var(--red); font-weight: 600; }

.hook-highlight {
    color: var(--text) !important;
    font-weight: 500;
    font-size: 0.95rem !important;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.hook-pains-title {
    font-family: var(--font-en);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pain-item {
    font-size: 0.88rem;
    color: var(--text-sub);
    line-height: 1.6;
    padding-left: 16px;
    border-left: 2px solid var(--red-12);
}

.hook-cta {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.8;
    font-weight: 500;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.hook-cta strong { color: var(--red); }

/* ===== Approach / Shake You Up ===== */
.approach {
    position: relative;
    padding: 100px 0;
    background: var(--red);
    color: var(--cream);
    overflow: hidden;
}

.approach-header {
    max-width: 600px;
    margin-bottom: 52px;
}

.approach-header h2 {
    font-family: var(--font-en);
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.03em;
    color: var(--cream);
    margin-bottom: 16px;
}

.approach-sub {
    color: rgba(244, 239, 233, 0.6);
    font-size: 0.92rem;
    line-height: 1.7;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.approach-card {
    padding: 36px 32px;
    background: rgba(244, 239, 233, 0.06);
    border: 1px solid rgba(244, 239, 233, 0.08);
    transition: background 0.3s var(--ease);
}

.approach-card:hover {
    background: rgba(244, 239, 233, 0.1);
}

.approach-num {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: rgba(244, 239, 233, 0.3);
    margin-bottom: 14px;
}

.approach-card h4 {
    font-family: var(--font-kr);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
}

.approach-card p {
    color: rgba(244, 239, 233, 0.55);
    font-size: 0.84rem;
    line-height: 1.7;
}

/* ===== Target Audience ===== */
.target {
    position: relative;
    padding: 80px 0 100px;
    background: var(--white);
    overflow: hidden;
}

.target-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.target-header h2 {
    font-family: var(--font-kr);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.target-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.target-item:first-child { border-top: 1px solid var(--border); }

.target-bullet {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--red);
    margin-top: 6px;
    transform: rotate(45deg);
}

.target-item p {
    font-size: 0.92rem;
    color: var(--text-sub);
    line-height: 1.6;
}

/* Service note */
.service-note {
    margin-top: 28px;
    padding: 20px 24px;
    background: var(--red-pale);
    border-left: 2px solid var(--red);
}

.service-note p {
    font-size: 0.8rem;
    color: var(--text-sub);
    line-height: 1.7;
}

/* ===== Process ===== */
.process {
    position: relative;
    padding: 100px 0;
    background: var(--red);
    color: var(--cream);
    overflow: hidden;
}

.process-header {
    max-width: 500px;
    margin-bottom: 52px;
}

.process-header h2 {
    font-family: var(--font-kr);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--cream);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.process-step {
    padding: 36px 28px;
    background: rgba(244, 239, 233, 0.06);
    border: 1px solid rgba(244, 239, 233, 0.08);
}

.step-num {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: rgba(244, 239, 233, 0.3);
    margin-bottom: 14px;
}

.process-step h4 {
    font-family: var(--font-kr);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
}

.process-step p {
    color: rgba(244, 239, 233, 0.55);
    font-size: 0.84rem;
    line-height: 1.7;
}

/* ===== Feedback ===== */
.feedback {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.feedback-header {
    margin-bottom: 48px;
}

.feedback-header h2 {
    font-family: var(--font-kr);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feedback-card {
    padding: 32px 28px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.3s var(--ease);
}

.feedback-card:hover {
    border-color: var(--red);
    transform: translateY(-2px);
}

.feedback-card p {
    font-size: 0.92rem;
    color: var(--text-sub);
    line-height: 1.7;
    font-style: italic;
}

/* ===== Consultant ===== */
.consultant {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.consultant-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.consultant-text h2 {
    font-family: var(--font-en);
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.consultant-card {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 40px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: box-shadow 0.3s var(--ease);
}

.consultant-card:hover {
    box-shadow: 0 8px 32px rgba(28, 25, 23, 0.06);
}

.consultant-photo {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    overflow: hidden;
}

.consultant-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
    transition: filter 0.4s var(--ease);
}

.consultant-card:hover .consultant-photo img { filter: grayscale(0%); }

.role {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--red);
    margin-bottom: 6px;
}

.consultant-info h3 {
    font-family: var(--font-en);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.consultant-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.consultant-subtitle {
    color: var(--text-sub);
    font-size: 0.88rem;
    margin-top: 12px;
    line-height: 1.6;
}

.consultant-career {
    font-family: var(--font-en);
    font-size: 0.78rem !important;
    color: var(--text-sub) !important;
    line-height: 1.6;
    margin-bottom: 8px;
}

.consultant-bio {
    font-size: 0.82rem !important;
    line-height: 1.7;
}

.slogan {
    margin-top: 12px;
    font-style: italic;
    color: var(--red) !important;
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.6;
}

/* ===== Community ===== */
.community {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.community-layout {}

.community-header {
    max-width: 520px;
    margin-bottom: 52px;
}

.community-header h2 {
    font-family: var(--font-en);
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.community-desc {
    color: var(--text-sub);
    font-size: 0.92rem;
    line-height: 1.8;
}

.community-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.comm-card {
    padding: 36px 28px;
    border: 1px solid var(--border);
    background: var(--cream);
    transition: all 0.3s var(--ease);
}

.comm-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(162, 50, 40, 0.08);
}

.comm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--red-pale);
    border: 1px solid var(--red-08);
    color: var(--red);
    margin-bottom: 20px;
}

.comm-card h4 {
    font-family: var(--font-en);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.comm-card p {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.65;
}

/* ===== Contact ===== */
.contact {
    position: relative;
    padding: 100px 0;
    background: var(--red);
    color: var(--cream);
    overflow: hidden;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-header h2 {
    font-family: var(--font-en);
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.03em;
    color: var(--cream);
}

.contact-list { display: flex; flex-direction: column; }

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(244, 239, 233, 0.1);
    text-decoration: none;
    color: var(--cream);
    transition: all 0.3s var(--ease);
}

.contact-item:first-child { border-top: 1px solid rgba(244, 239, 233, 0.1); }

.contact-item:hover { padding-left: 12px; }

.contact-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: rgba(244, 239, 233, 0.38);
}

.contact-value {
    font-family: var(--font-en);
    font-size: 0.88rem;
    font-weight: 500;
}

/* Refund note */
.refund-note {
    margin-top: 28px;
    padding: 20px 0;
    border-top: 1px solid rgba(244, 239, 233, 0.1);
}

.refund-note h5 {
    font-family: var(--font-en);
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(244, 239, 233, 0.5);
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}

.refund-note p {
    font-size: 0.78rem;
    color: rgba(244, 239, 233, 0.4);
    margin-bottom: 8px;
}

.refund-note ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.refund-note li {
    font-size: 0.75rem;
    color: rgba(244, 239, 233, 0.4);
    font-family: var(--font-mono);
}

/* ===== Footer ===== */
.footer {
    padding: 24px 0;
    background: var(--text);
}

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

.footer .logo { color: rgba(244, 239, 233, 0.5); font-size: 0.95rem; }

.footer p {
    font-family: var(--font-en);
    color: rgba(244, 239, 233, 0.2);
    font-size: 0.68rem;
}

.footer-tag {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--red-light);
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

.stagger > .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger > .fade-in:nth-child(2) { transition-delay: 0.06s; }
.stagger > .fade-in:nth-child(3) { transition-delay: 0.12s; }
.stagger > .fade-in:nth-child(4) { transition-delay: 0.18s; }
.stagger > .fade-in:nth-child(5) { transition-delay: 0.24s; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hero-layout { grid-template-columns: 1fr; gap: 32px; }
    .hero-side { display: none; }

    .hook-layout,
    .target-layout,
    .consultant-layout { grid-template-columns: 1fr; gap: 40px; }

    .contact-layout { grid-template-columns: 1fr; gap: 40px; align-items: start; }

    .approach-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .feedback-grid { grid-template-columns: 1fr 1fr; }
    .community-cards { grid-template-columns: 1fr 1fr; }

    .geo-hero-ring { width: 280px; height: 280px; right: -80px; }
    .geo-hero-ring2 { display: none; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(244, 239, 233, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 24px;
        gap: 18px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active { display: flex; }
    .nav-tag { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero { padding: 124px 0 0; }
    .hero-layout { padding-bottom: 48px; }
    .hero-actions { flex-direction: row; gap: 10px; flex-wrap: wrap; }
    .btn { padding: 12px 24px; font-size: 0.82rem; }

    .hook, .target, .feedback { padding: 64px 0; }
    .services, .consultant, .community { padding: 64px 0; }
    .approach, .process, .contact { padding: 64px 0; }

    .hook-question h2 { font-size: 1.3rem; }
    .hook-highlight { font-size: 0.88rem !important; }

    .service-desc { display: none; }
    .service-note { padding: 16px 20px; }
    .service-note p { font-size: 0.75rem; }

    .approach-grid { grid-template-columns: 1fr; }
    .approach-card { padding: 28px 24px; }

    .process-steps { gap: 12px; }
    .process-step { padding: 28px 24px; }

    .feedback-grid { grid-template-columns: 1fr; }
    .feedback-card { padding: 24px 20px; }

    .community-cards { grid-template-columns: 1fr; }

    .consultant-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 32px 24px;
    }

    .contact-value {
        font-size: 0.78rem;
        word-break: break-all;
    }

    .refund-note { margin-top: 20px; padding: 16px 0; }

    .footer-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    [class^="geo-"] { display: none; }
}

/* 아주 작은 화면 (iPhone SE 등) */
@media (max-width: 380px) {
    .container { padding: 0 18px; }
    .hero h1 { font-size: 2.6rem; }
    .btn { padding: 11px 20px; font-size: 0.78rem; }
    .service-row { gap: 16px; }
    .service-price { font-size: 0.78rem; }
    .approach-card h4 { font-size: 1rem; }
    .pain-item { font-size: 0.82rem; }
}
