/* =====================================================
   Website Estimate — Public CSS
   Design direction: clean white, sharp type, one accent
   ===================================================== */
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2') format('woff2');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2') format('woff2');
    font-weight: 900;
    font-display: swap;
}
:root {
    color-scheme: light;

    /* Palette */
    --bg:            #f5f7f6;
    --bg-subtle:     #eef3f1;
    --surface:       #ffffff;
    --surface-warm:  #fbfaf7;
    --ink:           #111827;
    --ink-soft:      #1f2937;
    --text:          #111827;
    --text-sub:      #4b5563;
    --text-muted:    #7b8794;
    --line:          #dfe5e2;
    --line-strong:   #c4ccc8;

    /* Accent — single brand green like imweb */
    --accent:        #00c471;
    --accent-dark:   #00a35c;
    --accent-light:  #e6f9f1;
    --accent-text:   #007a46;

    /* States */
    --selected-bg:   #f0fdf8;
    --selected-line: #00c471;
    --error-bg:      #fff2f2;
    --error-text:    #cc2222;
    --success-bg:    #e6f9f1;
    --success-text:  #007a46;

    /* Type */
    --font: 'Pretendard', BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

    /* Radius */
    --r-sm:  6px;
    --r-md:  8px;
    --r-lg:  8px;

    /* Shadow */
    --shadow-card: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
    --shadow-hover: 0 4px 16px rgba(0,0,0,.1);
}

/* ──────────────────────────────
   Reset & Base
   ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.embed-mode {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.embed-mode main {
    margin-top: 0;
    padding-top: 0;
}

/* 콘텐츠 첫 영역에 헤더 높이만큼 여백이 있다면 해당 선택자로 제거 */
body.embed-mode .main-section,
body.embed-mode .hero-section,
body.embed-mode .page-content {
    margin-top: 0;
}

body.embed-mode .site-main {
    padding-top: 0;
    margin-top: 0;
}

body.embed-mode .site-header,
body.embed-mode .quick-menu,
body.embed-mode .contact-cta-section,
body.embed-mode .cta-band,
body.embed-mode a[href="#contact"],
body.embed-mode .center-action a[href*="/estimate"],
body.embed-mode .center-action a[href*="/references"],
body.embed-mode .home-plan-preview, 
body.embed-mode .reference-contact-btn{
    display: none !important;
}

body.embed-mode:not(.blackad-embed-mode) a[href*="/inquiry"] {
    display: none !important;
}

body.embed-mode:not(.reference-embed-mode) .reference-open-link,
body.embed-mode:not(.reference-embed-mode) .reference-preview-button,
body.embed-mode:not(.reference-embed-mode) .reference-preview-modal,
body.embed-mode:not(.reference-embed-mode) .reference-preview-section {
    display: none !important;
}

body.embed-mode .mini-plan-card {
    pointer-events: none;
    cursor: default;
}

body.embed-mode .mini-plan-card:hover {
    border-color: var(--line);
    box-shadow: var(--shadow-card);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(17, 24, 39, .03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }

/* ──────────────────────────────
   Header / Nav
   ────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 64px;
    padding: 0 48px;
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

.brand {
    color: var(--text);
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0;
}

.site-header nav {
    display: flex;
    gap: 6px;
}

.site-header nav a {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 12px;
    color: var(--text-sub);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--r-sm);
    transition: color .15s, background .15s;
}

.site-header nav a:hover {
    color: var(--text);
    background: var(--bg-subtle);
}

/* ──────────────────────────────
   Shell / Layout
   ────────────────────────────── */
.public-shell {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
    padding: 72px 0 96px;
}

/* ──────────────────────────────
   Typography
   ────────────────────────────── */
.eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    color: var(--accent-text);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

h1 {
    margin: 0 0 16px;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: 0;
    color: var(--text);
}

h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
}

.section-heading,
.hero { margin-bottom: 40px; }

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading p,
.hero > p {
    color: var(--text-sub);
    font-size: 16px;
    line-height: 1.75;
}

/* ──────────────────────────────
   Buttons
   ────────────────────────────── */
.primary-button,
.select-plan-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 46px;
    padding: 0 22px;
    border: none;
    border-radius: var(--r-sm);
    background: var(--accent);
    color: #ffffff;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background .15s, box-shadow .15s, transform .1s;
    white-space: nowrap;
}

