/* 
File Name   : style.css
File Location : /assets/css/style.css
File Explain  : Respecx °øÅë ½ºÅ¸ÀÏ (·£µù + My + Org + Admin)
*/

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {-webkit-text-size-adjust: 100%;}

body {
    font-family: "Inter", "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, "Noto Sans KR", sans-serif;
    background: #f3f4f6;
    color: #111827;
    line-height: 1.6;
}

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

ul,
li {
    list-style: none;
}

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

/* Color tokens */
:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1e4fcc;
    --color-primary-light: #e9f1ff;

    --color-gray-900: #111827;
    --color-gray-700: #374151;
    --color-gray-600: #4b5563;
    --color-gray-400: #9ca3af;
    --color-gray-200: #e5e7eb;
    --color-gray-100: #f3f4f6;

    --color-black: #000000;
    --color-white: #ffffff;

    --color-success: #16a34a;
    --color-warning: #f59e0b;
    --color-danger: #dc2626;

    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    --shadow-soft: 0 4px 12px rgba(15, 23, 42, 0.06);
}

/* Body layout */
.rspx-body {
    background: #f3f4f6;
}

/* Header */
.rspx-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(248, 250, 252, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.rspx-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.rspx-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
}

.rspx-logo {
    width: 130px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rspx-logo-text {
    color: #111827;
    letter-spacing: 0.04em;
}

.rspx-nav {
    display: flex;
    gap: 18px;
    font-size: 14px;
    color: #4b5563;
}

.rspx-nav-link {
    padding: 6px 4px;
    border-radius: 999px;
}

.rspx-nav-link:hover {
    color: #111827;
}

.rspx-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.rspx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
        box-shadow 0.15s ease, transform 0.05s ease;
}

.rspx-btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.rspx-btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
    transform: translateY(-1px);
}

.rspx-btn-outline {
    background: #ffffff;
    color: var(--color-primary);
    border-color: var(--color-primary-light);
}

.rspx-btn-outline:hover {
    border-color: var(--color-primary);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.rspx-btn-text {
    background: transparent;
    color: #4b5563;
    border-color: transparent;
}

.rspx-btn-text:hover {
    color: #111827;
}

/* Section common (·£µù¿ë) */
.rspx-section {
    padding: 72px 0;
}

.rspx-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.rspx-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.rspx-section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom:3px;
}

.rspx-section-title {
    font-size:19px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 3px;
}

.rspx-section-desc {
    font-size:13px;
    color: #4b5563;
}

/* Hero section */
.rspx-hero {
    padding:50px 0 60px 0;
    background: radial-gradient(circle at top left, #e9f1ff 0, #f9fafb 40%, #f3f4f6 100%);
    border-bottom: 1px solid #e5e7eb;
}

.rspx-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.rspx-hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.rspx-hero-title {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: #111827;
    margin-bottom: 14px;
}

.rspx-hero-highlight {
    color: var(--color-primary);
}

.rspx-hero-sub {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 22px;
}

.rspx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.rspx-hero-meta {
    display: flex;
    gap: 18px;
    font-size: 12px;
    color: #6b7280;
}

.rspx-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rspx-hero-meta-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #22c55e;
}

/* Hero mock card */
.rspx-hero-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    padding: 22px 22px 20px 22px;
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.rspx-hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.rspx-hero-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.rspx-hero-card-badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.rspx-hero-card-list {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.rspx-hero-card-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #4b5563;
}

.rspx-hero-card-label {
    color: #6b7280;
}

.rspx-hero-card-value {
    font-weight: 500;
}

/* Features */
.rspx-features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.rspx-feature-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 20px 20px 18px 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #e5e7eb;
}

.rspx-feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.rspx-feature-desc {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 10px;
}

.rspx-feature-meta {
    font-size: 12px;
    color: #6b7280;
}

/* Pricing */
.rspx-pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 36px;
}

.rspx-pricing-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 26px 22px 22px 22px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 8px rgba(15, 23, 42, 0.03);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rspx-pricing-card.highlight {
    border-color: var(--color-primary);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
    position: relative;
}

.rspx-pricing-badge {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.rspx-pricing-name {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.rspx-pricing-size {
    font-size: 12px;
    color: #6b7280;
}

.rspx-pricing-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

.rspx-pricing-price span {
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    margin-left: 4px;
}

.rspx-pricing-desc {
    font-size: 13px;
    color: #4b5563;
}

.rspx-pricing-list {
    font-size: 13px;
    color: #4b5563;
    display: grid;
    gap: 6px;
    margin-bottom: 6px;
}

.rspx-pricing-cta {
    margin-top: auto;
}

.rspx-addons-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.rspx-addon-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px dashed #e5e7eb;
    padding: 18px 18px 16px 18px;
}

.rspx-addon-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.rspx-addon-price {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.rspx-addon-price span {
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
}

.rspx-addon-desc {
    font-size: 13px;
    color: #4b5563;
}

/* Footer */
.rspx-footer {
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    padding: 50px 0;
    margin-top: 40px;
}

.rspx-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.rspx-footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.rspx-footer-desc {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}

.rspx-footer-copy {
    font-size: 12px;
    color: #9ca3af;
}

.rspx-footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: #4b5563;
}

/* Org switch dropdown */
.rspx-org-switch {
    position: relative;
    display: inline-block;
}

.rspx-org-switch-btn {
    min-width:inherit;
}

.rspx-org-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 220px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    padding: 6px 0;
    display: none;
    z-index: 40;
}

