:root {
    --renewal-bg: #f7f4ff;
    --renewal-surface: #ffffff;
    --renewal-surface-alt: #f4f7ff;
    --renewal-line: rgba(66, 33, 120, 0.12);
    --renewal-line-strong: rgba(66, 33, 120, 0.22);
    --renewal-text: #1d1730;
    --renewal-muted: #625b77;
    --renewal-primary: #6d3ed1;
    --renewal-primary-strong: #4e63ff;
    --renewal-primary-soft: #efe6ff;
    --renewal-accent: #ffb84c;
    --renewal-accent-soft: #fff5de;
    --renewal-success: #20b07b;
    --renewal-dark: #27242e;
    --renewal-shadow: 0 24px 60px rgba(50, 31, 90, 0.14);
    --renewal-radius-xl: 34px;
    --renewal-radius-lg: 24px;
    --renewal-radius-md: 18px;
    --renewal-radius-sm: 12px;
    --renewal-shell: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.renewal-body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(109, 62, 209, 0.12), transparent 28%),
        linear-gradient(180deg, #fbfaff 0%, #f7f4ff 34%, #ffffff 100%);
    color: var(--renewal-text);
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea {
    font: inherit;
}

.shell {
    width: min(calc(100% - 40px), var(--renewal-shell));
    margin: 0 auto;
}

.renewal-main {
    overflow: hidden;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--renewal-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--renewal-primary), var(--renewal-primary-strong));
}

.section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

.section-heading h2 {
    margin: 14px 0 12px;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 0;
    color: var(--renewal-muted);
    font-size: 17px;
}

.accent-button,
.ghost-button,
.pill-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.accent-button {
    background: linear-gradient(135deg, var(--renewal-primary) 0%, var(--renewal-primary-strong) 100%);
    color: #fff;
    box-shadow: 0 18px 34px rgba(82, 72, 229, 0.26);
}

.accent-button:hover,
.ghost-button:hover,
.pill-link:hover {
    transform: translateY(-1px);
}

.ghost-button {
    background: rgba(255, 255, 255, 0.82);
    border-color: var(--renewal-line);
    color: var(--renewal-text);
}

.pill-link {
    min-height: 40px;
    padding: 0 16px;
    background: var(--renewal-primary-soft);
    color: var(--renewal-primary);
    border-color: transparent;
    font-size: 14px;
}

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(109, 62, 209, 0.14), rgba(78, 99, 255, 0.12));
    color: var(--renewal-primary);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.renewal-header {
    position: sticky;
    top: 0;
    z-index: 30;
    padding-top: 16px;
}

.renewal-header__bar {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 82px;
    padding: 16px 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 44px rgba(25, 22, 41, 0.08);
    backdrop-filter: blur(16px);
}

.renewal-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.renewal-brand img {
    width: 34px;
    height: 34px;
}

.renewal-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.renewal-nav__link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--renewal-muted);
    font-size: 14px;
    font-weight: 700;
}

.renewal-nav__link.is-active,
.renewal-nav__link:hover {
    color: var(--renewal-primary);
    background: var(--renewal-primary-soft);
}

.renewal-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.renewal-header__menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 16px;
    background: rgba(109, 62, 209, 0.08);
    color: var(--renewal-primary);
    cursor: pointer;
}

.renewal-header__menu-button span,
.renewal-header__menu-button::before,
.renewal-header__menu-button::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.renewal-header__menu-button::before {
    transform: translateY(-6px);
}

.renewal-header__menu-button::after {
    transform: translateY(6px);
}

.renewal-header__menu-button span {
    position: absolute;
}

.renewal-header.is-open .renewal-header__menu-button::before {
    transform: translateY(0) rotate(45deg);
}

.renewal-header.is-open .renewal-header__menu-button::after {
    transform: translateY(0) rotate(-45deg);
}

.renewal-header.is-open .renewal-header__menu-button span {
    opacity: 0;
}

.hero {
    padding: 34px 0 24px;
}

.hero__panel,
.sub-hero__panel {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.22), transparent 22%),
        radial-gradient(circle at 90% 16%, rgba(255, 255, 255, 0.18), transparent 24%),
        linear-gradient(135deg, #6740ca 0%, #4f60ff 55%, #6e93ff 100%);
    color: #fff;
    box-shadow: var(--renewal-shadow);
}

.hero__panel::after,
.sub-hero__panel::after {
    content: "";
    position: absolute;
    inset: auto -120px -140px auto;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.hero__grid,
.sub-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 34px;
    padding: 64px 64px 60px;
}

.hero__copy h1,
.sub-hero__copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.hero__copy p,
.sub-hero__copy p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.hero__actions,
.sub-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.hero__list li {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.94);
}

.hero-stage,
.sub-hero__stage {
    position: relative;
}

.mock-browser,
.surface-card,
.preview-card,
.device-card,
.ticket-card,
.faq-card,
.comparison-card,
.table-card,
.feature-card,
.stats-card,
.cta-band__panel {
    border-radius: var(--renewal-radius-xl);
    background: var(--renewal-surface);
    border: 1px solid var(--renewal-line);
    box-shadow: var(--renewal-shadow);
}

.mock-browser {
    padding: 22px;
    color: var(--renewal-text);
}

.mock-browser__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.mock-browser__bar span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(109, 62, 209, 0.18);
}

.mock-browser__hero {
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f3efff 0%, #f4f8ff 100%);
}

.mock-browser__hero h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.mock-browser__hero p {
    margin: 8px 0 0;
    color: var(--renewal-muted);
    font-size: 14px;
}

.mock-form {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.mock-form__field,
.mock-form__field--large {
    min-height: 48px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(66, 33, 120, 0.1);
}

.mock-form__field--large {
    min-height: 82px;
}

.mock-form__row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.hero-floating-card {
    position: absolute;
    right: -18px;
    bottom: 26px;
    width: min(82%, 280px);
    padding: 20px;
}

.hero-floating-card h3,
.stats-card h3,
.surface-card h3,
.feature-card h3,
.faq-card h3,
.cta-band__copy h2,
.sub-info-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.hero-floating-card p,
.stats-card p,
.surface-card p,
.feature-card p,
.faq-card p,
.sub-info-card p {
    margin: 10px 0 0;
    color: var(--renewal-muted);
    font-size: 14px;
}

.floating-stat-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
}

.floating-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--renewal-surface-alt);
}

.floating-stat strong {
    font-size: 18px;
    color: var(--renewal-primary);
}

.content-section {
    padding: 44px 0;
}

.content-section--tight {
    padding-top: 24px;
}

.kpi-grid,
.service-grid,
.feature-grid,
.faq-grid,
.process-list,
.support-grid,
.detail-grid,
.dashboard-grid,
.device-grid,
.ticket-grid {
    display: grid;
    gap: 20px;
}

.kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-card {
    padding: 26px;
}

.stats-card__value {
    display: block;
    margin-top: 12px;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
}

.stats-card__meta {
    margin-top: 8px;
    color: var(--renewal-muted);
    font-size: 13px;
}

.service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 26px;
}

.service-card p {
    margin: 0;
    color: var(--renewal-muted);
    font-size: 14px;
}

.service-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.service-card__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--renewal-primary);
}

.process-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
    position: relative;
    padding: 28px 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 34px rgba(20, 18, 37, 0.06);
}

.process-step::after {
    content: "";
    position: absolute;
    top: 42px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, rgba(109, 62, 209, 0.4), rgba(109, 62, 209, 0));
}

.process-step:last-child::after {
    display: none;
}

.process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: var(--renewal-primary-soft);
    color: var(--renewal-primary);
    font-size: 15px;
    font-weight: 800;
}

.process-step h3 {
    margin: 20px 0 10px;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.process-step p,
.process-step li {
    margin: 0;
    color: var(--renewal-muted);
    font-size: 14px;
}

.process-step ul {
    display: grid;
    gap: 8px;
    margin: 12px 0 0;
    padding-left: 18px;
}

.dashboard-grid,
.detail-grid,
.device-grid,
.support-grid,
.ticket-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.surface-card,
.preview-card,
.device-card,
.ticket-card,
.comparison-card {
    padding: 28px;
}

.surface-card__header,
.preview-card__header,
.table-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.surface-card__eyebrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--renewal-primary);
}

.surface-card__header h3,
.preview-card__header h3,
.table-card__header h3,
.comparison-card__header h3 {
    margin: 6px 0 0;
    font-size: 24px;
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.surface-card__header p,
.preview-card__header p,
.table-card__header p,
.comparison-card__header p {
    margin: 8px 0 0;
    color: var(--renewal-muted);
    font-size: 14px;
}

.metric-list {
    display: grid;
    gap: 12px;
}

.metric-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--renewal-surface-alt);
}

.metric-row strong {
    font-size: 16px;
    color: var(--renewal-primary);
}

.chart-card {
    margin-top: 22px;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(109, 62, 209, 0.08), rgba(78, 99, 255, 0.02));
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    min-height: 190px;
}

.chart-bars span {
    flex: 1 1 0;
    border-radius: 14px 14px 8px 8px;
    background: linear-gradient(180deg, var(--renewal-primary-strong), rgba(109, 62, 209, 0.4));
}

.chart-legend {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    color: var(--renewal-muted);
    font-size: 13px;
}

.table-card {
    padding: 28px;
}

.comparison-table,
.mock-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.comparison-table th,
.comparison-table td,
.mock-table th,
.mock-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(66, 33, 120, 0.08);
    font-size: 14px;
    text-align: left;
}

.comparison-table thead th,
.mock-table thead th {
    background: var(--renewal-primary-soft);
    color: var(--renewal-primary);
    font-size: 13px;
    font-weight: 800;
}

.comparison-table tbody tr:last-child td,
.mock-table tbody tr:last-child td {
    border-bottom: 0;
}

.comparison-table td strong,
.mock-table td strong {
    color: var(--renewal-text);
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    padding: 24px;
}

.feature-card ul {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding-left: 18px;
    color: var(--renewal-muted);
    font-size: 14px;
}

.feature-card--highlight {
    background: linear-gradient(180deg, rgba(109, 62, 209, 0.08), rgba(109, 62, 209, 0.02));
}

.showcase {
    padding: 48px 0;
}

.showcase__panel {
    overflow: hidden;
    border-radius: 40px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 22%),
        linear-gradient(135deg, #6c3fd1 0%, #5322aa 100%);
    box-shadow: var(--renewal-shadow);
}

.showcase__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 30px;
    padding: 54px 56px;
    color: #fff;
}