.primary-button:hover,
.select-plan-button:hover {
    background: var(--accent-dark);
    box-shadow: 0 2px 12px rgba(0,196,113,.35);
}

.primary-button:active,
.select-plan-button:active { transform: scale(.98); }

.select-plan-button {
    width: 100%;
    margin-top: 24px;
    font-size: 14px;
}

.plan-card.selected .select-plan-button {
    background: var(--accent-dark);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 20px;
    border: 1.5px solid var(--line-strong);
    border-radius: var(--r-sm);
    background: transparent;
    color: var(--text);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .15s, background .15s;
    white-space: nowrap;
}

.secondary-button:hover {
    border-color: var(--text-sub);
    background: var(--bg-subtle);
}

.secondary-link {
    color: var(--text-sub);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color .15s;
}

.secondary-link:hover { color: var(--text); }

/* ──────────────────────────────
   Home page
   ────────────────────────────── */
.home-shell { padding-top: 80px; }

.home-hero h1 { font-size: 48px; }

.home-hero > div > p {
    color: var(--text-sub);
    font-size: 16px;
    line-height: 1.75;
    margin-top: 16px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.home-panel {
    border: 1.5px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px 32px;
    background: var(--bg-subtle);
}

.home-panel > span {
    display: block;
    margin-bottom: 16px;
    color: var(--accent-text);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.home-panel ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    list-style: decimal;
}

.home-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.home-feature-grid article {
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    padding: 28px 24px;
    background: var(--surface);
    transition: box-shadow .2s;
}

.home-feature-grid article:hover {
    box-shadow: var(--shadow-hover);
}

.home-feature-grid h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.home-feature-grid p {
    color: var(--text-sub);
    font-size: 14px;
    line-height: 1.65;
}

.home-plan-preview .section-heading { margin-bottom: 20px; }

.mini-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.mini-plan-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    min-height: 240px;
    padding: 24px 22px 22px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    background: var(--surface);
    text-decoration: none;
    color: var(--text);
    transition: border-color .15s, box-shadow .15s;
}

.mini-plan-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.mini-plan-card span {
    color: var(--accent-text);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.mini-plan-card-head {
    display: grid;
    gap: 10px;
}

.mini-plan-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--accent-light);
    color: var(--accent-text);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
}

.mini-plan-title {
    display: block;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
}

.mini-plan-subtitle {
    min-height: 40px;
    margin: 0;
    color: var(--text-sub);
    font-size: 13px;
    line-height: 1.55;
}

.mini-plan-price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 4px 10px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.mini-plan-price-label {
    grid-column: 1 / -1;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.mini-plan-price {
    display: block;
    color: var(--ink);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
}

.mini-plan-price-unit {
    color: var(--text-sub);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

/* ──────────────────────────────
   Estimate / Pricing page
   ────────────────────────────── */
.pricing-shell { }

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    align-items: stretch;
    margin-bottom: 20px;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1.5px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px 24px 24px;
    background: var(--surface);
    transition: border-color .2s, box-shadow .2s, transform .2s;
    cursor: default;
}

.plan-card.recommended {
    border-color: var(--accent);
}

.plan-card.selected {
    border-color: var(--accent);
    background: var(--selected-bg);
    box-shadow: 0 0 0 3px var(--accent-light), var(--shadow-hover);
    transform: translateY(-3px);
}

.plan-badge {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 18px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent-light);
    color: var(--accent-text);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
}

.plan-card-body { flex: 1; }

.plan-card-body h2 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 6px;
}

.plan-subtitle {
    min-height: 40px;
    margin: 6px 0 18px;
    color: var(--text-sub);
    font-size: 13px;
    line-height: 1.55;
}

.plan-price {
    margin: 8px 0 4px;
}

.plan-price del {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 2px;
    text-decoration: line-through;
}

.plan-price strong {
    display: block;
    color: var(--text);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.1;
}

.plan-description {
    margin-top: 14px;
    color: var(--text-sub);
    font-size: 13px;
    line-height: 1.6;
}

/* Selected plan CTA bar */
.selected-plan-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 8px 0 32px;
    padding: 14px 18px;
    border: 1.5px solid var(--accent);
    border-radius: var(--r-md);
    background: var(--accent-light);
}

