/*     517565 : 한줄 텍스트      */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500&display=swap');

:root {
    --navy: #FFFFFF;
    --teal: #0E9E8E;
    --teal-light: #14C4B2;
    --teal-dim: #0A7A6E;
    --cream: #374151;
    --warm-white: #FDFAF5;
    --text-muted: #6B7280;
    --border: rgba(14,158,142,0.28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--navy);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* 디자인팜 컨테이너의 word-break 강제 설정을 우리 영역에서 무력화 */
.main-nav__RAND__, .hero__RAND__, section, footer, #legal-overlay {
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* NAV */
/* NAV - .main-nav 클래스 사용 (nav 태그 충돌 회피) */
.main-nav__RAND__ {
    position: sticky !important; top: 0; z-index: 100;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    padding: 1.25rem 4rem;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--border);
    width: 100%;
    box-sizing: border-box;
}
.nav-logo__RAND__ { display: flex; align-items: center; gap: 10px; }
.nav-logo-mark__RAND__ {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--teal); display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark__RAND__ svg { width: 20px; height: 20px; }
.nav-brand__RAND__ { font-family: 'DM Serif Display', serif !important; font-size: 16px; letter-spacing: 0.02em; }
.nav-brand__RAND__ span { color: var(--teal-light); font-style: italic; }
.nav-links__RAND__ { display: flex !important; flex-direction: row !important; align-items: center !important; gap: 2rem; font-size: 13px; color: var(--text-muted); }
.nav-links__RAND__ a { color: inherit; text-decoration: none; transition: color 0.2s; }
.nav-links__RAND__ a:hover { color: var(--cream); }
.nav-cta__RAND__ {
    background: var(--teal); color: #fff; border: none;
    padding: 0.5rem 1.25rem; border-radius: 6px; font-size: 13px;
    font-family: 'DM Sans', sans-serif !important; cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}
.nav-cta__RAND__:hover { background: var(--teal-light); }