.showcase__copy h2 {
    margin: 16px 0 14px;
    font-size: clamp(32px, 4.2vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.showcase__copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}

.showcase__bullets {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.showcase__bullets li {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.device-grid {
    align-items: end;
}

.device-card {
    min-height: 300px;
    background: rgba(255, 255, 255, 0.95);
}

.device-card__screen {
    position: relative;
    min-height: 222px;
    margin-top: 18px;
    padding: 18px;
    border-radius: 26px;
    background: linear-gradient(180deg, #f7f4ff 0%, #eef4ff 100%);
    overflow: hidden;
}

.device-card__screen::before {
    content: "";
    position: absolute;
    inset: 16px 16px auto;
    height: 12px;
    border-radius: 999px;
    background: rgba(109, 62, 209, 0.14);
}

.device-card__screen--phones {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
}

.phone-shell {
    width: 138px;
    height: 252px;
    padding: 14px;
    border-radius: 34px;
    background: linear-gradient(180deg, #2c2840 0%, #16141f 100%);
    box-shadow: 0 20px 35px rgba(20, 15, 36, 0.24);
}

.phone-shell__screen {
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f4ff 100%);
    padding: 18px 12px;
}

.phone-shell__screen .mock-form__field {
    min-height: 34px;
    border-radius: 12px;
}

.support-grid {
    grid-template-columns: 1.1fr 0.9fr;
}

.faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-card {
    padding: 24px;
}

.faq-card span {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--renewal-accent-soft);
    color: #8b5a00;
    font-size: 12px;
    font-weight: 800;
}

.sub-hero {
    padding: 34px 0 24px;
}

.sub-info-card {
    padding: 24px;
    border-radius: var(--renewal-radius-xl);
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.sub-info-card__list {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
}

.sub-info-card__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
}

.sub-info-card__item strong {
    color: #fff;
}

.preview-card__body,
.ticket-card__body {
    display: grid;
    gap: 16px;
}

.preview-tabs {
    display: inline-flex;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: var(--renewal-surface-alt);
}

.preview-tabs span {
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--renewal-muted);
}

.preview-tabs span.is-active {
    background: #fff;
    color: var(--renewal-primary);
    box-shadow: 0 8px 16px rgba(15, 12, 29, 0.08);
}

.preview-block {
    padding: 20px;
    border-radius: 24px;
    background: var(--renewal-surface-alt);
}

.preview-block h4 {
    margin: 0 0 10px;
    font-size: 16px;
    letter-spacing: -0.03em;
}

.preview-block p {
    margin: 0;
    color: var(--renewal-muted);
    font-size: 14px;
}

.preview-inline-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.preview-inline-fields span {
    min-height: 46px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(66, 33, 120, 0.08);
}

.preview-callout {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(109, 62, 209, 0.08), rgba(78, 99, 255, 0.06));
}

.preview-callout strong {
    display: block;
    font-size: 18px;
    letter-spacing: -0.04em;
}

.preview-list {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.preview-list li {
    padding: 12px 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(66, 33, 120, 0.08);
    color: var(--renewal-muted);
    font-size: 14px;
}

.ticket-card {
    background: linear-gradient(180deg, #fff 0%, #faf7ff 100%);
}

.ticket-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ticket-strip__item {
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(66, 33, 120, 0.08);
}

.ticket-strip__item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    letter-spacing: -0.03em;
}

.integration-callout {
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(37, 30, 63, 0.98), rgba(44, 30, 85, 0.9));
    color: #fff;
}

.integration-callout strong {
    display: block;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.06em;
}

.integration-callout p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.code-panel {
    padding: 20px;
    border-radius: 24px;
    background: #11101a;
    color: #e6def7;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 14px;
    line-height: 1.7;
    overflow-x: auto;
}

.device-terminal {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.terminal-unit {
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff 0%, #f6f1ff 100%);
    border: 1px solid rgba(66, 33, 120, 0.08);
}

.terminal-unit__screen {
    width: 100%;
    height: 118px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #3d315a 0%, #1c1830 100%);
    position: relative;
}

.terminal-unit__screen::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f8f4ff, #e5edff);
}

.terminal-unit strong {
    display: block;
    font-size: 18px;
    letter-spacing: -0.04em;
}

.terminal-unit p {
    margin: 8px 0 0;
    color: var(--renewal-muted);
    font-size: 14px;
}

.cta-band {
    padding: 24px 0 56px;
}

.cta-band__panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 34px;
    background: linear-gradient(135deg, rgba(109, 62, 209, 0.08), rgba(78, 99, 255, 0.06));
}

.cta-band__copy p {
    margin: 10px 0 0;
    color: var(--renewal-muted);
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.renewal-footer {
    padding: 0 0 32px;
}

.renewal-footer__panel {
    border-radius: 36px;
    padding: 34px 36px;
    background: linear-gradient(135deg, #25222d 0%, #2e2a39 100%);
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 24px 50px rgba(17, 14, 29, 0.18);
}

.renewal-footer__top,
.renewal-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.renewal-footer__top {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.renewal-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.renewal-footer__brand img {
    width: 32px;
    height: 32px;
}

.renewal-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.renewal-footer__lead {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.56);
}

.renewal-footer__bottom {
    padding-top: 22px;
}

.renewal-footer__meta {
    display: grid;
    gap: 6px;
}

.renewal-footer__meta strong {
    color: #fff;
    font-size: 18px;
}

.renewal-footer__action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.renewal-footer__action::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--renewal-accent);
    box-shadow: 0 0 0 6px rgba(255, 184, 76, 0.14);
}

@media (max-width: 1100px) {
    .renewal-header__bar {
        flex-wrap: wrap;
    }

    .renewal-nav {
        order: 3;
        width: 100%;
        margin-left: 0;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__grid,
    .sub-hero__grid,
    .showcase__inner {
        grid-template-columns: 1fr;
    }

    .kpi-grid,
    .service-grid,
    .process-list,
    .feature-grid,
    .faq-grid,
    .dashboard-grid,
    .detail-grid,
    .device-grid,
    .support-grid,
    .ticket-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 18px;
    }

    .cta-band__panel,
    .renewal-footer__top,
    .renewal-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 780px) {
    .shell {
        width: min(calc(100% - 24px), var(--renewal-shell));
    }

    .renewal-header {
        padding-top: 10px;
    }

    .renewal-header__bar {
        min-height: 72px;
        padding: 12px;
        border-radius: 22px;
    }

    .renewal-header__menu-button {
        display: inline-flex;
        position: relative;
        margin-left: auto;
    }

    .renewal-nav,
    .renewal-header__actions {
        display: none;
        width: 100%;
    }

    .renewal-header.is-open .renewal-nav,
    .renewal-header.is-open .renewal-header__actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
    }

    .renewal-header.is-open .renewal-header__actions {
        gap: 10px;
    }

    .renewal-nav__link,
    .renewal-header__actions .ghost-button,
    .renewal-header__actions .accent-button {
        justify-content: center;
        width: 100%;
    }

    .hero,
    .sub-hero {
        padding-top: 18px;
    }

    .hero__grid,
    .sub-hero__grid,
    .showcase__inner {
        padding: 28px 22px;
    }

    .hero__list,
    .kpi-grid,
    .service-grid,
    .process-list,
    .feature-grid,
    .faq-grid,
    .dashboard-grid,
    .detail-grid,
    .device-grid,
    .support-grid,
    .ticket-grid,
    .device-terminal {
        grid-template-columns: 1fr;
    }

    .mock-form__row,
    .preview-inline-fields,
    .ticket-strip {
        grid-template-columns: 1fr;
    }

    .ticket-strip__item,
    .process-step,
    .surface-card,
    .preview-card,
    .feature-card,
    .stats-card,
    .faq-card,
    .device-card,
    .ticket-card,
    .table-card,
    .comparison-card {
        padding: 22px;
    }

    .section-heading h2,
    .hero__copy h1,
    .sub-hero__copy h1,
    .showcase__copy h2 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .device-card__screen--phones {
        flex-direction: column;
        align-items: center;
    }

    .phone-shell {
        width: 172px;
    }

    .renewal-footer__panel {
        padding: 28px 22px;
        border-radius: 28px;
    }
}

body.renewal-visual-body {
    margin: 0;
    background: #ffffff;
}

.renewal-visual-page {
    background: #ffffff;
}

.renewal-visual-shell {
    width: 100%;
    margin: 0 auto;
}

.renewal-visual-shell--main {
    max-width: 1920px;
}

.renewal-visual-shell--sub {
    max-width: none;
}

.renewal-visual-frame {
    position: relative;
    width: 100%;
}

.renewal-visual-frame picture {
    display: block;
    width: 100%;
}


.renewal-visual-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.renewal-visual-header,
.renewal-visual-footer {
    background: #ffffff;
}

.renewal-main-slider-strip {
    position: relative;
    background: #ffffff;
    aspect-ratio: 1920 / 412;
}

.renewal-main-slider {
    position: absolute;
    left: 18.854167%;
    top: 0;
    z-index: 3;
    width: 62.552083%;
    height: 100%;
}

.renewal-main-slider__viewport {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
    background: #f1f7ff;
}

.renewal-main-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.renewal-main-slider__slide:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 28px;
    height: 28px;
    background: #f7f7f7;
    border-top-left-radius: 28px;
    pointer-events: none;
}

.renewal-main-slider__slide.is-active {
    opacity: 1;
}

body.renewal-modal-open {
    overflow: hidden;
}

.renewal-main-review-panel {
    position: relative;
    z-index: 4;
    width: 100%;
    padding: clamp(74px, 5.4vw, 104px) 0 clamp(82px, 5.7vw, 110px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: clamp(36px, 3vw, 56px);
    isolation: isolate;
}

.renewal-main-review-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, #f4f7fc 0%, #edf4fc 52%, #f3f7fc 100%);
    border-radius: 0;
    pointer-events: none;
}

.renewal-main-review-panel__head {
    display: flex;
    justify-content: flex-start;
    width: min(100%, var(--renewal-review-content-width-rendered, 1200px));
    margin: 0 auto;
    text-align: left;
}

.renewal-main-review-panel__intro strong {
    display: block;
    color: #202534;
    font-size: var(--renewal-review-title-size-rendered, 50px);
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.renewal-main-review-panel__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, var(--renewal-review-content-width-rendered, 1200px));
    margin: 0 auto;
    gap: var(--renewal-review-card-gap-rendered, 24px);
    align-items: start;
}

.renewal-main-review-card {
    position: relative;
    min-width: 0;
    min-height: var(--renewal-review-card-height-rendered, 360px);
    padding: var(--renewal-review-card-padding-rendered, 28px);
    border: 1px solid rgba(90, 100, 126, 0.08);
    border-radius: clamp(18px, 1.45vw, 24px);
    background: #ffffff;
    box-shadow:
        0 12px 24px rgba(46, 52, 74, 0.08),
        0 2px 8px rgba(46, 52, 74, 0.04);
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 1.45vw, 24px);
    overflow: hidden;
}

.renewal-main-review-card::before {
    content: "";
    position: absolute;
    right: -12px;
    top: -12px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(82, 112, 255, 0.12), rgba(126, 73, 195, 0.08));
    pointer-events: none;
}

.renewal-main-review-card__identity {
    display: flex;
    align-items: center;
    gap: 18px;
}

.renewal-main-review-card__identity img {
    width: var(--renewal-review-avatar-size-rendered, 88px);
    height: var(--renewal-review-avatar-size-rendered, 88px);
    flex-shrink: 0;
    padding: 8px;
    border: 1px solid rgba(90, 100, 126, 0.1);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(46, 52, 74, 0.06);
    object-fit: contain;
}

.renewal-main-review-card__identity-copy {
    min-width: 0;
}

.renewal-main-review-card__identity-copy span {
    display: block;
    color: #2d3344;
    font-size: clamp(16px, 0.95vw, 18px);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.renewal-main-review-card__identity-copy small {
    display: block;
    margin-top: 6px;
    color: #7c859b;
    font-size: clamp(13px, 0.78vw, 14px);
}

.renewal-main-review-card__body {
    flex: 1 1 auto;
}

.renewal-main-review-card__body h3 {
    margin: 0;
    color: #202534;
    font-size: clamp(19px, 1.22vw, 22px);
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: -0.03em;
}

.renewal-main-review-card__body p {
    margin: 14px 0 0;
    color: #61697f;
    font-size: clamp(15px, 0.92vw, 16px);
    line-height: 1.7;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.renewal-main-review-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: clamp(112px, 6.8vw, 130px);
    min-height: clamp(36px, 2.3vw, 42px);
    margin-top: auto;
    padding: 0 16px;
    border: 1px solid rgba(90, 100, 126, 0.12);
    border-radius: 999px;
    background: #f6f8fc;
    box-shadow: none;
    color: #3d4963;
    font-size: clamp(11px, 0.76vw, 13px);
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.renewal-main-review-card__button::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.renewal-main-review-card__button:hover {
    background: #eef2f9;
    transform: translateY(-1px);
}

.renewal-main-review-card__button--disabled {
    color: #8b94a8;
    cursor: default;
}

.renewal-main-review-card__button--disabled:hover {
    background: #f6f8fc;
    transform: none;
}

.renewal-main-review-card__button:focus-visible {
    outline: 2px solid rgba(78, 99, 255, 0.6);
    outline-offset: 2px;
}

.renewal-main-inquiry-panel {
    position: relative;
    z-index: 4;
    width: min(62.552083%, 1200px);
    min-width: 0;
    margin: 0 auto;
    padding: clamp(56px, 4.6vw, 88px) clamp(18px, 1.45vw, 28px) clamp(54px, 4.2vw, 80px);
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 1vw, 18px);
}

.renewal-main-inquiry-panel::before {
    content: "";
    position: absolute;
    inset: clamp(132px, 8.7vw, 168px) -18px clamp(46px, 3.3vw, 64px) -18px;
    z-index: -1;
    border-top: 1px solid rgba(64, 44, 117, 0.14);
    border-bottom: 1px solid rgba(64, 44, 117, 0.14);
    background: linear-gradient(180deg, #f7f8fc 0%, #eef2fb 100%);
    pointer-events: none;
}

.renewal-main-inquiry-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.renewal-main-inquiry-panel__intro h2 {
    margin: 0;
    color: #241b38;
    font-size: clamp(18px, 1.45vw, 30px);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.renewal-main-inquiry-panel__intro p {
    margin: 8px 0 0;
    color: #6a607f;
    font-size: clamp(11px, 0.92vw, 16px);
    line-height: 1.5;
}

.renewal-main-inquiry-panel__open {
    flex-shrink: 0;
    min-width: clamp(120px, 8vw, 148px);
    min-height: clamp(44px, 2.7vw, 52px);
    padding: 0 22px;
    border: 1px solid rgba(60, 47, 109, 0.26);
    border-radius: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.52) 0%, rgba(236, 240, 255, 0.88) 100%);
    color: #2f2450;
    font-size: clamp(12px, 0.92vw, 15px);
    font-weight: 800;
    cursor: pointer;
    box-shadow: none;
}

.renewal-main-inquiry-panel__open:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.74) 0%, rgba(230, 236, 255, 0.96) 100%);
}