.selected-plan-action[hidden] { display: none; }

.selected-plan-action span {
    color: var(--accent-text);
    font-size: 14px;
    font-weight: 600;
}

/* ──────────────────────────────
   Comparison table
   ────────────────────────────── */
.comparison-section {
    border: 1.5px solid var(--line);
    border-radius: var(--r-lg);
    overflow: clip;
    margin-top: 12px;
}

.comparison-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: 14px;
}

.comparison-table th,
.comparison-table td {
    border-bottom: 1px solid var(--line);
    padding: 14px 16px;
    text-align: center;
    vertical-align: middle;
}

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

.comparison-table thead th {
    position: sticky;
    background: var(--bg-subtle);
    z-index: 2;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    padding: 16px;
    border-bottom: 1.5px solid var(--line);
}

.comparison-table .feature-col,
.comparison-table .feature-name {
    width: 220px;
    text-align: left;
    font-weight: 500;
    color: var(--text);
}

.comparison-table .category-row th {
    background: var(--surface);    
    color: var(--text-sub);
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 10px 16px;
    border-top: 1.5px solid var(--line);
}

.feature-name small,
.comparison-table td small {
    display: block;
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.45;
    font-weight: 400;
}

.symbol-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent-text);
    font-size: 13px;
    font-weight: 900;
}

.symbol-dash { color: var(--line-strong); font-size: 18px; }

.comparison-table td.unavailable { color: var(--text-muted); }

/* ──────────────────────────────
   Options page
   ────────────────────────────── */
.options-shell { }

.options-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.selected-plan-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding: 14px 18px;
    border: 1.5px solid var(--accent);
    border-radius: var(--r-md);
    background: var(--accent-light);
}

.selected-plan-badge {
    color: var(--accent-text);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.selected-plan-banner strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.selected-plan-banner .selected-plan-price {
    color: var(--text-sub);
    font-size: 14px;
    font-weight: 600;
}

.selected-plan-banner .selected-plan-price del {
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 4px;
    font-size: 13px;
}

.change-plan-link {
    margin-left: auto;
    color: var(--accent-text);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--accent-light);
    transition: border-color .15s;
}

.change-plan-link:hover { border-color: var(--accent); }

.option-group { margin-bottom: 28px; }

.option-group-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-sub);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid var(--line);
}

.option-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-item {
    position: relative;
}

.option-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    background: var(--surface);
    cursor: pointer;
    transition: border-color .15s, background .15s;
}

.option-label:hover {
    border-color: var(--line-strong);
    background: var(--bg-subtle);
}

.option-checkbox {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent);
    cursor: pointer;
}

.option-checkbox:checked ~ .option-info,
.option-label:has(.option-checkbox:checked) {
    border-color: var(--accent);
}

.option-label:has(.option-checkbox:checked) {
    border-color: var(--accent);
    background: var(--selected-bg);
}

.option-info {
    flex: 1;
    min-width: 0;
}

.option-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.option-description {
    display: block;
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.option-price {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-text);
    white-space: nowrap;
    margin-top: 2px;
}

/* Summary aside */
.options-summary-aside { }

.summary-card {
    position: sticky;
    top: 88px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-lg);
    padding: 24px;
    background: var(--surface);
}

.summary-card h2 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid var(--line);
}

.summary-plan-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
}

.summary-options-row {
    min-height: 36px;
    padding: 10px 12px;
    border-radius: var(--r-sm);
    background: var(--bg-subtle);
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1.5px solid var(--line);
    margin-bottom: 18px;
}

.summary-total-row strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.summary-total-row strong#options-total {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-dark);
    letter-spacing: 0;
}

.summary-card .primary-button {
    width: 100%;
    margin-bottom: 10px;
}

.summary-card .secondary-link {
    display: block;
    text-align: center;
    font-size: 13px;
    padding: 6px 0;
}

/* ──────────────────────────────
   Inquiry form
   ────────────────────────────── */
.inquiry-layout { }

.hero h1 { font-size: 36px; }

.form-panel {
    max-width: 680px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-lg);
    padding: 36px 40px;
    background: var(--surface);
}

.field { margin-bottom: 20px; }

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

