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

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', 'Noto Sans SC', sans-serif;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(30, 41, 59, 0.75) 50%,
        rgba(15, 23, 42, 0.9) 100%
    );
    z-index: 1;
}

.bg-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6), transparent);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: #38bdf8;
}

.lang-switcher {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lang-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: #38bdf8;
    color: #0f172a;
}

main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    text-align: center;
    margin-bottom: 60px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #38bdf8;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 .highlight {
    color: #38bdf8;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 40px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(56, 189, 248, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #38bdf8;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 30px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    header {
        padding: 16px 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    main {
        padding: 100px 20px 60px;
    }

    .stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }
}


.top-nav {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.top-nav a,
.footer-links a,
.support-line a,
.plain-footer a,
.support-box a,
.legal-main a {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 700;
}

.top-nav a:hover,
.footer-links a:hover,
.support-line a:hover,
.plain-footer a:hover,
.support-box a:hover,
.legal-main a:hover {
    text-decoration: underline;
}

.plan-preview {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px;
    margin: 20px 0 36px;
    backdrop-filter: blur(12px);
}

.plan-preview-head {
    text-align: center;
    margin-bottom: 22px;
}

.plan-preview h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.plan-preview p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

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

.mini-plan {
    display: grid;
    gap: 5px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(125, 211, 252, 0.2);
    text-align: center;
}

.mini-plan strong {
    color: #38bdf8;
    font-size: 1.5rem;
}

.mini-plan span {
    color: rgba(255, 255, 255, 0.72);
}

.mini-plan b {
    color: #fff;
}

.inline-link {
    display: block;
    width: fit-content;
    margin: 22px auto 0;
    color: #0f172a;
    background: #7dd3fc;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 800;
    text-decoration: none;
}

.support-line,
.footer-links {
    margin-top: 10px;
}

.footer-links span {
    padding: 0 8px;
}

.plain-page {
    min-height: 100vh;
    color: #0f172a;
    background: #f4f7fb;
}

.plain-header {
    position: static;
    padding: 22px 40px;
    background: #0f172a;
}

.pricing-main,
.legal-main {
    display: block;
    max-width: 1180px;
    min-height: auto;
    padding: 54px 28px 40px;
}

.pricing-hero {
    text-align: center;
    margin-bottom: 36px;
}

.pricing-hero h1,
.legal-main h1 {
    font-size: 2.5rem;
    margin: 12px 0;
}

.pricing-hero p {
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.7;
    color: #475569;
}

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

.pricing-card {
    background: #fff;
    border: 2px solid #111827;
    border-radius: 18px;
    padding: 28px;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-card strong {
    display: block;
    font-size: 2.3rem;
    color: #0f172a;
}

.pricing-card h2 {
    font-size: 1.45rem;
    line-height: 1.25;
}

.pricing-card p,
.pricing-card li {
    color: #475569;
    line-height: 1.5;
}

.pricing-card ul {
    padding-left: 18px;
    margin-bottom: auto;
}

.pricing-card a {
    display: block;
    text-align: center;
    padding: 13px 16px;
    border-radius: 10px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.support-box {
    margin-top: 28px;
    padding: 26px;
    background: #fff;
    border: 1px solid #dbe3ef;
    border-radius: 16px;
}

.support-box h2 {
    margin-bottom: 8px;
}

.plain-footer {
    color: #475569;
    padding: 28px;
    background: #e8eef6;
}

.plain-footer p {
    margin: 6px 0;
}

.legal-main {
    background: #fff;
    border-radius: 16px;
    margin-top: 34px;
    margin-bottom: 34px;
    border: 1px solid #dbe3ef;
}

.legal-main h2 {
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-main p {
    color: #475569;
    line-height: 1.75;
}

@media (max-width: 900px) {
    header,
    .plain-header {
        position: static;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 18px 20px;
    }

    .lang-switcher {
        flex-wrap: wrap;
    }

    .top-nav {
        gap: 12px;
        font-size: 0.9rem;
    }

    .mini-plans,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .plan-preview {
        padding: 22px;
    }

    .pricing-main,
    .legal-main {
        padding: 32px 18px;
    }
}

/* Pricing page v2 */
.pricing-page {
    background: #f5f7fb;
}

.pricing-shell {
    max-width: 1240px;
    padding: 46px 28px 42px;
}

.pricing-hero-card {
    text-align: left;
    padding: 38px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    margin-bottom: 18px;
}

.pricing-hero-card .hero-badge {
    border-radius: 999px;
    color: #0f766e;
    border-color: #99f6e4;
    background: #ecfdf5;
    margin-bottom: 14px;
}

.pricing-hero-card h1 {
    max-width: 760px;
    font-size: 2.65rem;
    line-height: 1.18;
    margin: 0 0 16px;
    color: #0f172a;
}

.pricing-hero-card p {
    max-width: 780px;
    margin: 0;
    font-size: 1.05rem;
    color: #475569;
}

.pricing-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.price-primary,
.price-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

.price-primary {
    background: #111827;
    color: #fff;
}

.price-secondary {
    border: 1px solid #cbd5e1;
    color: #0f172a;
    background: #fff;
}

.plan-note {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0 34px;
}

.plan-note div {
    padding: 18px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
}

.plan-note strong,
.plan-note span {
    display: block;
}

.plan-note strong {
    color: #0f172a;
    font-size: 1rem;
    margin-bottom: 7px;
}

.plan-note span {
    color: #64748b;
    line-height: 1.5;
}

.pricing-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin: 28px 0 14px;
}

.pricing-section-head p {
    order: 2;
    color: #0f766e;
    font-weight: 800;
    background: #ccfbf1;
    border-radius: 999px;
    padding: 7px 12px;
}

.pricing-section-head h2 {
    order: 1;
    font-size: 1.55rem;
    color: #0f172a;
}

.yearly-head p {
    color: #92400e;
    background: #fef3c7;
}

.pricing-grid-live {
    gap: 18px;
}

.live-plan {
    position: relative;
    border: 1px solid #d1d9e6;
    border-radius: 8px;
    min-height: 330px;
    padding: 24px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.07);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.live-plan:hover {
    transform: translateY(-3px);
    border-color: #0f766e;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.featured-plan {
    border-color: #0f766e;
    box-shadow: 0 18px 46px rgba(15, 118, 110, 0.16);
}

.yearly-plan:hover {
    border-color: #f59e0b;
}

.plan-topline {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 800;
}

.plan-topline span {
    color: #0f766e;
}

.yearly-plan .plan-topline span {
    color: #b45309;
}

.plan-topline b {
    color: #475569;
    font-weight: 800;
}

.live-plan strong {
    font-size: 2.55rem;
    letter-spacing: 0;
    color: #0f172a;
}

.live-plan h2 {
    font-size: 1.42rem;
    line-height: 1.25;
    color: #111827;
}

.live-plan p {
    color: #475569;
}

.live-plan li {
    margin-bottom: 6px;
}

.live-plan a:hover,
.price-primary:hover {
    background: #0f766e;
}

.pricing-compare {
    margin-top: 28px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.pricing-compare h2 {
    padding: 20px 22px;
    font-size: 1.25rem;
    color: #0f172a;
    border-bottom: 1px solid #e2e8f0;
}

.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 16px 22px;
    border-bottom: 1px solid #edf2f7;
}

.compare-row:last-child {
    border-bottom: 0;
}

.compare-row span {
    color: #64748b;
}

.compare-row b {
    color: #0f172a;
}

.pricing-support {
    border-radius: 8px;
    border-color: #dbe3ef;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.legal-links {
    margin-top: 12px;
}

@media (max-width: 900px) {
    .pricing-shell {
        padding: 28px 16px;
    }

    .pricing-hero-card {
        padding: 26px;
    }

    .pricing-hero-card h1 {
        font-size: 2rem;
    }

    .plan-note {
        grid-template-columns: 1fr;
    }

    .pricing-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .pricing-section-head p,
    .pricing-section-head h2 {
        order: unset;
    }

    .compare-row {
        grid-template-columns: 1fr;
    }
}

/* Public pricing page - matched to the original LinkUCSS landing visual style. */
body.plain-page.pricing-page {
  min-height: 100vh;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(12, 20, 36, 0.92), rgba(22, 31, 49, 0.82)),
    url('bg.png') center / cover fixed no-repeat;
}

body.plain-page.pricing-page .plain-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 26px 40px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.12));
  backdrop-filter: blur(18px);
}