.renewal-main-inquiry-panel__open:focus-visible {
    outline: 2px solid rgba(78, 99, 255, 0.6);
    outline-offset: 2px;
}

.renewal-main-inquiry-board {
    min-height: 0;
    border-top: 1px solid rgba(89, 68, 145, 0.14);
    border-bottom: 1px solid rgba(89, 68, 145, 0.14);
    border-radius: 0;
    background: #fbfcff;
    overflow: hidden;
}

.renewal-main-inquiry-board__header,
.renewal-main-inquiry-board__item {
    display: grid;
    grid-template-columns: 72px 112px minmax(0, 1.7fr) 110px 116px 100px;
    gap: 12px;
    align-items: center;
}

.renewal-main-inquiry-board__header {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(89, 68, 145, 0.12);
    background: rgba(44, 56, 95, 0.05);
    color: #51486a;
    font-size: 12px;
    font-weight: 800;
}

.renewal-main-inquiry-board__body {
    max-height: clamp(220px, 15.8vw, 304px);
    overflow-y: auto;
}

.renewal-main-inquiry-board__item {
    padding: 14px 18px;
    border-top: 1px solid rgba(89, 68, 145, 0.08);
}

.renewal-main-inquiry-board__item:first-child {
    border-top: 0;
}

.renewal-main-inquiry-board__cell {
    min-width: 0;
    color: #3f3557;
    font-size: clamp(11px, 0.88vw, 14px);
    line-height: 1.45;
}

.renewal-main-inquiry-board__cell--subject strong {
    display: block;
    color: #241b38;
    font-size: clamp(12px, 0.94vw, 15px);
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.renewal-main-inquiry-board__cell--subject p {
    margin: 4px 0 0;
    color: #6a607f;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.renewal-main-inquiry-board__cell--writer,
.renewal-main-inquiry-board__cell--date {
    color: #6a607f;
}

.renewal-main-inquiry-board__cell--status {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(87, 54, 170, 0.22);
    border-radius: 0;
    background: rgba(239, 233, 255, 0.88);
    color: #5736aa;
    font-size: 12px;
    font-weight: 800;
}

.renewal-main-inquiry-board__cell--status.is-complete {
    border-color: rgba(13, 138, 98, 0.2);
    background: rgba(230, 255, 245, 0.92);
    color: #0d8a62;
}

.renewal-main-inquiry-board__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    color: #6a607f;
    font-size: clamp(12px, 0.92vw, 15px);
    font-weight: 700;
}

.renewal-main-inquiry-modal[hidden] {
    display: none;
}

.renewal-main-inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
}

.renewal-main-inquiry-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(18, 13, 31, 0.62);
    cursor: pointer;
}

.renewal-main-inquiry-modal__dialog {
    position: relative;
    width: min(700px, calc(100% - 24px));
    max-height: min(90vh, 860px);
    margin: max(40px, 5vh) auto 0;
    padding: clamp(24px, 2vw, 34px);
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 28px 60px rgba(16, 12, 30, 0.28);
    overflow-y: auto;
}

.renewal-main-inquiry-modal__close {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 0;
    background: rgba(79, 59, 135, 0.08);
    color: #352b4f;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.renewal-main-inquiry-modal__intro strong {
    display: block;
    color: #241b38;
    font-size: clamp(22px, 1.6vw, 30px);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.renewal-main-inquiry-modal__intro p {
    margin: 10px 0 0;
    color: #6a607f;
    font-size: clamp(12px, 0.95vw, 15px);
    line-height: 1.6;
}

.renewal-main-inquiry-form {
    margin-top: clamp(18px, 1.3vw, 24px);
}

.renewal-main-inquiry-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.renewal-main-inquiry-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.renewal-main-inquiry-form__field span {
    color: #352b4f;
    font-size: clamp(11px, 0.9vw, 14px);
    font-weight: 700;
}

.renewal-main-inquiry-form__field input,
.renewal-main-inquiry-form__field select,
.renewal-main-inquiry-form__field textarea {
    width: 100%;
    border: 1px solid rgba(89, 68, 145, 0.14);
    border-radius: 0;
    background: #fbfaff;
    color: #241b38;
}

.renewal-main-inquiry-form__field input,
.renewal-main-inquiry-form__field select {
    min-height: clamp(40px, 2.5vw, 50px);
    padding: 0 14px;
    font-size: clamp(12px, 0.92vw, 15px);
}

.renewal-main-inquiry-form__field textarea {
    padding: 14px;
    font-size: clamp(12px, 0.92vw, 15px);
    line-height: 1.6;
    resize: vertical;
}

.renewal-main-inquiry-form__field--full {
    grid-column: 1 / -1;
}

.renewal-main-inquiry-form > .renewal-main-inquiry-form__field--full {
    margin-top: 14px;
}


.renewal-main-inquiry-form__captcha {
    margin-top: 14px;
}

.renewal-main-inquiry-form__captcha-row {
    display: grid;
    grid-template-columns: minmax(104px, 0.8fr) minmax(96px, 1fr) auto;
    gap: 8px;
    align-items: center;
}

.renewal-main-inquiry-form__captcha-row strong {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(40px, 2.5vw, 50px);
    border: 1px solid rgba(89, 68, 145, 0.18);
    background: #f1eefb;
    color: #352b4f;
    font-size: clamp(13px, 0.95vw, 16px);
    font-weight: 900;
}

.renewal-main-inquiry-form__captcha-row button {
    min-height: clamp(40px, 2.5vw, 50px);
    padding: 0 14px;
    border: 1px solid rgba(89, 68, 145, 0.2);
    background: #ffffff;
    color: #4f3b87;
    font-size: clamp(11px, 0.82vw, 13px);
    font-weight: 800;
    cursor: pointer;
}

.renewal-main-inquiry-form__captcha-row button:disabled {
    cursor: default;
    opacity: 0.65;
}

.renewal-main-inquiry-form__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
}

.renewal-main-inquiry-form__agree {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5d5471;
    font-size: clamp(11px, 0.88vw, 14px);
}

.renewal-main-inquiry-form__footer > a {
    color: #4f3b87;
    font-size: clamp(11px, 0.88vw, 14px);
    font-weight: 700;
    text-decoration: underline;
}