label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-sub);
    letter-spacing: .02em;
}

input,
textarea {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: var(--r-sm);
    padding: 11px 14px;
    color: var(--text);
    font: inherit;
    font-size: 14px;
    background: var(--surface);
    transition: border-color .15s, box-shadow .15s;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

textarea {
    resize: vertical;
    line-height: 1.65;
}

.actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 6px;
    flex-wrap: wrap;
}

/* Readonly selection (selected plan + options display) */
.readonly-selection {
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    background: var(--bg-subtle);
    margin-bottom: 24px;
    overflow: hidden;
}

.readonly-selection-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    flex-wrap: wrap;
}

.readonly-selection-row span {
    color: var(--accent-text);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-right: 2px;
}

.readonly-selection-row strong {
    font-size: 15px;
    font-weight: 700;
    flex: 1;
}

.readonly-selection-row em {
    color: var(--accent-dark);
    font-style: normal;
    font-size: 15px;
    font-weight: 700;
}

.readonly-options-row {
    border-top: 1px solid var(--line);
    padding: 12px 16px;
}

.readonly-options-row > span {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.readonly-options-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.readonly-options-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-sub);
    padding: 2px 0;
}

.readonly-options-list li em {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-text);
}

.readonly-change-row {
    border-top: 1px solid var(--line);
    padding: 10px 16px;
}

.readonly-change-row a {
    color: var(--accent-text);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity .15s;
}

.readonly-change-row a:hover { opacity: .75; }

/* Flash notices */
.notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    border-radius: var(--r-sm);
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.notice-success {
    background: var(--success-bg);
    color: var(--success-text);
    border: 1px solid #b2e8d1;
}

.notice-error {
    background: var(--error-bg);
    color: var(--error-text);
    border: 1px solid #f5c0c0;
}

/* ──────────────────────────────
   References page
   ────────────────────────────── */
.reference-shell { }

.reference-placeholder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.reference-placeholder article {
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    padding: 24px;
    background: var(--surface);
}

.reference-placeholder article span {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--r-sm);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--accent-light) 100%);
}

.reference-placeholder h2 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.reference-placeholder p {
    color: var(--text-sub);
    font-size: 14px;
    line-height: 1.6;
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

/* ──────────────────────────────
   Empty state
   ────────────────────────────── */
.empty-box {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-muted);
    font-size: 15px;
    border: 1.5px dashed var(--line);
    border-radius: var(--r-lg);
}

/* =====================================================
   Premium density refresh
   ===================================================== */
.site-header {
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 1px 0 rgba(17, 24, 39, .03);
}

.public-shell {
    width: min(1180px, calc(100% - 48px));
}

.home-shell {
    padding-top: 44px;
}

.home-hero {
    display: grid;
    align-items: center;
    position: relative;
    grid-template-columns: minmax(0, 1.08fr) 420px;
    gap: 40px;
    padding: 48px;
    margin-bottom: 34px;
    border: 1px solid #d7dfdb;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(239, 248, 244, .92)),
        linear-gradient(180deg, rgba(17, 24, 39, .04), transparent);
    box-shadow: 0 18px 50px rgba(17, 24, 39, .08);
}

.hero-copy h1 {
    max-width: 720px;
}

.hero-copy > p {
    max-width: 620px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 34px 0 0;
}

.hero-metrics div {
    padding: 14px;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
}

.hero-metrics dt {
    margin: 0 0 4px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
}

.hero-metrics dd {
    margin: 0;
    color: var(--text-sub);
    font-size: 12px;
    line-height: 1.45;
}

.home-brief-panel {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 26px;
    border-color: rgba(17, 24, 39, .12);
    background: #111827;
    color: #fff;
}

.brief-head,
.brief-total,
.brief-rows div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.brief-head span,
.brief-total span,
.brief-rows span {
    color: #a7f3d0;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.brief-head strong {
    font-size: 18px;
}