body.plain-page.pricing-page .plain-header .logo,
body.plain-page.pricing-page .plain-header .logo a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

body.plain-page.pricing-page .plain-header .logo span {
  color: #38bdf8;
}

body.plain-page.pricing-page .top-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

body.plain-page.pricing-page .top-nav a,
body.plain-page.pricing-page .plain-footer a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  text-decoration: none;
}

body.plain-page.pricing-page .top-nav a:hover,
body.plain-page.pricing-page .plain-footer a:hover {
  color: #38bdf8;
}

body.plain-page.pricing-page main.pricing-main,
body.plain-page.pricing-page .pricing-main {
  display: block;
  width: min(1180px, calc(100% - 48px));
  min-height: auto;
  margin: 0 auto;
  padding: 74px 0 70px;
}

body.plain-page.pricing-page .pricing-hero-card,
body.plain-page.pricing-page .pricing-card,
body.plain-page.pricing-page .pricing-compare,
body.plain-page.pricing-page .support-box {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.58);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
}

body.plain-page.pricing-page .pricing-hero-card {
  padding: 42px;
  margin-bottom: 28px;
  text-align: center;
}

body.plain-page.pricing-page .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(56, 189, 248, 0.42);
  border-radius: 999px;
  color: #38bdf8;
  background: rgba(14, 165, 233, 0.16);
  font-weight: 800;
}