.rspx-org-switch:hover .rspx-org-dropdown {
    display: block;
}

.rspx-org-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    font-size: 13px;
    color: #374151;
}

.rspx-org-dropdown-item:hover {
    background: #f9fafb;
}

.rspx-org-dropdown-divider {
    height: 1px;
    margin: 4px 0;
    background: #e5e7eb;
}

.rspx-org-badge-current {
    background:#2563eb;
    color:#fff;
    font-size:10px;
    padding:2px 6px;
    border-radius:4px;
    margin-left:6px;
}

/* Admin layout - light theme */
.rspx-admin {
    padding: 32px 0;
    background: #f3f4f6;
}

.rspx-admin-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 32px 20px;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 24px;
}

/* Sidebar */
.rspx-admin-sidebar {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 16px 14px 18px 14px;
    color: #111827;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.rspx-admin-sidebar-header {
    margin-bottom: 16px;
}

.rspx-admin-sidebar-title {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.rspx-admin-sidebar-sub {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.rspx-admin-nav-section {
    margin-top: 14px;
}

.rspx-admin-nav-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
    margin-bottom: 6px;
    padding: 0 4px;
}

.rspx-admin-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 2px;
}

.rspx-admin-nav-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 9px;
    border-radius: 8px;
    font-size: 13px;
    color: #374151;
}

.rspx-admin-nav-item a span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.rspx-admin-nav-item a:hover {
    background: #f3f4f6;
}

.rspx-admin-nav-item.is-active a {
    background: #e0edff;
    color: #1d4ed8;
}

.rspx-admin-nav-badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #6b7280;
}

/* Admin main */
.rspx-admin-main {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    padding: 18px 18px 22px 18px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.rspx-admin-main-header {
    margin-bottom: 18px;
}

.rspx-admin-main-eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 4px;
}

.rspx-admin-main-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.rspx-admin-main-desc {
    font-size: 13px;
    color: #6b7280;
}

/* Admin table */
.rspx-admin-table {
    width: 100%;
    /*border-collapse: collapse;*/
    font-size: 13px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.rspx-admin-table thead tr {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.rspx-admin-table th,
.rspx-admin-table td {
    padding: 7px 10px;
    text-align: left;
}

.rspx-admin-table th {
    font-weight: 500;
    color: #6b7280;
}

.rspx-admin-table td {
    color: #111827;
    border-top: 1px solid #f3f4f6;
}

/* Admin filter chips */
.rspx-admin-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    margin-bottom: 10px;
}

.rspx-admin-chip {
    padding: 3px 9px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    color: #6b7280;
    text-decoration: none;
    background: #ffffff;
}

.rspx-admin-chip.is-active {
    border-color: #2563eb;
    color: #2563eb;
    background: #e0edff;
}

/* Shell layout (My, Org °øÅë) */
.rspx-shell {
    padding: 32px 0 40px 0;
}

.rspx-shell-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px 40px 20px;
}

/* Page header °øÅë */
.rspx-page-header {
    margin-bottom: 24px;
}

.rspx-page-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 4px;
}

.rspx-page-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #111827;
}

.rspx-page-desc {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

/* Card °øÅë */
.rspx-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 20px 18px 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
}

.rspx-card-soft {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.rspx-card-header {
    margin-bottom: 12px;
}

.rspx-card-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.rspx-card-sub {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

/* Alert °øÅë */
.rspx-alert {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    margin-bottom: 14px;
}

.rspx-alert-success {
    border: 1px solid #bbf7d0;
    background: #ecfdf3;
    color: #166534;
}

.rspx-alert-error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #b91c1c;
}

/* Form °øÅë */
.rspx-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rspx-form-stacked {
    gap: 16px;
}

.rspx-form-header {
    margin-bottom: 12px;
}

.rspx-form-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rspx-form-step-index {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rspx-form-step-text {
    flex: 1;
}

.rspx-form-step-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px;
}

.rspx-form-step-desc {
    font-size: 13px;
    color: #6b7280;
}

.rspx-form-field {
    display: flex;
    flex-direction: column;
    gap: 3px;
	margin-bottom:15px;
}

.rspx-field-label {
    font-size: 13px;
    font-weight: 500;
    color: #111827; padding-left:13px;
}

.rspx-field-control {
    position: relative;
}

.rspx-input,
.rspx-select {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 0 12px;
    font-size: 14px;
    color: #111827;
    background-color: #ffffff;
}

.rspx-input:focus,
.rspx-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px #e5edff;
}