.brief-total {
    align-items: flex-end;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
    border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.brief-total strong {
    font-size: 28px;
    line-height: 1;
}

.brief-rows {
    display: grid;
    gap: 10px;
}

.brief-rows div {
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.brief-rows strong {
    flex: 1;
    font-size: 14px;
}

.brief-rows em {
    max-width: 145px;
    color: #cbd5e1;
    font-size: 12px;
    font-style: normal;
    text-align: right;
    line-height: 1.45;
}

.brief-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: auto;
    border-radius: 6px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

/* ──────────────────────────────
   Section divider system
   ────────────────────────────── */

/* proof-strip, home-feature-grid, home-plan-preview,
   contact-cta-section, reference-preview-section 모두
   상단에 섹션 구분선 + 레이블 역할 부여 */

.proof-strip,
.home-feature-grid,
.home-plan-preview,
.contact-cta-section,
.reference-preview-section {
    position: relative;
    padding-top: 56px;
    margin-top: 0;
}

/* 각 섹션 상단에 가는 선 */
.proof-strip::before,
.home-feature-grid::before,
.home-plan-preview::before,
.contact-cta-section::before,
.reference-preview-section::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--line);
}

/* contact 섹션은 다크 배경으로 섹션 분위기 자체가 다르므로 선 없앰 */
.contact-cta-section::before {
    display: none;
}

/* proof-strip은 기존 mb 유지 */
.proof-strip {
    margin-bottom: 0;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--line);
}

/* feature-grid 섹션은 alt 배경으로 구역감 강조 */
.home-feature-grid {
    padding-bottom: 56px;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--line);
}

/* contact 섹션은 위아래 여백으로만 구분 */
.contact-cta-section {
    padding-top: 64px;
    padding-bottom: 64px;
    margin-top: 0;
}

/* reference 섹션 */
.reference-preview-section {
    padding-bottom: 0;
}

.proof-strip,
.pricing-guide-grid,
.reference-status-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.pricing-guide-grid,
.reference-status-band {
    margin-bottom: 42px;
}

.reference-status-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-strip div,
.pricing-guide-grid article,
.reference-status-band div {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .84);
    box-shadow: var(--shadow-card);
}

.proof-strip span,
.pricing-guide-grid span,
.reference-status-band span {
    display: block;
    margin-bottom: 8px;
    color: #b45309;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.proof-strip strong,
.pricing-guide-grid strong,
.reference-status-band strong {
    display: block;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.55;
}

.home-feature-grid article,
.mini-plan-card,
.plan-card,
.form-panel,
.summary-card,
.reference-card,
.reference-placeholder article {
    box-shadow: var(--shadow-card);
}

.home-feature-grid article {
    padding: 26px;
}

.home-feature-grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: #111827;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.process-section,
.comparison-section,
.reference-list,
.reference-placeholder {
    margin-top: 34px;
}

/* home-plan-preview margin-top은 섹션 구분 시스템에서 padding-top으로 대체 */
.home-plan-preview {
    margin-top: 0;
}

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

.process-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface-warm);
}

.process-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: var(--accent-light);
    color: var(--accent-text);
    font-size: 13px;
    font-weight: 900;
}

.process-grid h3 {
    margin: 0 0 8px;
    font-size: 17px;
}

.process-grid p {
    color: var(--text-sub);
    font-size: 14px;
    line-height: 1.65;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 56px;
    padding: 30px;
    border-radius: 8px;
    background: #111827;
    color: #fff;
}

.cta-band h2 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 24px;
}

.cta-band p:not(.eyebrow) {
    color: #cbd5e1;
}

.cta-band .eyebrow {
    color: #a7f3d0;
}

.plan-card {
    padding: 24px;
    background: rgba(255, 255, 255, .94);
}

.plan-card.recommended::before {
    content: "추천 구성";
    position: absolute;
    top: -13px;
    right: 18px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.plan-includes {
    display: grid;
    gap: 8px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.plan-includes li {
    position: relative;
    padding-left: 18px;
    color: var(--text-sub);
    font-size: 13px;
}

.plan-includes li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
}

.selected-plan-action {
    position: sticky;
    top: 76px;
    z-index: 20;
    box-shadow: 0 14px 30px rgba(0, 196, 113, .12);
}

.comparison-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-top: 42px;
    margin-bottom: 12px;
}

.comparison-heading h2 {
    font-size: 24px;
}

.option-intro-panel {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow-card);
}

.option-intro-panel h2 {
    font-size: 20px;
}

.option-intro-panel > p {
    max-width: 360px;
    color: var(--text-sub);
    font-size: 14px;
    line-height: 1.65;
}