.renewal-main-inquiry-form__submit {
    margin-left: auto;
    min-width: clamp(112px, 8vw, 144px);
    min-height: clamp(40px, 2.5vw, 50px);
    padding: 0 20px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(135deg, #6d3ed1 0%, #4e63ff 100%);
    color: #ffffff;
    font-size: clamp(12px, 0.92vw, 15px);
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(78, 99, 255, 0.24);
}

.renewal-main-inquiry-form__submit:disabled {
    cursor: default;
    opacity: 0.7;
}

.renewal-main-inquiry-form__feedback {
    margin: 12px 0 0;
    padding: 12px 14px;
    border-radius: 0;
    font-size: clamp(11px, 0.92vw, 14px);
    font-weight: 700;
}

.renewal-main-inquiry-form__feedback.is-success {
    background: #e9fff6;
    color: #127a57;
}

.renewal-main-inquiry-form__feedback.is-error {
    background: #fff0f0;
    color: #b54747;
}

.renewal-main-slider__slide img {
    position: absolute;
    left: -2px;
    top: -1px;
    display: block;
    width: calc(100% + 4px);
    height: calc(100% + 2px);
    max-width: none;
}

.renewal-main-slider__tabs {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 4;
    width: 25.145712%;
    height: 100%;
}

.renewal-main-slider__tab {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.renewal-main-slider__tab.is-active {
    cursor: default;
}

.renewal-main-slider__tab:focus-visible {
    outline: 2px solid #ffce3a;
    outline-offset: -2px;
    border-radius: 8px;
}

.renewal-a11y-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.renewal-hotspot {
    position: absolute;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
    white-space: nowrap;
    z-index: 2;
}

.renewal-hotspot:focus-visible {
    outline: 2px solid #ffce3a;
    outline-offset: 2px;
}

.renewal-visual-frame--header-main .renewal-hotspot--logo {
    left: 18.2%;
    top: 12%;
    width: 8.8%;
    height: 40%;
}

.renewal-visual-frame--header-sub .renewal-hotspot--logo {
    left: 9.7672%;
    top: 11%;
    width: 10.1828%;
    height: 36%;
}

.renewal-visual-frame--header-sub .renewal-dropdown--service {
    left: 58.5512%;
    width: 4.9875%;
}

.renewal-visual-frame--header-sub .renewal-hotspot--inquiry {
    left: 63.6945%;
    width: 8.5203%;
}

.renewal-visual-frame--header-sub .renewal-hotspot--login {
    left: 72.8902%;
    width: 5.0914%;
}

.renewal-visual-frame--header-sub .renewal-hotspot--signup {
    left: 78.1375%;
    width: 8.9359%;
}

.renewal-visual-frame--header-sub .renewal-hotspot--youtube {
    left: 56.3172%;
    width: 6.8578%;
}

.renewal-visual-frame--header-sub .renewal-hotspot--blog {
    left: 63.3828%;
    width: 7.0656%;
}

.renewal-visual-frame--header-sub .renewal-hotspot--kakao {
    left: 70.4484%;
    width: 7.0656%;
}

.renewal-visual-frame--header-sub .renewal-hotspot--app {
    left: 77.5141%;
    width: 7.2734%;
}

.renewal-dropdown {
    position: absolute;
    z-index: 5;
}

.renewal-dropdown.is-open::after,
.renewal-dropdown:hover::after,
.renewal-dropdown:focus-within::after {
    content: "";
    position: absolute;
    left: -14px;
    top: 100%;
    width: 268px;
    height: 16px;
}

.renewal-dropdown--service {
    left: 56.35%;
    top: 11%;
    width: 4.8%;
    height: 34%;
}

.renewal-dropdown__trigger {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: transparent;
    cursor: pointer;
}

.renewal-dropdown__panel {
    position: absolute;
    left: -10px;
    top: calc(100% + 12px);
    display: none;
    width: 240px;
    padding: 8px 0;
    background: #ffffff;
    border: 1px solid #ccc;
    box-shadow: 0 14px 28px rgba(20, 16, 36, 0.14);
}

.renewal-dropdown.is-open .renewal-dropdown__panel,
.renewal-dropdown:hover .renewal-dropdown__panel,
.renewal-dropdown:focus-within .renewal-dropdown__panel {
    display: block;
}

.renewal-dropdown__item {
    display: block;
    min-height: 35px;
    padding: 0 16px;
    color: #2b2b2b;
    font-size: 16px;
    font-weight: 500;
    line-height: 35px;
}

.renewal-dropdown__item:hover,
.renewal-dropdown__item.is-current {
    background: #f4edff;
    color: #663399;
}

.renewal-hotspot--inquiry {
    left: 61.3%;
    top: 14%;
    width: 8.2%;
    height: 30%;
}

.renewal-hotspot--login {
    left: 70.15%;
    top: 14%;
    width: 4.9%;
    height: 30%;
}

.renewal-hotspot--signup {
    left: 75.2%;
    top: 7%;
    width: 8.6%;
    height: 42%;
}

.renewal-hotspot--youtube {
    left: 54.2%;
    top: 70%;
    width: 6.6%;
    height: 26%;
}

.renewal-hotspot--blog {
    left: 61%;
    top: 70%;
    width: 6.8%;
    height: 26%;
}

.renewal-hotspot--kakao {
    left: 67.8%;
    top: 70%;
    width: 6.8%;
    height: 26%;
}

.renewal-hotspot--app {
    left: 74.6%;
    top: 70%;
    width: 7%;
    height: 26%;
}

.renewal-hotspot--footer-company {
    left: 54.4469%;
    top: 12%;
    width: 5.7148%;
    height: 12%;
}

.renewal-hotspot--footer-agreement {
    left: 61.6164%;
    top: 12%;
    width: 7.4813%;
    height: 12%;
}

.renewal-hotspot--footer-provision {
    left: 70.3445%;
    top: 12%;
    width: 9.5594%;
    height: 12%;
}

.renewal-hotspot--footer-marketing {
    left: 81.2547%;
    top: 12%;
    width: 12.0531%;
    height: 12%;
}

.renewal-hotspot--footer-kakao {
    left: 77.0984%;
    top: 63%;
    width: 12.8844%;
    height: 16%;
}

.renewal-local-footer {
    width: 100%;
    padding: 0;
    background: #3b3b3b;
}

.renewal-local-footer__inner {
    width: min(calc(100% - 48px), 1200px);
    margin: 0 auto;
    padding: 38px 0 42px;
}

.renewal-local-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.renewal-local-footer__brand img {
    width: 34px;
    height: 34px;
}

.renewal-local-footer__brand span {
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.renewal-local-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 18px;
}

.renewal-local-footer__lead {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.renewal-local-footer__links {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8f8f8f;
    font-size: 15px;
    white-space: nowrap;
}

.renewal-local-footer__links a {
    color: #8f8f8f;
}

.renewal-local-footer__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-top: 26px;
}

.renewal-local-footer__meta {
    color: #9a9a9a;
    font-size: 15px;
    line-height: 1.9;
}

.renewal-local-footer__support {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.renewal-local-footer__support strong {
    color: #999999;
    font-size: 18px;
    font-weight: 800;
}

.renewal-local-footer__support a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 168px;
    min-height: 44px;
    padding: 0 18px 0 52px;
    border: 1px solid #6b6b6b;
    border-radius: 999px;
    background-image: url(/assets/img/new/footer_kakao_icon.png);
    background-repeat: no-repeat;
    background-position: 14px center;
    background-size: 24px 24px;
    color: #d3d3d3;
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 1280px) {
    .renewal-main-inquiry-board__header,
    .renewal-main-inquiry-board__item {
        grid-template-columns: 60px 92px minmax(0, 1.4fr) 90px 96px 88px;
    }

    .renewal-main-inquiry-form__footer {
        flex-wrap: wrap;
    }

    .renewal-local-footer__top,
    .renewal-local-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .renewal-local-footer__links {
        flex-wrap: wrap;
        white-space: normal;
    }

    .renewal-local-footer__support {
        align-items: flex-start;
    }
}

@media (max-width: 960px) {
    .renewal-main-review-panel {
        left: 0;
        right: 0;
        padding: 24px 0 18px;
        gap: 20px;
    }

    .renewal-main-review-panel::before {
        inset: 0;
        border-radius: 0;
    }

    .renewal-main-review-panel__intro strong {
        font-size: max(22px, var(--renewal-review-title-size-rendered, 22px));
    }

    .renewal-main-review-panel__cards {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        width: calc(100% - 36px);
        padding: 0 18px 6px;
        scrollbar-width: thin;
    }

    .renewal-main-review-card {
        flex: 0 0 232px;
        min-height: max(240px, calc(var(--renewal-review-card-height-rendered, 300px) * 0.72));
        padding: 16px 14px;
        gap: 12px;
        border-radius: 18px;
        box-shadow: 0 14px 24px rgba(45, 34, 82, 0.08);
    }

    .renewal-main-review-card::before {
        right: -20px;
        top: -20px;
        width: 82px;
        height: 82px;
    }

    .renewal-main-review-card__identity img {
        width: 58px;
    }

    .renewal-main-review-card__body h3 {
        font-size: 15px;
    }

    .renewal-main-review-card__body p {
        margin-top: 10px;
        font-size: 12px;
        line-height: 1.6;
    }

    .renewal-main-review-card__button {
        min-width: 118px;
        min-height: 40px;
    }

    .renewal-main-inquiry-panel {
        position: static;
        width: min(calc(100% - 32px), 760px);
        height: auto;
        margin: 18px auto 0;
        background: linear-gradient(180deg, #f7f8fc 0%, #eef2fb 100%);
    }

    .renewal-main-inquiry-panel::before {
        inset: 0;
        border-top: 1px solid rgba(64, 44, 117, 0.14);
        border-bottom: 1px solid rgba(64, 44, 117, 0.14);
        background-image: linear-gradient(180deg, #f7f8fc 0%, #eef2fb 100%);
        background-size: auto;
        background-position: 0 0;
    }

    .renewal-main-inquiry-panel__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .renewal-main-inquiry-panel__open {
        width: 100%;
    }

    .renewal-main-inquiry-board__header {
        display: none;
    }

    .renewal-main-inquiry-board__body {
        height: auto;
        max-height: 360px;
    }

    .renewal-main-inquiry-board__item {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 14px;
        align-items: flex-start;
    }

    .renewal-main-inquiry-board__cell--number {
        display: none;
    }

    .renewal-main-inquiry-board__cell--category {
        order: 1;
    }

    .renewal-main-inquiry-board__cell--writer {
        order: 2;
        justify-self: end;
    }

    .renewal-main-inquiry-board__cell--subject {
        order: 3;
        grid-column: 1 / -1;
    }

    .renewal-main-inquiry-board__cell--date {
        order: 4;
    }

    .renewal-main-inquiry-board__cell--status {
        order: 5;
        justify-self: end;
    }

    .renewal-main-inquiry-form__grid {
        grid-template-columns: 1fr;
    }

    .renewal-main-inquiry-modal__dialog {
        margin-top: 16px;
        border-radius: 24px;
    }

    .renewal-main-inquiry-form__footer {
        align-items: flex-start;
    }

    .renewal-main-inquiry-form__captcha-row {
        grid-template-columns: 1fr;
    }

    .renewal-main-inquiry-form__submit {
        width: 100%;
        margin-left: 0;
    }
}

/* 2026-06-09 추가: 사용안내 랜딩 */
.renewal-guide-page {
    background: #f7f4ff;
    padding: 36px 0 72px;
}

.renewal-guide-shell {
    width: min(calc(100% - 120px), 860px);
    margin: 0 auto;
}

.renewal-guide-section {
    margin: 0 0 30px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(30, 24, 48, 0.08);
}

.renewal-guide-section img {
    display: block;
    width: 100%;
    height: auto;
}

/* 서비스 가입 버튼은 px 고정이 아니라 이미지 원본(1920x11078) 기준 비율 좌표로 잡습니다. */
.renewal-visual-frame--join-cta .renewal-main-join-hotspot {
    position: absolute;
    left: 40.35%;
    top: 98.05%;
    width: 19.35%;
    height: 0.82%;
    transform: none;
    overflow: hidden;
    text-indent: -9999px;
    white-space: nowrap;
    z-index: 3;
}

.renewal-hotspot--inquiry::before {
    content: "";
    position: absolute;
    inset: -8px -10px;
    z-index: 1;
}

.renewal-hotspot--inquiry::after {
    content: "";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: clamp(11px, 1vw, 17px);
    font-weight: 800;
    letter-spacing: -0.04em;
    text-indent: 0;
    z-index: 2;
}

/* 2026-06-13 추가: 모바일 메인 PSD 시안 적용 + 헤더/하단 CTA 퍼블리싱 + 1:1문의/고객후기 퍼블리싱 */
body.renewal-main-page .renewal-mobile-main {
    display: none;
}

body.renewal-main-page .renewal-desktop-main {
    display: block;
}

body.renewal-main-page .renewal-mobile-image {
    position: relative;
    width: 100%;
}

body.renewal-main-page .renewal-mobile-image img {
    display: block;
    width: 100%;
    height: auto;
}

body.renewal-main-page .renewal-mobile-hotspot {
    position: absolute;
    z-index: 3;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
    white-space: nowrap;
}

body.renewal-main-page .renewal-mobile-hotspot:focus-visible {
    outline: 2px solid #ffce3a;
    outline-offset: 2px;
}

@media (max-width: 960px) {
    body.renewal-main-page {
        margin: 0;
        background: #ffffff;
        overflow-x: hidden;
        font-family: "Pretendard", "Noto Sans KR", sans-serif;
    }

    body.renewal-main-page .renewal-visual-header,
    body.renewal-main-page .renewal-local-footer {
        display: none;
    }

    body.renewal-main-page .renewal-desktop-main {
        display: none;
    }

    body.renewal-main-page .renewal-visual-page {
        background: #ffffff;
    }

    body.renewal-main-page .renewal-mobile-main {
        display: block;
        width: 100%;
        max-width: 730px;
        margin: 0 auto;
        background: #ffffff;
        color: #111111;
        overflow: hidden;
    }

    body.renewal-main-page .renewal-mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: clamp(44px, 10.96vw, 80px);
        padding: 0 6.16%;
        box-sizing: border-box;
        background: #ffffff;
    }

    body.renewal-main-page .renewal-mobile-header__logo {
        display: inline-flex;
        align-items: center;
        flex: 0 0 auto;
        text-decoration: none;
    }

    body.renewal-main-page .renewal-mobile-header__logo img {
        display: block;
        width: clamp(104px, 20.14vw, 147px);
        height: auto;
    }

    body.renewal-main-page .renewal-mobile-header__nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(22px, 4.1vw, 30px);
        flex: 0 0 auto;
    }

    body.renewal-main-page .renewal-mobile-header__login,
    body.renewal-main-page .renewal-mobile-header__signup {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: inherit;
        line-height: 1;
        font-weight: 700;
        letter-spacing: -0.04em;
        text-decoration: none;
        white-space: nowrap;
    }

    body.renewal-main-page .renewal-mobile-header__login {
        color: #9a9a9a;
        font-size: clamp(10px, 1.92vw, 14px);
    }

    body.renewal-main-page .renewal-mobile-header__signup {
        min-width: clamp(66px, 16.58vw, 121px);
        min-height: clamp(24px, 5.48vw, 40px);
        padding: 0 clamp(12px, 2.74vw, 20px);
        border-radius: 999px;
        background: #6d34a8;
        color: #ffffff;
        font-size: clamp(10px, 2.05vw, 15px);
        box-sizing: border-box;
    }

    body.renewal-main-page .renewal-mobile-header a:focus-visible {
        outline: 2px solid #ffce3a;
        outline-offset: 2px;
    }

    .renewal-mobile-service-tabs {
        padding: 0 0 clamp(52px, 9.6vw, 70px);
        background: #ffffff;
    }

    .renewal-mobile-service-tabs__nav-scroll {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .renewal-mobile-service-tabs__nav-scroll::-webkit-scrollbar {
        display: none;
    }

    .renewal-mobile-service-tabs__nav {
        display: flex;
        align-items: stretch;
        width: max-content;
        min-width: 100%;
        padding: 0 clamp(45px, 8.5vw, 62px);
    }

    .renewal-mobile-service-tabs__tab {
        flex: 0 0 clamp(154px, 27.95vw, 204px);
        min-height: clamp(118px, 20.4vw, 149px);
        padding: 0 clamp(14px, 2.6vw, 19px);
        border: 0;
        border-right: 1px solid #d7d7d7;
        background: #f7f7f7;
        color: #5f5f5f;
        font: inherit;
        font-size: clamp(20px, 3.7vw, 27px);
        line-height: 1.25;
        font-weight: 600;
        letter-spacing: -0.055em;
        text-align: center;
        word-break: keep-all;
        cursor: pointer;
    }

    .renewal-mobile-service-tabs__tab.is-active {
        background: #5574ee;
        color: #ffffff;
        font-weight: 800;
    }

    .renewal-mobile-service-tabs__tab:first-child {
        border-radius: clamp(16px, 3vw, 22px) 0 0 clamp(16px, 3vw, 22px);
    }

    .renewal-mobile-service-tabs__tab:last-child {
        border-radius: 0 clamp(16px, 3vw, 22px) clamp(16px, 3vw, 22px) 0;
    }

    .renewal-mobile-service-tabs__viewport {
        position: relative;
        margin: clamp(30px, 5.75vw, 42px) clamp(42px, 7.75vw, 57px) 0;
    }

    .renewal-mobile-service-tabs__slide {
        display: none;
    }

    .renewal-mobile-service-tabs__slide.is-active {
        display: block;
    }

    .renewal-mobile-service-tabs__slide img {
        display: block;
        width: 100%;
        height: auto;
    }

    .renewal-mobile-service-tabs__cta {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: clamp(84px, 14.65vw, 107px);
        margin: clamp(30px, 5.75vw, 42px) clamp(42px, 7.75vw, 57px) 0;
        border-radius: 999px;
        background: #000000;
        color: #ffffff;
        text-align: center;
        font-size: clamp(22px, 4.2vw, 31px);
        line-height: 1;
        font-weight: 800;
        letter-spacing: -0.055em;
        text-decoration: none;
    }

    .renewal-mobile-scroll-image {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        line-height: 0;
        scrollbar-width: none;
    }

    .renewal-mobile-scroll-image::-webkit-scrollbar {
        display: none;
    }

    .renewal-mobile-scroll-image img {
        display: block;
        max-width: none;
        height: auto;
    }

    .renewal-mobile-scroll-image--lavender {
        background: #fbe6ff;
    }

    .renewal-mobile-scroll-image--lavender img {
        width: 168.493%;
    }

    .renewal-mobile-scroll-image--purple {
        background: #763c8d;
    }

    .renewal-mobile-scroll-image--purple img {
        width: 384.932%;
    }

    .renewal-mobile-final-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        height: 73.29vw;
        min-height: 264px;
        max-height: 535px;
        margin: 0 clamp(3px, 0.68vw, 5px);
        padding: clamp(54px, 14.93vw, 109px) clamp(22px, 6.16vw, 45px) 0;
        box-sizing: border-box;
        background: #2e67fb;
        text-align: center;
    }

    .renewal-mobile-final-cta p {
        margin: 0;
        color: #ffffff;
        font-size: clamp(23px, 6.16vw, 45px);
        line-height: 1.42;
        font-weight: 900;
        letter-spacing: -0.07em;
        word-break: keep-all;
    }

    .renewal-mobile-final-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50.96%;
        max-width: 372px;
        min-height: clamp(41px, 11.5vw, 84px);
        margin-top: clamp(18px, 4.93vw, 36px);
        border-radius: clamp(6px, 1.55vw, 11px);
        background: #ffffff;
        color: #2e67fb;
        font-size: clamp(17px, 4.25vw, 31px);
        line-height: 1;
        font-weight: 900;
        letter-spacing: -0.055em;
        text-decoration: none;
    }

    .renewal-mobile-final-cta a:focus-visible {
        outline: 2px solid #ffce3a;
        outline-offset: 3px;
    }

    .renewal-mobile-inquiry {
        padding: clamp(78px, 14.8vw, 108px) clamp(34px, 6.16vw, 45px) clamp(88px, 15vw, 110px);
        background: #ffffff;
    }

    .renewal-mobile-inquiry__head {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: clamp(30px, 5.2vw, 38px);
        border-bottom: 2px solid #111111;
    }

    .renewal-mobile-inquiry__head h2 {
        margin: 0;
        color: #101010;
        font-size: clamp(30px, 5.75vw, 42px);
        line-height: 1.18;
        font-weight: 800;
        letter-spacing: -0.05em;
    }

    .renewal-mobile-inquiry__open {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-58%);
        min-height: clamp(32px, 6.0vw, 44px);
        padding: 0 clamp(12px, 2.4vw, 18px);
        border: 0;
        border-radius: 999px;
        background: #111111;
        color: #ffffff;
        font: inherit;
        font-size: clamp(13px, 2.55vw, 19px);
        line-height: 1;
        font-weight: 800;
        letter-spacing: -0.04em;
        cursor: pointer;
        white-space: nowrap;
    }

    .renewal-mobile-inquiry__open:focus-visible {
        outline: 2px solid #ffce3a;
        outline-offset: 2px;
    }

    .renewal-mobile-inquiry__list {
        border-bottom: 2px solid #111111;
    }

    .renewal-mobile-inquiry__item {
        position: relative;
        min-height: clamp(120px, 19.7vw, 144px);
        padding: clamp(28px, 5.2vw, 38px) clamp(98px, 16.8vw, 122px) clamp(26px, 4.8vw, 35px) 0;
        border-bottom: 1px solid #dddddd;
    }

    .renewal-mobile-inquiry__item:last-child {
        border-bottom: 0;
    }

    .renewal-mobile-inquiry__meta {
        display: flex;
        align-items: center;
        gap: clamp(18px, 3.4vw, 25px);
        min-width: 0;
    }

    .renewal-mobile-inquiry__meta strong {
        flex-shrink: 0;
        color: #111111;
        font-size: clamp(19px, 3.43vw, 25px);
        line-height: 1.2;
        font-weight: 700;
        letter-spacing: -0.04em;
    }

    .renewal-mobile-inquiry__meta time {
        color: #888888;
        font-size: clamp(18px, 3.3vw, 24px);
        line-height: 1.2;
        font-weight: 500;
        letter-spacing: -0.04em;
    }

    .renewal-mobile-inquiry__item p {
        display: -webkit-box;
        margin: clamp(8px, 1.8vw, 13px) 0 0;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        color: #111111;
        font-size: clamp(18px, 3.29vw, 24px);
        line-height: 1.36;
        font-weight: 600;
        letter-spacing: -0.055em;
    }

    .renewal-mobile-inquiry__status {
        position: absolute;
        right: 0;
        top: clamp(32px, 5.5vw, 40px);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: clamp(76px, 12.8vw, 94px);
        min-height: clamp(34px, 5.75vw, 42px);
        padding: 0 clamp(8px, 1.8vw, 13px);
        border-radius: 5px;
        background: #eeeeee;
        color: #111111;
        font-size: clamp(16px, 3.0vw, 22px);
        line-height: 1;
        font-weight: 700;
        letter-spacing: -0.04em;
    }

    .renewal-mobile-inquiry__status.is-complete {
        background: #e9efff;
        color: #3f67f4;
    }

    .renewal-mobile-inquiry__empty {
        margin: 0;
        padding: clamp(48px, 9vw, 66px) 0;
        color: #777777;
        text-align: center;
        font-size: clamp(17px, 3.1vw, 23px);
        font-weight: 600;
        letter-spacing: -0.04em;
    }

    .renewal-mobile-inquiry .renewal-main-inquiry-modal__dialog {
        width: calc(100% - clamp(28px, 7.4vw, 54px));
        max-width: 660px;
        max-height: calc(100vh - 32px);
        margin: 16px auto 0;
        padding: clamp(24px, 6.2vw, 45px);
        border-radius: clamp(18px, 4.1vw, 30px);
        box-sizing: border-box;
        box-shadow: 0 26px 52px rgba(16, 12, 30, 0.3);
    }

    .renewal-mobile-inquiry .renewal-main-inquiry-modal__close {
        right: clamp(14px, 3.4vw, 25px);
        top: clamp(14px, 3.4vw, 25px);
        width: clamp(34px, 8vw, 58px);
        height: clamp(34px, 8vw, 58px);
        border-radius: 50%;
        background: #f3efff;
        color: #5736aa;
        font-size: clamp(24px, 6.0vw, 44px);
    }

    .renewal-mobile-inquiry .renewal-main-inquiry-modal__intro {
        padding-right: clamp(44px, 10vw, 73px);
    }

    .renewal-mobile-inquiry .renewal-main-inquiry-modal__intro strong {
        font-size: clamp(24px, 5.75vw, 42px);
        line-height: 1.2;
    }

    .renewal-mobile-inquiry .renewal-main-inquiry-modal__intro p {
        margin-top: clamp(8px, 2vw, 15px);
        font-size: clamp(13px, 3.1vw, 23px);
        line-height: 1.5;
        word-break: keep-all;
    }

    .renewal-mobile-inquiry .renewal-main-inquiry-form {
        margin-top: clamp(20px, 5vw, 36px);
    }

    .renewal-mobile-inquiry .renewal-main-inquiry-form__grid {
        grid-template-columns: 1fr;
        gap: clamp(12px, 3vw, 22px);
    }

    .renewal-mobile-inquiry .renewal-main-inquiry-form__field {
        gap: clamp(6px, 1.6vw, 12px);
    }

    .renewal-mobile-inquiry .renewal-main-inquiry-form__field span {
        font-size: clamp(13px, 3.1vw, 23px);
    }

    .renewal-mobile-inquiry .renewal-main-inquiry-form__field input,
    .renewal-mobile-inquiry .renewal-main-inquiry-form__field select {
        min-height: clamp(44px, 10.95vw, 80px);
        padding: 0 clamp(13px, 3.3vw, 24px);
        font-size: clamp(14px, 3.3vw, 24px);
    }

    .renewal-mobile-inquiry .renewal-main-inquiry-form__field textarea {
        min-height: clamp(120px, 29vw, 212px);
        padding: clamp(13px, 3.3vw, 24px);
        font-size: clamp(14px, 3.3vw, 24px);
        line-height: 1.55;
    }

    .renewal-mobile-inquiry .renewal-main-inquiry-form > .renewal-main-inquiry-form__field--full {
        margin-top: clamp(12px, 3vw, 22px);
    }

    .renewal-mobile-inquiry .renewal-main-inquiry-form__footer {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: clamp(10px, 2.6vw, 19px);
        margin-top: clamp(16px, 4.1vw, 30px);
    }

    .renewal-mobile-inquiry .renewal-main-inquiry-form__agree {
        align-items: flex-start;
        font-size: clamp(12px, 2.85vw, 21px);
        line-height: 1.4;
    }

    .renewal-mobile-inquiry .renewal-main-inquiry-form__footer > a {
        font-size: clamp(12px, 2.85vw, 21px);
    }

    .renewal-mobile-inquiry .renewal-main-inquiry-form__submit {
        grid-column: 1 / -1;
        width: 100%;
        min-height: clamp(48px, 11.5vw, 84px);
        margin-left: 0;
        border-radius: 999px;
        font-size: clamp(16px, 3.7vw, 27px);
    }

    .renewal-mobile-inquiry .renewal-main-inquiry-form__feedback {
        font-size: clamp(12px, 2.85vw, 21px);
    }

    .renewal-mobile-review {
        padding: clamp(76px, 14.4vw, 105px) clamp(34px, 6.16vw, 45px) clamp(70px, 13vw, 95px);
        background: #ffffff;
    }

    .renewal-mobile-review h2 {
        margin: 0 0 clamp(35px, 6.7vw, 49px);
        color: #111111;
        text-align: center;
        font-size: clamp(30px, 5.75vw, 42px);
        line-height: 1.18;
        font-weight: 800;
        letter-spacing: -0.05em;
    }

    .renewal-mobile-review__cards {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 3.0vw, 22px);
    }

    .renewal-mobile-review-card {
        display: grid;
        grid-template-columns: clamp(72px, 13.7vw, 100px) minmax(0, 1fr);
        column-gap: clamp(22px, 4.1vw, 30px);
        row-gap: clamp(24px, 4.9vw, 36px);
        min-height: clamp(225px, 39vw, 285px);
        padding: clamp(45px, 7.8vw, 57px) clamp(34px, 6.16vw, 45px) clamp(36px, 6.6vw, 48px);
        border: 1px solid #d4d4d4;
        border-radius: clamp(15px, 3.0vw, 22px);
        background: #ffffff;
    }

    .renewal-mobile-review-card__avatar {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: clamp(72px, 13.7vw, 100px);
        height: clamp(72px, 13.7vw, 100px);
        overflow: hidden;
        border-radius: 50%;
        background: #f1f1f1;
    }

    .renewal-mobile-review-card__avatar img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .renewal-mobile-review-card__body {
        align-self: start;
        min-width: 0;
    }

    .renewal-mobile-review-card__body strong {
        display: block;
        margin: 0 0 clamp(3px, 0.8vw, 6px);
        color: #111111;
        font-size: clamp(18px, 3.3vw, 24px);
        line-height: 1.25;
        font-weight: 800;
        letter-spacing: -0.045em;
    }

    .renewal-mobile-review-card__body small {
        display: block;
        margin: 0 0 clamp(8px, 1.8vw, 13px);
        color: #999999;
        font-size: clamp(13px, 2.35vw, 17px);
        line-height: 1.25;
        font-weight: 500;
        letter-spacing: -0.035em;
    }

    .renewal-mobile-review-card__body p {
        display: -webkit-box;
        margin: 0;
        overflow: hidden;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        color: #666666;
        font-size: clamp(17px, 3.05vw, 22px);
        line-height: 1.42;
        font-weight: 500;
        letter-spacing: -0.045em;
    }

    .renewal-mobile-review-card__button {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: clamp(58px, 10.95vw, 80px);
        border: 1px solid #111111;
        border-radius: 999px;
        background: #ffffff;
        color: #111111;
        text-align: center;
        font-size: clamp(18px, 3.43vw, 25px);
        line-height: 1;
        font-weight: 800;
        letter-spacing: -0.04em;
        text-decoration: none;
    }

    .renewal-mobile-review-card__button--disabled {
        color: #777777;
        border-color: #aaaaaa;
    }
}