body.plain-page.pricing-page h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05;
  letter-spacing: 0;
}

body.plain-page.pricing-page .hero-copy,
body.plain-page.pricing-page .pricing-intro,
body.plain-page.pricing-page .plan-note,
body.plain-page.pricing-page .support-box p {
  color: rgba(255, 255, 255, 0.76);
}

body.plain-page.pricing-page .pricing-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 30px 0 18px;
}

body.plain-page.pricing-page .pricing-section-head h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

body.plain-page.pricing-page .pricing-grid-live {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

body.plain-page.pricing-page .pricing-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  overflow: hidden;
}

body.plain-page.pricing-page .pricing-card.featured-plan {
  border-color: rgba(56, 189, 248, 0.55);
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.28), rgba(15, 23, 42, 0.66));
}

body.plain-page.pricing-page .pricing-card.yearly-plan {
  border-color: rgba(255, 255, 255, 0.22);
}

body.plain-page.pricing-page .plan-topline,
body.plain-page.pricing-page .badge-soft {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.13);
  font-size: 13px;
  font-weight: 800;
}

body.plain-page.pricing-page .pricing-card h3 {
  margin: 18px 0 10px;
  font-size: 26px;
}

body.plain-page.pricing-page .price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 14px 0;
}

body.plain-page.pricing-page .price-line strong {
  font-size: 42px;
  line-height: 1;
}

body.plain-page.pricing-page .price-line span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

body.plain-page.pricing-page .plan-specs {
  display: grid;
  gap: 8px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
}

body.plain-page.pricing-page .btn,
body.plain-page.pricing-page .primary-btn,
body.plain-page.pricing-page .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(14, 165, 233, 0.28);
}

body.plain-page.pricing-page .secondary-btn {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

body.plain-page.pricing-page .pricing-compare,
body.plain-page.pricing-page .support-box {
  margin-top: 22px;
  padding: 28px;
}

body.plain-page.pricing-page .compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

body.plain-page.pricing-page .compare-row strong {
  color: #fff;
}

body.plain-page.pricing-page .plain-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px 24px 48px;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  body.plain-page.pricing-page .pricing-grid-live,
  body.plain-page.pricing-page .compare-row {
    grid-template-columns: 1fr;
  }

  body.plain-page.pricing-page .plain-header,
  body.plain-page.pricing-page .pricing-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body.plain-page.pricing-page main.pricing-main {
    width: min(100% - 28px, 1180px);
    padding-top: 36px;
  }

  body.plain-page.pricing-page .pricing-hero-card,
  body.plain-page.pricing-page .pricing-card,
  body.plain-page.pricing-page .pricing-compare,
  body.plain-page.pricing-page .support-box {
    border-radius: 18px;
    padding: 22px;
  }
}