.option-group {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow-card);
}

.summary-count-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 8px;
    background: #111827;
    color: #fff;
    font-size: 14px;
}

.summary-count-row strong {
    color: #a7f3d0;
}

.option-empty-box {
    display: grid;
    justify-items: center;
    gap: 10px;
}

.option-empty-box strong {
    color: var(--ink);
    font-size: 18px;
}

.option-empty-box span {
    display: block;
    color: var(--text-sub);
}

.inquiry-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.inquiry-layout .form-panel {
    max-width: none;
}

.inquiry-info-panel {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #111827;
    color: #fff;
    box-shadow: var(--shadow-card);
}

.inquiry-info-panel > span {
    display: block;
    margin-bottom: 10px;
    color: #a7f3d0;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.inquiry-info-panel h2 {
    margin-bottom: 22px;
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
}

.inquiry-info-panel ul {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.inquiry-info-panel li {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: #e5e7eb;
    font-size: 14px;
}

.response-note {
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
}

.response-note strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
}

.response-note p {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.6;
}

.reference-status-band {
    margin-top: -8px;
}

/* ──────────────────────────────
   Responsive
   ────────────────────────────── */
@media (max-width: 900px) {
    .site-header {
        height: auto;
        padding: 14px 20px;
        gap: 12px;
    }

    .site-header nav { flex-wrap: wrap; gap: 2px; }

    .public-shell {
        width: calc(100% - 32px);
        padding: 40px 0 64px;
    }

    h1 { font-size: 30px; letter-spacing: 0; }
    .home-hero h1 { font-size: 32px; }

    .section-heading.centered { text-align: left; }

    .home-hero,
    .home-feature-grid,
    .mini-plan-grid,
    .reference-placeholder,
    .plan-grid,
    .field-grid,
    .options-layout,
    .hero-metrics,
    .proof-strip,
    .pricing-guide-grid,
    .process-grid,
    .reference-status-band,
    .inquiry-grid {
        grid-template-columns: 1fr;
    }

    .home-hero {
        padding: 28px 20px;
        padding-bottom: 28px;
        margin-bottom: 28px;
        gap: 28px;
    }

    .plan-card { min-height: auto; }

    .hero-actions,
    .selected-plan-action,
    .actions,
    .cta-band,
    .comparison-heading,
    .option-intro-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .home-brief-panel,
    .cta-band,
    .inquiry-info-panel {
        padding: 22px;
    }

    .brief-total strong {
        font-size: 23px;
    }

    .brief-rows div {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .brief-rows em {
        grid-column: 2;
        max-width: none;
        text-align: left;
    }

    .proof-strip {
        padding-bottom: 36px;
    }

    .pricing-guide-grid,
    .reference-status-band {
        margin-bottom: 28px;
    }

    .home-feature-grid {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .selected-plan-action {
        position: static;
    }

    .option-intro-panel > p {
        max-width: none;
    }

    .primary-button,
    .secondary-button { width: 100%; justify-content: center; }

    .form-panel { padding: 24px 20px; }

    .summary-card { position: static; }

    .comparison-table { min-width: 680px; }
}

@media (max-width: 480px) {
    .site-header nav a { font-size: 13px; padding: 0 8px; }
    h1 { font-size: 26px; }
    .plan-price strong { font-size: 26px; }
}

/* ──────────────────────────────
   Reference preview
   ────────────────────────────── */
.reference-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.reference-card {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 28px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--surface);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.reference-thumb {
    max-height: 240px;
    background: var(--bg-subtle);
    overflow: hidden;
}

.reference-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reference-card-body {
    padding: 32px 32px 32px 0;
}

.reference-card-body > span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent-text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.reference-card-body h2 {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 800;
}

.reference-card-body p {
    color: var(--text-sub);
    font-size: 15px;
    line-height: 1.7;
}

.reference-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.reference-preview-button,
.reference-open-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 18px;
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.reference-preview-button {
    border: 0;
    background: var(--accent);
    color: #fff;
}

.reference-preview-button:hover {
    background: var(--accent-dark);
}

.reference-open-link {
    border: 1.5px solid var(--line-strong);
    color: var(--text);
    background: #fff;
}

/* Fullscreen preview modal */
.reference-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #202124;
    display: flex;
    flex-direction: column;
}

.reference-preview-modal[hidden] {
    display: none;
}

.reference-preview-header {
    height: 60px;
    flex-shrink: 0;
    padding: 0 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.reference-preview-header strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
}

.reference-device-tabs {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: var(--bg-subtle);
}

.reference-device-tabs button,
#referencePreviewClose {
    border: 0;
    font-family: var(--font);
    cursor: pointer;
}

