: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 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__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: 58%;
    width: 6.6%;
    height: 26%;
}

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

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

.renewal-hotspot--app {
    left: 74.6%;
    top: 58%;
    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__submit {
        width: 100%;
        margin-left: 0;
    }
}