/* Pricing page final class compatibility: keep the original landing visual style. */
body.plain-page.pricing-page .pricing-hero-card .hero-badge,
body.plain-page.pricing-page .hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  background: rgba(14, 165, 233, 0.18);
  color: #7dd3fc;
  font-weight: 800;
  letter-spacing: 0;
}

body.plain-page.pricing-page .pricing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

body.plain-page.pricing-page .price-primary,
body.plain-page.pricing-page .price-secondary,
body.plain-page.pricing-page .pricing-card > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

body.plain-page.pricing-page .price-primary {
  background: #38bdf8;
  color: #06121d;
  box-shadow: 0 18px 34px rgba(56, 189, 248, 0.22);
}

body.plain-page.pricing-page .price-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.13);
  color: #f8fafc;
}

body.plain-page.pricing-page .pricing-card > strong {
  display: block;
  color: #f8fafc;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  margin: 10px 0 8px;
}

body.plain-page.pricing-page .pricing-card > p {
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.65;
  margin: 0 0 18px;
}

body.plain-page.pricing-page .pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  color: rgba(241, 245, 249, 0.92);
}

body.plain-page.pricing-page .pricing-card li::before {
  content: "✓";
  color: #38bdf8;
  font-weight: 900;
  margin-right: 9px;
}

body.plain-page.pricing-page .pricing-card > a {
  width: 100%;
  background: rgba(56, 189, 248, 0.95);
  color: #06121d;
}

body.plain-page.pricing-page .plan-note {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

body.plain-page.pricing-page .plan-note > div {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(15, 23, 42, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.plain-page.pricing-page .plan-note strong {
  display: block;
  color: #f8fafc;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

body.plain-page.pricing-page .plan-note span {
  display: block;
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.55;
}

body.plain-page.pricing-page .pricing-support a,
body.plain-page.pricing-page .legal-links a,
body.plain-page.pricing-page .plain-footer a {
  color: #7dd3fc;
  font-weight: 800;
}

@media (max-width: 900px) {
  body.plain-page.pricing-page .pricing-actions,
  body.plain-page.pricing-page .plan-note {
    grid-template-columns: 1fr;
  }

  body.plain-page.pricing-page .price-primary,
  body.plain-page.pricing-page .price-secondary {
    width: 100%;
  }
}

/* Pricing visibility fix: keep dark glass, make all public pricing text readable. */
body.plain-page.pricing-page .pricing-hero-card h1,
body.plain-page.pricing-page .pricing-section-head h2,
body.plain-page.pricing-page .pricing-card h2,
body.plain-page.pricing-page .pricing-card h3,
body.plain-page.pricing-page .support-box h2,
body.plain-page.pricing-page .pricing-compare h2 {
  color: #f8fafc;
}

body.plain-page.pricing-page .pricing-hero-card p,
body.plain-page.pricing-page .pricing-section-head p,
body.plain-page.pricing-page .pricing-card p,
body.plain-page.pricing-page .pricing-card li,
body.plain-page.pricing-page .compare-row,
body.plain-page.pricing-page .support-box p {
  color: rgba(226, 232, 240, 0.88);
}

body.plain-page.pricing-page .pricing-card .plan-topline span,
body.plain-page.pricing-page .pricing-card .plan-topline strong {
  color: #7dd3fc;
}

/* Pricing hero balance: no empty right-side gap, keep original glass style. */
body.plain-page.pricing-page .pricing-hero-card {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

body.plain-page.pricing-page .pricing-hero-card h1,
body.plain-page.pricing-page .pricing-hero-card p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

body.plain-page.pricing-page .pricing-actions {
  justify-content: center;
}

/* Pricing section badge color: match LinkUCSS blue. */
body.plain-page.pricing-page .pricing-section-head p {
  color: #38c8ff;
}

/* Keep pricing section badges readable on dark background. */
body.plain-page.pricing-page .pricing-section-head p,
body.plain-page.pricing-page .yearly-head p {
  color: #38c8ff !important;
  background: rgba(56, 200, 255, 0.16);
  border: 1px solid rgba(56, 200, 255, 0.45);
  box-shadow: 0 10px 24px rgba(56, 200, 255, 0.12);
}