/* HERO */
.hero__RAND__ {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 3rem 4rem 4rem;
    position: relative; overflow: hidden;
}
.hero-bg__RAND__ {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 60% 60% at 70% 40%, rgba(14,158,142,0.12) 0%, transparent 70%);
}
.hero-grid__RAND__ {
    position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
    background-image: linear-gradient(rgba(14,158,142,1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(14,158,142,1) 1px, transparent 1px);
    background-size: 48px 48px;
}
.hero-badge__RAND__ {
    display: inline-flex; align-items: center; gap: 8px;
    border: 0.5px solid var(--teal); border-radius: 100px;
    padding: 0.35rem 1rem; font-size: 12px; color: var(--teal-light);
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 2rem; width: fit-content;
    animation: fadeUp 0.6s ease both;
}
.hero-badge-dot__RAND__ {
    width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
h1 {
    font-family: 'DM Serif Display', serif !important;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    max-width: 760px;
    animation: fadeUp 0.6s 0.1s ease both;
}
h1 em { color: var(--teal-light); font-style: italic; }
.hero-sub__RAND__ {
    font-size: 1.05rem; color: var(--text-muted); max-width: 560px;
    margin-top: 1.5rem;
    animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions__RAND__ {
    display: flex; gap: 1rem; align-items: center;
    margin-top: 2.5rem;
    animation: fadeUp 0.6s 0.3s ease both;
}
.btn-primary__RAND__ {
    background: var(--teal); color: #fff; border: none;
    padding: 0.85rem 2rem; border-radius: 8px;
    font-family: 'DM Sans', sans-serif !important; font-size: 14px; font-weight: 500;
    cursor: pointer; transition: all 0.2s;
    text-decoration: none; display: inline-block;
}
.btn-primary__RAND__:hover { background: var(--teal-light); transform: translateY(-1px); }
.btn-outline__RAND__ {
    border: 0.5px solid var(--border); color: var(--text-muted);
    padding: 0.85rem 2rem; border-radius: 8px;
    font-family: 'DM Sans', sans-serif !important; font-size: 14px;
    cursor: pointer; background: transparent; transition: all 0.2s;
    text-decoration: none; display: inline-block;
}
.btn-outline__RAND__:hover { border-color: var(--teal); color: var(--cream); }

.hero-stats__RAND__ {
    display: flex; gap: 3rem; margin-top: 4rem;
    padding-top: 2.5rem; border-top: 0.5px solid var(--border);
    animation: fadeUp 0.6s 0.4s ease both;
}
.stat-num__RAND__ {
    font-family: 'DM Serif Display', serif !important; font-size: 2rem; color: var(--teal-light);
}
.stat-label__RAND__ { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* SECTIONS */
section { padding: 6rem 4rem; }

.section-label__RAND__ {
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--teal); margin-bottom: 1rem;
}
h2 {
    font-family: 'DM Serif Display', serif !important; font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15; letter-spacing: -0.01em; max-width: 600px;
}
h2 em { color: var(--teal-light); font-style: italic; }
.section-lead__RAND__ { color: var(--text-muted); max-width: 580px; margin-top: 1rem; font-size: 1rem; }

/* WHAT IT DOES */
.what-grid__RAND__ {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5px; margin-top: 4rem;
    border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden;
}
.what-card__RAND__ {
    background: rgba(14,158,142,0.04);
    padding: 2.5rem;
    border: 0.5px solid var(--border);
    transition: background 0.3s;
}
.what-card__RAND__:hover { background: rgba(14,158,142,0.08); }
.what-card-icon__RAND__ {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(14,158,142,0.15); display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
}
.what-card-icon__RAND__ svg { width: 22px; height: 22px; stroke: var(--teal-light); fill: none; stroke-width: 1.5; }
.what-card__RAND__ h3 { font-size: 1rem; font-weight: 500; margin-bottom: 0.5rem; }
.what-card__RAND__ p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* HOW IT WORKS */
.how-steps__RAND__ { margin-top: 4rem; display: flex; flex-direction: column; gap: 0; }
.how-step__RAND__ {
    display: grid; grid-template-columns: 80px 1fr;
    gap: 0; padding: 2rem 0;
    border-bottom: 0.5px solid var(--border);
    position: relative;
}
.how-step__RAND__:last-child { border-bottom: none; }
.step-num__RAND__ {
    font-family: 'DM Serif Display', serif !important; font-size: 3rem;
    color: rgba(14,158,142,0.2); line-height: 1; padding-top: 0.2rem;
}
.step-content__RAND__ h3 { font-size: 1.05rem; font-weight: 500; margin-bottom: 0.4rem; }
.step-content__RAND__ p { font-size: 0.875rem; color: var(--text-muted); max-width: 500px; }

/* PRICING */
.pricing-wrap__RAND__ {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.5rem; margin-top: 4rem;
}
.pricing-card__RAND__ {
    border: 0.5px solid var(--border); border-radius: 16px;
    padding: 2.5rem; background: rgba(14,158,142,0.03);
    transition: border-color 0.3s;
}
.pricing-card__RAND__.featured__RAND__ {
    border-color: var(--teal); background: rgba(14,158,142,0.07);
}
.pricing-card__RAND__ .plan-badge__RAND__ {
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--teal-light); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 6px;
}
.pricing-card__RAND__ .plan-name__RAND__ {
    font-family: 'DM Serif Display', serif !important; font-size: 1.75rem; margin-bottom: 0.5rem;
}
.pricing-card__RAND__ .plan-desc__RAND__ { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.pricing-card__RAND__ .plan-price__RAND__ {
    font-family: 'DM Serif Display', serif !important; font-size: 2.5rem; color: var(--teal-light);
    margin-bottom: 0.25rem;
}
.pricing-card__RAND__ .plan-price-note__RAND__ { font-size: 12px; color: var(--text-muted); margin-bottom: 1.5rem; }
.plan-features__RAND__ { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.plan-features__RAND__ li {
    font-size: 0.875rem; display: flex; gap: 10px; align-items: flex-start;
}
.plan-features__RAND__ li::before {
    content: '';
    width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
    background: rgba(14,158,142,0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230E9E8E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8l3.5 3.5L13 5'/%3E%3C/svg%3E");
    background-size: 10px; background-repeat: no-repeat; background-position: center;
}
.refund-note__RAND__ {
    margin-top: 1.5rem; padding: 1rem; border-radius: 8px;
    background: rgba(14,158,142,0.08); border-left: 2px solid var(--teal);
    font-size: 0.82rem; color: var(--text-muted);
}
.refund-note__RAND__ strong { color: var(--cream); font-weight: 500; }

/* COMPANY */
.company-grid__RAND__ {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    margin-top: 4rem; align-items: center;
}
.company-text__RAND__ h2 { max-width: none; }
.company-text__RAND__ p { color: var(--text-muted); margin-top: 1rem; font-size: 0.95rem; }
.company-cards__RAND__ { display: flex; flex-direction: column; gap: 1rem; }
.company-card__RAND__ {
    border: 0.5px solid var(--border); border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex; gap: 1rem; align-items: flex-start;
    background: rgba(14,158,142,0.03);
}
.company-card-icon__RAND__ {
    width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
    background: rgba(14,158,142,0.12); display: flex; align-items: center; justify-content: center;
}
.company-card-icon__RAND__ svg { width: 18px; height: 18px; stroke: var(--teal-light); fill: none; stroke-width: 1.5; }
.company-card__RAND__ h4 { font-size: 0.9rem; font-weight: 500; margin-bottom: 2px; }
.company-card__RAND__ p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* FOOTER */
footer {
    border-top: 0.5px solid var(--border);
    padding: 2.5rem 4rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: var(--text-muted);
}
.footer-links__RAND__ { display: flex; gap: 2rem; }
.footer-links__RAND__ a { color: inherit; text-decoration: none; }
.footer-links__RAND__ a:hover { color: var(--cream); }

/* DIVIDER */
hr { border: none; border-top: 0.5px solid var(--border); margin: 0 4rem; }

@media (max-width: 768px) {
    .main-nav__RAND__ { padding: 1rem 1.5rem; justify-content: flex-end !important; }
    .nav-links__RAND__ { display: none; }
    section, .hero__RAND__ { padding: 4rem 1.5rem; }
    h1 { font-size: 2.2rem; }
    .what-grid__RAND__, .pricing-wrap__RAND__, .company-grid__RAND__ { grid-template-columns: 1fr; }
    .how-step__RAND__ { grid-template-columns: 50px 1fr; }
    .hero-stats__RAND__ { flex-direction: column; gap: 1.5rem; }
    footer { flex-direction: column; gap: 1rem; padding: 2rem 1.5rem; }
}

/* LEGAL MODAL */
.legal-tab__RAND__ {
    background: transparent; border: 0.5px solid var(--border);
    color: var(--text-muted); padding: 0.45rem 1rem; border-radius: 6px;
    font-family: 'DM Sans', sans-serif !important; font-size: 13px; cursor: pointer;
    transition: all 0.2s;
}
.legal-tab__RAND__:hover { color: var(--cream); border-color: var(--teal); }
.active-tab__RAND__ { background: var(--teal); color: #fff; border-color: var(--teal); }
.legal-eyebrow__RAND__ { font-size: 12px; color: var(--teal); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; }
.legal-h1__RAND__ { font-family: 'DM Serif Display', serif !important; font-size: 2.5rem; color: var(--cream); margin-bottom: 0.4rem; line-height: 1.1; }
.legal-date__RAND__ { font-size: 13px; color: var(--text-muted); font-style: italic; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 0.5px solid var(--border); }
.legal-h2__RAND__ { font-family: 'DM Sans', sans-serif !important; font-size: 1rem; font-weight: 500; color: var(--teal); margin: 2rem 0 0.6rem; padding-bottom: 0.4rem; border-bottom: 0.5px solid var(--border); }
.legal-h3__RAND__ { font-family: 'DM Sans', sans-serif !important; font-size: 0.9rem; font-weight: 500; color: var(--cream); margin: 1.2rem 0 0.4rem; }
.legal-body__RAND__ { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 0.85rem; }
.legal-body__RAND__ strong { color: var(--cream); font-weight: 500; }
.legal-list__RAND__ { padding-left: 1.25rem; margin-bottom: 0.85rem; display: flex; flex-direction: column; gap: 0.4rem; }
.legal-list__RAND__ li { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.legal-list__RAND__ li strong { color: var(--cream); font-weight: 500; }
.legal-highlight__RAND__ {
    border-left: 3px solid var(--teal); padding: 0.85rem 1.1rem;
    background: rgba(14,158,142,0.07); border-radius: 0 8px 8px 0;
    font-size: 0.875rem; color: var(--cream); font-weight: 500;
    margin: 1rem 0; line-height: 1.65;
}