.reference-device-tabs button {
    height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: transparent;
    color: var(--text-sub);
    font-size: 13px;
    font-weight: 700;
}

.reference-device-tabs button.active {
    background: var(--accent);
    color: #fff;
}

#referencePreviewClose {
    height: 34px;
    padding: 0 14px;
    border-radius: var(--r-sm);
    background: var(--text);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.reference-preview-body {
    flex: 1;
    overflow: auto;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.reference-iframe-frame {
    height: calc(100vh - 108px);
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
    transition: width .2s ease;
}

.reference-iframe-frame.pc {
    width: min(1440px, 100%);
}

.reference-iframe-frame.mobile {
    width: 390px;
    max-width: 100%;
}

.reference-iframe-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #fff;
}

@media (max-width: 900px) {
    .reference-card {
        grid-template-columns: 1fr;
    }

    .reference-card-body {
        padding: 0 22px 24px;
    }

    .reference-thumb {
        min-height: 220px;
    }

    .reference-preview-header {
        height: auto;
        min-height: 60px;
        padding: 10px 14px;
        flex-wrap: wrap;
    }

    .reference-preview-body {
        padding: 12px;
    }

    .reference-iframe-frame {
        height: calc(100vh - 96px);
        border-radius: 10px;
    }
}

/* =====================================================
   One-page refresh overrides
   ===================================================== */
.quick-menu {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 120;
    display: grid;
    gap: 10px;
    width: min(220px, calc(100vw - 32px));
}

.quick-menu-button {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 16px;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 20px 45px rgba(17, 24, 39, .16);
    backdrop-filter: blur(14px);
}

.quick-menu-button span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.quick-menu-button strong {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.quick-menu-kakao {
    background: rgba(254, 229, 0, .96);
    color: #111827;
}

.quick-menu-call {
    background: rgba(17, 24, 39, .96);
    color: #fff;
}

.contact-cta-section {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
    margin-top: 56px;
}

.contact-cta-copy {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #111827;
    color: #fff;
    box-shadow: var(--shadow-card);
}

.contact-cta-copy h2 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 30px;
    line-height: 1.25;
}

.contact-cta-copy > p:not(.eyebrow) {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.75;
}

.contact-cta-copy .eyebrow {
    color: #a7f3d0;
}

.contact-cta-points {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.contact-cta-points li {
    position: relative;
    padding-left: 18px;
    color: #e5e7eb;
    font-size: 14px;
}

.contact-cta-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #34d399;
}

.contact-form-panel {
    max-width: none;
}

.dual-action {
    gap: 12px;
    flex-wrap: wrap;
}

.reference-list-preview .reference-card {
    grid-template-columns: 320px minmax(0, 1fr);
}

a.select-plan-button {
    text-decoration: none;
}

.selected-plan-action {
    display: none !important;
}

@media (max-width: 900px) {
    body {
        padding-bottom: 156px;
    }

    .quick-menu {
        right: 16px;
        left: 16px;
        bottom: 16px;
        width: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-menu-button {
        min-height: 72px;
        justify-content: center;
    }

    .contact-cta-section,
    .reference-list-preview .reference-card {
        grid-template-columns: 1fr;
    }

    .contact-cta-copy {
        padding: 24px 22px;
    }

    .contact-cta-copy h2 {
        font-size: 24px;
    }

    .mini-plan-card {
        min-height: 0;
    }

    .mini-plan-title {
        font-size: 20px;
    }

    .mini-plan-price {
        font-size: 30px;
    }
}

.process-section {
    position: relative;
    padding-top: 56px;
    margin-top: 0;
    padding-bottom: 56px;
}

.process-section::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--line);
}

.process-section .section-heading {
    margin-bottom: 24px;
}

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

@media (max-width: 900px) {
    .process-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}