.rspx-textarea {
    width: 100%;
    min-height: 120px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 8px 12px;
    font-size: 14px;
    color: #111827;
    background-color: #ffffff;
    resize: vertical;
}

.rspx-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px #e5edff;
}

.rspx-input-file {
    width: 100%;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    font-size: 13px;
    background-color: #ffffff;
}

.rspx-field-help {
    font-size:12px;
    color: #6b7280;
    margin: 2px 0 0 0; padding-left:13px;
}

.rspx-form-grid {
    display: grid;
    gap: 12px;
}

.rspx-form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rspx-form-grid-3-1 {
    grid-template-columns: 3fr 1fr;
}

@media (max-width: 800px) {
    .rspx-form-grid-2,
    .rspx-form-grid-3-1 {
        grid-template-columns: minmax(0, 1fr);
    }
}

.rspx-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.rspx-record-actions {
    margin-top: 4px;
}

.rspx-btn-half {
    flex: 1;
    text-align: center;
}

.rspx-btn-third {
    flex: 1;
    text-align: center;
}

/* Table °øÅë (My, Org ¸ñ·Ï) */
.rspx-table-wrapper {
    overflow-x: auto;
}

.rspx-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    background: #ffffff;
}

.rspx-table th,
.rspx-table td {
    padding: 10px 10px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    white-space: nowrap;
}

.rspx-table th {
    font-weight: 500;
    color: #6b7280;
    font-size: 12px;
}

.rspx-table tbody tr:last-child td {
    border-bottom: none;
}

.rspx-table-empty {
    text-align: center;
    color: #9ca3af;
    padding: 14px 10px;
}

/* Badge / Status °øÅë */
.rspx-text-strong {
    font-weight: 500;
    color: #111827;
}

.rspx-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 999px;
}

.rspx-badge-pill {
    border-radius: 999px;
}

.rspx-badge-soft {
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
    color: #111827;
}

.rspx-status {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid transparent;
}

.rspx-status-success {
    background: #ecfdf3;
    border-color: #bbf7d0;
    color: #166534;
}

.rspx-status-pending {
    background: #fefce8;
    border-color: #fef08a;
    color: #854d0e;
}

.rspx-status-danger {
    background: #fef2f2;
    border-color: #fecaca;
    color: #b91c1c;
}

.rspx-table-muted {
    font-size: 12px;
    color: #9ca3af;
}

/* Plan ¼±ÅÃ °øÅë (Á¶Á÷ »ý¼º, Á¶Á÷ ¼³Á¤) */
.rspx-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

@media (max-width: 900px) {
    .rspx-plan-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.rspx-plan-item {
    position: relative;
}

.rspx-plan-input {
    display: none;
}

.rspx-plan-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 14px 14px 12px 14px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.16s ease;
}

.rspx-plan-size {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
}

.rspx-plan-name {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}

.rspx-plan-price {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
}

.rspx-plan-note {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.rspx-plan-card:hover {
    border-color: #111827;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.rspx-plan-input:checked + .rspx-plan-card {
    border-color: #111827;
    background: #111827;
    color: #ffffff;
}

.rspx-plan-input:checked + .rspx-plan-card .rspx-plan-size,
.rspx-plan-input:checked + .rspx-plan-card .rspx-plan-name,
.rspx-plan-input:checked + .rspx-plan-card .rspx-plan-note {
    color: #e5e7eb;
}

.rspx-plan-input:checked + .rspx-plan-card .rspx-plan-price {
    color: #ffffff;
}

/* Addon ¼±ÅÃ °øÅë */
.rspx-addon-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rspx-addon-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 15px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    cursor: pointer;
    font-size: 13px;
}

.rspx-addon-pill input {
    width: 16px;
    height: 16px;
}

.rspx-addon-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.rspx-addon-title {
    font-weight: 500;
    color: #111827;
}

.rspx-addon-desc {
    font-size: 12px;
    color: #6b7280;
}

.rspx-addon-price {
    font-size: 12px;
    font-weight: 500;
    color: #111827;
    white-space: nowrap;
}

.rspx-addon-pill:hover {
    border-color: #111827;
    background: #f3f4f6;
}

/* Meta info ºí·° (Á¶Á÷ ¼³Á¤ µî) */
.rspx-meta-section {
    margin-bottom: 14px;
}

.rspx-meta-header {
    margin-bottom: 8px;
}

.rspx-meta-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.rspx-meta-desc {
    font-size: 12px;
    color: #6b7280;
}

.rspx-meta-value {
    font-size: 13px;
    color: #111827;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.rspx-meta-muted {
    font-size: 12px;
    color: #9ca3af;
}

/* Divider */
.rspx-divider {
    margin: 14px 0;
    border-top: 1px solid #f3f4f6;
}

/* Responsive */
@media (max-width: 960px) {
    .rspx-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .rspx-pricing-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rspx-admin-inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .rspx-header-inner {
        flex-wrap: wrap;
    }

    .rspx-nav {
        display: none;
    }

    .rspx-features-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .rspx-pricing-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

    .rspx-addons-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

    .rspx-section {
        padding: 56px 0;
    }
}