/* 2026-06-17 추가: 모바일 헤더 채널 메뉴 및 모바일 푸터 적용 */
@media (max-width: 960px) {
    body.renewal-main-page .renewal-mobile-header {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        height: auto;
        padding: 0;
        background: #ffffff;
    }

    body.renewal-main-page .renewal-mobile-header__primary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: clamp(42px, 10.95vw, 80px);
        padding: 0 4.8%;
        box-sizing: border-box;
        background: #ffffff;
    }

    body.renewal-main-page .renewal-mobile-header__logo img {
        width: clamp(88px, 20.14vw, 147px);
        max-width: 28vw;
        height: auto;
    }

    body.renewal-main-page .renewal-mobile-header__nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(7px, 1.75vw, 13px);
        min-width: 0;
        flex: 1 1 auto;
        margin-left: clamp(8px, 2.2vw, 16px);
    }

    body.renewal-main-page .renewal-mobile-header__text-link,
    body.renewal-main-page .renewal-mobile-header__login,
    body.renewal-main-page .renewal-mobile-header__signup {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: inherit;
        line-height: 1;
        font-weight: 800;
        letter-spacing: -0.05em;
        text-decoration: none;
        white-space: nowrap;
    }

    body.renewal-main-page .renewal-mobile-header__text-link,
    body.renewal-main-page .renewal-mobile-header__login {
        color: #333333;
        font-size: clamp(9px, 2.0vw, 15px);
    }

    body.renewal-main-page .renewal-mobile-header__signup {
        min-width: clamp(58px, 15.8vw, 115px);
        min-height: clamp(24px, 5.48vw, 40px);
        padding: 0 clamp(10px, 2.3vw, 17px);
        border-radius: 999px;
        background: #6d34a8;
        color: #ffffff;
        font-size: clamp(9px, 2.05vw, 15px);
        box-sizing: border-box;
    }

    body.renewal-main-page .renewal-mobile-header__channels {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: center;
        width: 100%;
        min-height: clamp(34px, 9.25vw, 68px);
        padding: 0 3.7%;
        box-sizing: border-box;
        background: #fff4ff;
        border-top: 1px solid #f2dff7;
        border-bottom: 1px solid #e4d0ea;
    }

    body.renewal-main-page .renewal-mobile-header__channel {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: clamp(3px, 0.82vw, 6px);
        min-width: 0;
        color: #333333;
        font-size: clamp(8px, 1.75vw, 13px);
        line-height: 1;
        font-weight: 800;
        letter-spacing: -0.07em;
        text-decoration: none;
        white-space: nowrap;
    }

    body.renewal-main-page .renewal-mobile-header__channel span:last-child {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    body.renewal-main-page .renewal-mobile-header__channel-icon {
        flex: 0 0 auto;
        display: inline-block;
        width: clamp(15px, 4.1vw, 30px);
        height: clamp(15px, 4.1vw, 30px);
        border-radius: 50%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    body.renewal-main-page .renewal-mobile-header__channel--youtube .renewal-mobile-header__channel-icon {
        background-image: url(/assets/img/new/youtube.png);
    }

    body.renewal-main-page .renewal-mobile-header__channel--blog .renewal-mobile-header__channel-icon {
        background-image: url(/assets/img/new/naver_blog_icon.png);
    }

    body.renewal-main-page .renewal-mobile-header__channel--kakao .renewal-mobile-header__channel-icon {
        background-image: url(/assets/img/new/kakao_channel_icon.png);
    }

    body.renewal-main-page .renewal-mobile-header__channel--instagram .renewal-mobile-header__channel-icon {
        background: radial-gradient(circle at 30% 105%, #ffd66b 0 18%, #f77737 28%, #e1306c 47%, #833ab4 70%, #405de6 100%);
        position: relative;
    }

    body.renewal-main-page .renewal-mobile-header__channel--instagram .renewal-mobile-header__channel-icon::before {
        content: '';
        position: absolute;
        inset: 26%;
        border: 1.5px solid #ffffff;
        border-radius: 34%;
    }

    body.renewal-main-page .renewal-mobile-header__channel--instagram .renewal-mobile-header__channel-icon::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        width: 22%;
        height: 22%;
        transform: translate(-50%, -50%);
        border: 1.5px solid #ffffff;
        border-radius: 50%;
    }

    body.renewal-main-page .renewal-mobile-header a:focus-visible {
        outline: 2px solid #ffce3a;
        outline-offset: 2px;
    }

    body.renewal-main-page .renewal-local-footer {
        display: block;
        width: 100%;
        max-width: 730px;
        margin: 0 auto;
        background: #303030;
    }

    body.renewal-main-page .renewal-local-footer__inner {
        width: auto;
        margin: 0;
        padding: clamp(28px, 8.75vw, 64px) clamp(26px, 6.85vw, 50px) clamp(34px, 9.3vw, 68px);
        box-sizing: border-box;
    }

    body.renewal-main-page .renewal-local-footer__brand {
        gap: clamp(7px, 2.2vw, 16px);
    }

    body.renewal-main-page .renewal-local-footer__brand img {
        width: clamp(22px, 6.16vw, 45px);
        height: clamp(22px, 6.16vw, 45px);
    }

    body.renewal-main-page .renewal-local-footer__brand span {
        font-size: clamp(16px, 4.38vw, 32px);
        color: #ffffff;
    }

    body.renewal-main-page .renewal-local-footer__top {
        display: block;
        margin-top: clamp(13px, 4.1vw, 30px);
    }

    body.renewal-main-page .renewal-local-footer__lead {
        font-size: clamp(15px, 4.1vw, 30px);
        line-height: 1.35;
        color: #ffffff;
    }

    body.renewal-main-page .renewal-local-footer__links {
        flex-wrap: wrap;
        align-items: center;
        gap: clamp(4px, 1.25vw, 9px);
        margin-top: clamp(14px, 4.1vw, 30px);
        font-size: clamp(10px, 2.75vw, 20px);
        line-height: 1.7;
        white-space: normal;
    }

    body.renewal-main-page .renewal-local-footer__links a,
    body.renewal-main-page .renewal-local-footer__links span {
        color: #aaaaaa;
    }

    body.renewal-main-page .renewal-local-footer__bottom {
        display: block;
        margin-top: clamp(18px, 5.48vw, 40px);
    }

    body.renewal-main-page .renewal-local-footer__meta {
        color: #999999;
        font-size: clamp(10px, 2.75vw, 20px);
        line-height: 1.75;
        word-break: keep-all;
    }

    body.renewal-main-page .renewal-local-footer__support {
        align-items: flex-start;
        gap: clamp(10px, 3.3vw, 24px);
        margin-top: clamp(18px, 5.48vw, 40px);
    }

    body.renewal-main-page .renewal-local-footer__support strong {
        color: #f0f0f0;
        font-size: clamp(13px, 3.56vw, 26px);
    }

    body.renewal-main-page .renewal-local-footer__support a {
        min-width: clamp(132px, 45.5vw, 332px);
        min-height: clamp(36px, 9.6vw, 70px);
        padding: 0 clamp(15px, 4.1vw, 30px) 0 clamp(42px, 11vw, 80px);
        border-color: #626262;
        background-size: clamp(18px, 4.93vw, 36px) clamp(18px, 4.93vw, 36px);
        background-position: clamp(12px, 3.42vw, 25px) center;
        color: #d9d9d9;
        font-size: clamp(11px, 3vw, 22px);
    }
}


/* 2026-06-17 추가: 모바일 헤더 확대 / 하단 CTA 마진 제거 / 사용안내 모바일 적용 */
.renewal-guide-body .renewal-mobile-header--guide {
    display: none;
}

@media (max-width: 960px) {
    body.renewal-main-page .renewal-mobile-final-cta {
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    body.renewal-main-page .renewal-mobile-header__primary,
    body.renewal-guide-body .renewal-mobile-header__primary {
        min-height: clamp(48px, 12vw, 88px);
        padding: 0 4.2%;
    }

    body.renewal-main-page .renewal-mobile-header__logo img,
    body.renewal-guide-body .renewal-mobile-header__logo img {
        width: clamp(84px, 21.5vw, 157px);
        max-width: 26vw;
    }

    body.renewal-main-page .renewal-mobile-header__nav,
    body.renewal-guide-body .renewal-mobile-header__nav {
        gap: clamp(5px, 1.45vw, 11px);
        margin-left: clamp(6px, 1.8vw, 13px);
    }

    body.renewal-main-page .renewal-mobile-header__text-link,
    body.renewal-main-page .renewal-mobile-header__login,
    body.renewal-guide-body .renewal-mobile-header__text-link,
    body.renewal-guide-body .renewal-mobile-header__login {
        font-size: clamp(11px, 2.85vw, 18px);
        font-weight: 850;
    }

    body.renewal-main-page .renewal-mobile-header__signup,
    body.renewal-guide-body .renewal-mobile-header__signup {
        min-width: clamp(64px, 17.4vw, 127px);
        min-height: clamp(28px, 6.45vw, 47px);
        padding: 0 clamp(9px, 2.2vw, 16px);
        font-size: clamp(11px, 2.85vw, 18px);
        font-weight: 850;
    }

    body.renewal-main-page .renewal-mobile-header__channels,
    body.renewal-guide-body .renewal-mobile-header__channels {
        min-height: clamp(38px, 10vw, 73px);
        padding: 0 3.6%;
    }

    body.renewal-main-page .renewal-mobile-header__channel,
    body.renewal-guide-body .renewal-mobile-header__channel {
        gap: clamp(3px, 0.9vw, 7px);
        font-size: clamp(10px, 2.45vw, 18px);
        font-weight: 850;
    }

    body.renewal-main-page .renewal-mobile-header__channel-icon,
    body.renewal-guide-body .renewal-mobile-header__channel-icon {
        width: clamp(17px, 4.55vw, 33px);
        height: clamp(17px, 4.55vw, 33px);
    }

    body.renewal-guide-body {
        margin: 0;
        background: #ffffff;
        overflow-x: hidden;
        font-family: "Pretendard", "Noto Sans KR", sans-serif;
    }

    body.renewal-guide-body .renewal-visual-header {
        display: none;
    }

    body.renewal-guide-body .renewal-mobile-header--guide {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
        max-width: 730px;
        margin: 0 auto;
        height: auto;
        padding: 0;
        background: #ffffff;
    }

    body.renewal-guide-body .renewal-mobile-header__primary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        box-sizing: border-box;
        background: #ffffff;
    }

    body.renewal-guide-body .renewal-mobile-header__logo {
        display: inline-flex;
        align-items: center;
        flex: 0 0 auto;
        text-decoration: none;
    }

    body.renewal-guide-body .renewal-mobile-header__logo img {
        display: block;
        height: auto;
    }

    body.renewal-guide-body .renewal-mobile-header__nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        min-width: 0;
        flex: 1 1 auto;
    }

    body.renewal-guide-body .renewal-mobile-header__text-link,
    body.renewal-guide-body .renewal-mobile-header__login,
    body.renewal-guide-body .renewal-mobile-header__signup {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: inherit;
        line-height: 1;
        letter-spacing: -0.055em;
        text-decoration: none;
        white-space: nowrap;
    }

    body.renewal-guide-body .renewal-mobile-header__text-link,
    body.renewal-guide-body .renewal-mobile-header__login {
        color: #333333;
    }

    body.renewal-guide-body .renewal-mobile-header__signup {
        border-radius: 999px;
        background: #6d34a8;
        color: #ffffff;
        box-sizing: border-box;
    }

    body.renewal-guide-body .renewal-mobile-header__channels {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        background: #fff4ff;
        border-top: 1px solid #f2dff7;
        border-bottom: 1px solid #e4d0ea;
    }

    body.renewal-guide-body .renewal-mobile-header__channel {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
        color: #333333;
        line-height: 1;
        letter-spacing: -0.07em;
        text-decoration: none;
        white-space: nowrap;
    }

    body.renewal-guide-body .renewal-mobile-header__channel span:last-child {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    body.renewal-guide-body .renewal-mobile-header__channel-icon {
        flex: 0 0 auto;
        display: inline-block;
        border-radius: 50%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    body.renewal-guide-body .renewal-mobile-header__channel--youtube .renewal-mobile-header__channel-icon {
        background-image: url(/assets/img/new/youtube.png);
    }

    body.renewal-guide-body .renewal-mobile-header__channel--blog .renewal-mobile-header__channel-icon {
        background-image: url(/assets/img/new/naver_blog_icon.png);
    }

    body.renewal-guide-body .renewal-mobile-header__channel--kakao .renewal-mobile-header__channel-icon {
        background-image: url(/assets/img/new/kakao_channel_icon.png);
    }

    body.renewal-guide-body .renewal-mobile-header__channel--instagram .renewal-mobile-header__channel-icon {
        background: radial-gradient(circle at 30% 105%, #ffd66b 0 18%, #f77737 28%, #e1306c 47%, #833ab4 70%, #405de6 100%);
        position: relative;
    }

    body.renewal-guide-body .renewal-mobile-header__channel--instagram .renewal-mobile-header__channel-icon::before {
        content: '';
        position: absolute;
        inset: 26%;
        border: 1.5px solid #ffffff;
        border-radius: 34%;
    }

    body.renewal-guide-body .renewal-mobile-header__channel--instagram .renewal-mobile-header__channel-icon::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        width: 22%;
        height: 22%;
        transform: translate(-50%, -50%);
        border: 1.5px solid #ffffff;
        border-radius: 50%;
    }

    body.renewal-guide-body .renewal-mobile-header a:focus-visible {
        outline: 2px solid #ffce3a;
        outline-offset: 2px;
    }

    body.renewal-guide-body .renewal-guide-page {
        width: 100%;
        max-width: 730px;
        margin: 0 auto;
        padding: 0;
        background: #ffffff;
    }

    body.renewal-guide-body .renewal-guide-shell {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    body.renewal-guide-body .renewal-guide-section {
        margin: 0;
        background: #ffffff;
        box-shadow: none;
    }

    body.renewal-guide-body .renewal-guide-section img {
        display: block;
        width: 100%;
        height: auto;
    }

    body.renewal-guide-body .renewal-local-footer {
        display: block;
        width: 100%;
        max-width: 730px;
        margin: 0 auto;
        background: #303030;
    }

    body.renewal-guide-body .renewal-local-footer__inner {
        width: auto;
        margin: 0;
        padding: clamp(28px, 8.75vw, 64px) clamp(26px, 6.85vw, 50px) clamp(34px, 9.3vw, 68px);
        box-sizing: border-box;
    }

    body.renewal-guide-body .renewal-local-footer__brand {
        gap: clamp(7px, 2.2vw, 16px);
    }

    body.renewal-guide-body .renewal-local-footer__brand img {
        width: clamp(22px, 6.16vw, 45px);
        height: clamp(22px, 6.16vw, 45px);
    }

    body.renewal-guide-body .renewal-local-footer__brand span {
        font-size: clamp(16px, 4.38vw, 32px);
        color: #ffffff;
    }

    body.renewal-guide-body .renewal-local-footer__top {
        display: block;
        margin-top: clamp(13px, 4.1vw, 30px);
    }

    body.renewal-guide-body .renewal-local-footer__lead {
        font-size: clamp(15px, 4.1vw, 30px);
        line-height: 1.35;
        color: #ffffff;
    }

    body.renewal-guide-body .renewal-local-footer__links {
        flex-wrap: wrap;
        align-items: center;
        gap: clamp(4px, 1.25vw, 9px);
        margin-top: clamp(14px, 4.1vw, 30px);
        font-size: clamp(10px, 2.75vw, 20px);
        line-height: 1.7;
        white-space: normal;
    }

    body.renewal-guide-body .renewal-local-footer__links a,
    body.renewal-guide-body .renewal-local-footer__links span {
        color: #aaaaaa;
    }

    body.renewal-guide-body .renewal-local-footer__bottom {
        display: block;
        margin-top: clamp(18px, 5.48vw, 40px);
    }

    body.renewal-guide-body .renewal-local-footer__meta {
        color: #999999;
        font-size: clamp(10px, 2.75vw, 20px);
        line-height: 1.75;
        word-break: keep-all;
    }

    body.renewal-guide-body .renewal-local-footer__support {
        align-items: flex-start;
        gap: clamp(10px, 3.3vw, 24px);
        margin-top: clamp(18px, 5.48vw, 40px);
    }

    body.renewal-guide-body .renewal-local-footer__support strong {
        color: #f0f0f0;
        font-size: clamp(13px, 3.56vw, 26px);
    }

    body.renewal-guide-body .renewal-local-footer__support a {
        min-width: clamp(132px, 45.5vw, 332px);
        min-height: clamp(36px, 9.6vw, 70px);
        padding: 0 clamp(15px, 4.1vw, 30px) 0 clamp(42px, 11vw, 80px);
        border-color: #626262;
        background-size: clamp(18px, 4.93vw, 36px) clamp(18px, 4.93vw, 36px);
        background-position: clamp(12px, 3.42vw, 25px) center;
        color: #d9d9d9;
        font-size: clamp(11px, 3vw, 22px);
    }
}


@media (max-width: 960px) {
    body.renewal-main-page .renewal-mobile-header,
    body.renewal-guide-body .renewal-mobile-header {
        position: relative;
        z-index: 20;
        overflow: visible;
    }

    body.renewal-main-page .renewal-mobile-header__service-check,
    body.renewal-guide-body .renewal-mobile-header__service-check {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none;
    }

    body.renewal-main-page .renewal-mobile-header__service-toggle,
    body.renewal-guide-body .renewal-mobile-header__service-toggle {
        gap: 2px;
        border: 0;
        background: transparent;
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    body.renewal-main-page .renewal-mobile-header__service-toggle::after,
    body.renewal-guide-body .renewal-mobile-header__service-toggle::after {
        content: '▾';
        display: inline-block;
        margin-left: 1px;
        font-size: 0.72em;
        line-height: 1;
        transform-origin: center;
        transition: transform .18s ease;
    }

    body.renewal-main-page .renewal-mobile-header__service-check:checked ~ .renewal-mobile-header__primary .renewal-mobile-header__service-toggle::after,
    body.renewal-guide-body .renewal-mobile-header__service-check:checked ~ .renewal-mobile-header__primary .renewal-mobile-header__service-toggle::after {
        transform: rotate(180deg);
    }

    body.renewal-main-page .renewal-mobile-header__submenu,
    body.renewal-guide-body .renewal-mobile-header__submenu {
        display: none;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: clamp(4px, 1.1vw, 8px);
        width: 100%;
        padding: clamp(8px, 2.2vw, 16px) clamp(11px, 3.1vw, 23px);
        box-sizing: border-box;
        background: #ffffff;
        border-top: 1px solid #f0e8f5;
        border-bottom: 1px solid #e2d1ec;
        box-shadow: 0 clamp(6px, 1.65vw, 12px) clamp(14px, 3.8vw, 28px) rgba(64, 30, 86, .1);
    }

    body.renewal-main-page .renewal-mobile-header__service-check:checked ~ .renewal-mobile-header__submenu,
    body.renewal-guide-body .renewal-mobile-header__service-check:checked ~ .renewal-mobile-header__submenu {
        display: grid;
    }

    body.renewal-main-page .renewal-mobile-header__submenu a,
    body.renewal-guide-body .renewal-mobile-header__submenu a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: clamp(30px, 7.8vw, 57px);
        padding: 0 clamp(4px, 1.1vw, 8px);
        border: 1px solid #eadcf4;
        border-radius: clamp(8px, 2.2vw, 16px);
        background: #fbf7ff;
        color: #3f3150;
        font-size: clamp(10px, 2.5vw, 18px);
        line-height: 1.18;
        font-weight: 850;
        letter-spacing: -0.065em;
        text-align: center;
        text-decoration: none;
        word-break: keep-all;
        white-space: normal;
        box-sizing: border-box;
    }

    body.renewal-main-page .renewal-mobile-header__submenu a.is-current,
    body.renewal-guide-body .renewal-mobile-header__submenu a.is-current,
    body.renewal-main-page .renewal-mobile-header__submenu a:active,
    body.renewal-guide-body .renewal-mobile-header__submenu a:active {
        border-color: #6d34a8;
        background: #6d34a8;
        color: #ffffff;
    }
}


/* 2026-06-17 추가: 모바일 헤더 원본 시안 기준 회원가입 제거 / 로그인 버튼화 */
@media (max-width: 960px) {
    body.renewal-main-page .renewal-mobile-header__nav,
    body.renewal-guide-body .renewal-mobile-header__nav {
        gap: clamp(9px, 2.35vw, 17px);
        margin-left: clamp(8px, 2.2vw, 16px);
    }

    body.renewal-main-page .renewal-mobile-header__text-link,
    body.renewal-guide-body .renewal-mobile-header__text-link {
        color: #333333;
        font-size: clamp(11px, 3vw, 22px);
        font-weight: 850;
        line-height: 1;
        white-space: nowrap;
    }

    body.renewal-main-page .renewal-mobile-header__login,
    body.renewal-guide-body .renewal-mobile-header__login {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: clamp(54px, 15.2vw, 111px);
        min-height: clamp(26px, 6.2vw, 45px);
        padding: 0 clamp(10px, 2.6vw, 19px);
        border-radius: 999px;
        background: #6d34a8;
        color: #ffffff;
        font-size: clamp(11px, 3vw, 22px);
        font-weight: 900;
        line-height: 1;
        letter-spacing: -0.055em;
        text-decoration: none;
        white-space: nowrap;
        box-sizing: border-box;
    }

    body.renewal-main-page .renewal-mobile-header__signup,
    body.renewal-guide-body .renewal-mobile-header__signup {
        display: none !important;
    }
}


/* 2026-06-17 추가: 서비스 서브페이지 모바일 헤더/푸터/본문 100% 적용 */
body.renewal-sub-body .renewal-mobile-header {
    display: none;
}

@media (max-width: 960px) {
    body.renewal-sub-body {
        margin: 0;
        background: #ffffff;
        overflow-x: hidden;
        font-family: "Pretendard", "Noto Sans KR", sans-serif;
    }

    body.renewal-sub-body .renewal-visual-header {
        display: none;
    }

    body.renewal-sub-body .renewal-mobile-header {
        position: relative;
        z-index: 20;
        display: block;
        width: 100%;
        max-width: 730px;
        margin: 0 auto;
        overflow: visible;
        background: #ffffff;
        color: #111111;
        box-sizing: border-box;
    }

    body.renewal-sub-body .renewal-mobile-header__primary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: clamp(40px, 10.96vw, 80px);
        padding: 0 clamp(14px, 4.1vw, 30px);
        box-sizing: border-box;
        background: #ffffff;
    }

    body.renewal-sub-body .renewal-mobile-header__logo {
        display: inline-flex;
        align-items: center;
        flex: 0 0 auto;
        text-decoration: none;
    }

    body.renewal-sub-body .renewal-mobile-header__logo img {
        display: block;
        width: clamp(77px, 22.75vw, 166px);
        height: auto;
    }

    body.renewal-sub-body .renewal-mobile-header__nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(9px, 2.35vw, 17px);
        flex: 0 0 auto;
        margin-left: clamp(8px, 2.2vw, 16px);
    }

    body.renewal-sub-body .renewal-mobile-header__text-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #333333;
        font-size: clamp(11px, 3vw, 22px);
        font-weight: 850;
        line-height: 1;
        letter-spacing: -0.055em;
        text-decoration: none;
        white-space: nowrap;
    }

    body.renewal-sub-body .renewal-mobile-header__login {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: clamp(54px, 15.2vw, 111px);
        min-height: clamp(26px, 6.2vw, 45px);
        padding: 0 clamp(10px, 2.6vw, 19px);
        border-radius: 999px;
        background: #6d34a8;
        color: #ffffff;
        font-size: clamp(11px, 3vw, 22px);
        font-weight: 900;
        line-height: 1;
        letter-spacing: -0.055em;
        text-decoration: none;
        white-space: nowrap;
        box-sizing: border-box;
    }

    body.renewal-sub-body .renewal-mobile-header__service-check {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none;
    }

    body.renewal-sub-body .renewal-mobile-header__service-toggle {
        gap: 2px;
        border: 0;
        background: transparent;
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }

    body.renewal-sub-body .renewal-mobile-header__service-toggle::after {
        content: '▾';
        display: inline-block;
        margin-left: 1px;
        font-size: 0.72em;
        line-height: 1;
        transform-origin: center;
        transition: transform .18s ease;
    }

    body.renewal-sub-body .renewal-mobile-header__service-check:checked ~ .renewal-mobile-header__primary .renewal-mobile-header__service-toggle::after {
        transform: rotate(180deg);
    }

    body.renewal-sub-body .renewal-mobile-header__submenu {
        display: none;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: clamp(4px, 1.1vw, 8px);
        width: 100%;
        padding: clamp(8px, 2.2vw, 16px) clamp(11px, 3.1vw, 23px);
        box-sizing: border-box;
        background: #ffffff;
        border-top: 1px solid #f0e8f5;
        border-bottom: 1px solid #e2d1ec;
        box-shadow: 0 clamp(6px, 1.65vw, 12px) clamp(14px, 3.8vw, 28px) rgba(64, 30, 86, .1);
    }

    body.renewal-sub-body .renewal-mobile-header__service-check:checked ~ .renewal-mobile-header__submenu {
        display: grid;
    }

    body.renewal-sub-body .renewal-mobile-header__submenu a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: clamp(30px, 7.8vw, 57px);
        padding: 0 clamp(4px, 1.1vw, 8px);
        border: 1px solid #eadcf4;
        border-radius: clamp(8px, 2.2vw, 16px);
        background: #fbf7ff;
        color: #3f3150;
        font-size: clamp(10px, 2.5vw, 18px);
        line-height: 1.18;
        font-weight: 850;
        letter-spacing: -0.065em;
        text-align: center;
        text-decoration: none;
        word-break: keep-all;
        white-space: normal;
        box-sizing: border-box;
    }

    body.renewal-sub-body .renewal-mobile-header__submenu a.is-current,
    body.renewal-sub-body .renewal-mobile-header__submenu a:active {
        border-color: #6d34a8;
        background: #6d34a8;
        color: #ffffff;
    }

    body.renewal-sub-body .renewal-mobile-header__channels {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        width: 100%;
        min-height: clamp(42px, 10.96vw, 80px);
        border-top: 1px solid #f0f0f0;
        background: #ffffff;
    }

    body.renewal-sub-body .renewal-mobile-header__channel {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(3px, 0.95vw, 7px);
        padding: 0 clamp(2px, 0.68vw, 5px);
        border-right: 1px solid #ececec;
        color: #333333;
        font-size: clamp(8px, 2.18vw, 16px);
        line-height: 1;
        font-weight: 800;
        letter-spacing: -0.055em;
        text-decoration: none;
        box-sizing: border-box;
    }

    body.renewal-sub-body .renewal-mobile-header__channel:last-child {
        border-right: 0;
    }

    body.renewal-sub-body .renewal-mobile-header__channel span:last-child {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body.renewal-sub-body .renewal-mobile-header__channel-icon {
        flex: 0 0 auto;
        display: inline-block;
        width: clamp(16px, 4.38vw, 32px);
        height: clamp(16px, 4.38vw, 32px);
        border-radius: 50%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    body.renewal-sub-body .renewal-mobile-header__channel--youtube .renewal-mobile-header__channel-icon {
        background-image: url(/assets/img/new/youtube.png);
    }

    body.renewal-sub-body .renewal-mobile-header__channel--blog .renewal-mobile-header__channel-icon {
        background-image: url(/assets/img/new/naver_blog_icon.png);
    }

    body.renewal-sub-body .renewal-mobile-header__channel--kakao .renewal-mobile-header__channel-icon {
        background-image: url(/assets/img/new/kakao_channel_icon.png);
    }

    body.renewal-sub-body .renewal-mobile-header__channel--instagram .renewal-mobile-header__channel-icon {
        background: radial-gradient(circle at 30% 105%, #ffd66b 0 18%, #f77737 28%, #e1306c 47%, #833ab4 70%, #405de6 100%);
        position: relative;
    }

    body.renewal-sub-body .renewal-mobile-header__channel--instagram .renewal-mobile-header__channel-icon::before {
        content: '';
        position: absolute;
        inset: 26%;
        border: 1.5px solid #ffffff;
        border-radius: 34%;
    }

    body.renewal-sub-body .renewal-mobile-header__channel--instagram .renewal-mobile-header__channel-icon::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        width: 22%;
        height: 22%;
        transform: translate(-50%, -50%);
        border: 1.5px solid #ffffff;
        border-radius: 50%;
    }

    body.renewal-sub-body .renewal-mobile-header a:focus-visible,
    body.renewal-sub-body .renewal-mobile-header label:focus-visible {
        outline: 2px solid #ffce3a;
        outline-offset: 2px;
    }

    body.renewal-sub-body .renewal-visual-page {
        width: 100%;
        max-width: 730px;
        margin: 0 auto;
        padding: 0;
        background: #ffffff;
        overflow: hidden;
    }

    body.renewal-sub-body .renewal-visual-shell--sub {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
    }

    body.renewal-sub-body .renewal-visual-frame--body {
        width: 100%;
        max-width: none;
        margin: 0;
        line-height: 0;
    }


    body.renewal-sub-body .renewal-visual-frame--body picture {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        line-height: 0;
    }

    body.renewal-sub-body .renewal-visual-frame--body img {
        display: block;
        width: 100%;
        height: auto;
    }

    body.renewal-sub-body .renewal-local-footer {
        display: block;
        width: 100%;
        max-width: 730px;
        margin: 0 auto;
        background: #303030;
    }

    body.renewal-sub-body .renewal-local-footer__inner {
        width: auto;
        margin: 0;
        padding: clamp(28px, 8.75vw, 64px) clamp(26px, 6.85vw, 50px) clamp(34px, 9.3vw, 68px);
        box-sizing: border-box;
    }

    body.renewal-sub-body .renewal-local-footer__brand {
        gap: clamp(7px, 2.2vw, 16px);
    }

    body.renewal-sub-body .renewal-local-footer__brand img {
        width: clamp(22px, 6.16vw, 45px);
        height: clamp(22px, 6.16vw, 45px);
    }

    body.renewal-sub-body .renewal-local-footer__brand span {
        font-size: clamp(16px, 4.38vw, 32px);
        color: #ffffff;
    }

    body.renewal-sub-body .renewal-local-footer__top {
        display: block;
        margin-top: clamp(13px, 4.1vw, 30px);
    }

    body.renewal-sub-body .renewal-local-footer__lead {
        font-size: clamp(15px, 4.1vw, 30px);
        line-height: 1.35;
        color: #ffffff;
    }

    body.renewal-sub-body .renewal-local-footer__links {
        flex-wrap: wrap;
        align-items: center;
        gap: clamp(4px, 1.25vw, 9px);
        margin-top: clamp(14px, 4.1vw, 30px);
        font-size: clamp(10px, 2.75vw, 20px);
        line-height: 1.7;
        white-space: normal;
    }

    body.renewal-sub-body .renewal-local-footer__links a,
    body.renewal-sub-body .renewal-local-footer__links span {
        color: #aaaaaa;
    }

    body.renewal-sub-body .renewal-local-footer__bottom {
        display: block;
        margin-top: clamp(18px, 5.48vw, 40px);
    }

    body.renewal-sub-body .renewal-local-footer__meta {
        color: #999999;
        font-size: clamp(10px, 2.75vw, 20px);
        line-height: 1.75;
        word-break: keep-all;
    }

    body.renewal-sub-body .renewal-local-footer__support {
        align-items: flex-start;
        gap: clamp(10px, 3.3vw, 24px);
        margin-top: clamp(18px, 5.48vw, 40px);
    }

    body.renewal-sub-body .renewal-local-footer__support strong {
        color: #f0f0f0;
        font-size: clamp(13px, 3.56vw, 26px);
    }

    body.renewal-sub-body .renewal-local-footer__support a {
        min-width: clamp(132px, 45.5vw, 332px);
        min-height: clamp(36px, 9.6vw, 70px);
        padding: 0 clamp(15px, 4.1vw, 30px) 0 clamp(42px, 11vw, 80px);
        border-color: #626262;
        background-size: clamp(18px, 4.93vw, 36px) clamp(18px, 4.93vw, 36px);
        background-position: clamp(12px, 3.42vw, 25px) center;
        color: #d9d9d9;
        font-size: clamp(11px, 3vw, 22px);
    }
}


/* 2026-06-17 추가: 서비스 서브페이지 모바일 채널 메뉴를 메인과 동일한 스타일로 통일 */
@media (max-width: 960px) {
    body.renewal-sub-body .renewal-mobile-header__channels {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: center;
        width: 100%;
        min-height: clamp(38px, 10vw, 73px);
        padding: 0 3.6%;
        box-sizing: border-box;
        background: #fff4ff;
        border-top: 1px solid #f2dff7;
        border-bottom: 1px solid #e4d0ea;
    }

    body.renewal-sub-body .renewal-mobile-header__channel {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: clamp(3px, 0.9vw, 7px);
        min-width: 0;
        padding: 0;
        border-right: 0;
        color: #333333;
        font-size: clamp(10px, 2.45vw, 18px);
        line-height: 1;
        font-weight: 850;
        letter-spacing: -0.07em;
        text-decoration: none;
        white-space: nowrap;
    }

    body.renewal-sub-body .renewal-mobile-header__channel span:last-child {
        display: block;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    body.renewal-sub-body .renewal-mobile-header__channel-icon {
        flex: 0 0 auto;
        display: inline-block;
        width: clamp(17px, 4.55vw, 33px);
        height: clamp(17px, 4.55vw, 33px);
        border-radius: 50%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }
}
