/* Site-01 Unique Styles */
:root {
    --jc-bg-dark: #1a1a2c;
    --jc-bg-card: #242440;
    --jc-bg-alt: #1e1e32;
    --jc-white: #ffffff;
    --jc-gray: #a8a8c0;
    --jc-gradient: linear-gradient(90deg, #FB8466 0%, #BD5BD4 33%, #7473FA 66%, #53B2FA 100%);
    --jc-gradient-hover: linear-gradient(90deg, #fc9680 0%, #c970dc 33%, #8888fb 66%, #6bc4fb 100%);
    --jc-radius: .37333rem;
    --jc-radius-lg: .6rem;
    --jc-border: .02667rem;
    --jc-transition: .25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--jc-bg-dark);
    color: var(--jc-white);
    line-height: 1.65;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.jc-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Navbar */
.jc-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(26, 26, 44, 0.92);
    backdrop-filter: blur(12px);
    transition: var(--jc-transition);
}
.jc-navbar-scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.jc-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
    padding: 1rem 1.25rem;
}
.jc-brand-img { height: 38px; }
.jc-nav-actions { display: flex; gap: .6rem; }

/* Buttons */
.jc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .875rem;
    font-weight: 600;
    padding: .55rem 1.3rem;
    border: var(--jc-border) solid transparent;
    border-radius: var(--jc-radius);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--jc-transition);
}
.jc-btn-outline {
    background: transparent;
    border-color: var(--jc-white);
    color: var(--jc-white);
}
.jc-btn-outline:hover {
    background: rgba(255,255,255,.12);
    transform: translateY(-2px);
}
.jc-btn-gradient {
    background: var(--jc-gradient);
    color: var(--jc-white);
}
.jc-btn-gradient:hover {
    background: var(--jc-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(116,115,250,.35);
}
.jc-btn-xl {
    font-size: 1rem;
    padding: .8rem 2rem;
}

/* Hero */
.jc-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 1.25rem 4rem;
    text-align: center;
    position: relative;
}
.jc-hero::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(116,115,250,.18) 0%, transparent 65%);
    pointer-events: none;
}
.jc-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.jc-logo-glow {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}
.jc-logo-glow::after {
    content: '';
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(255,255,255,.22) 0%, transparent 55%);
    filter: blur(25px);
    z-index: -1;
}
.jc-hero-logo {
    width: 180px;
    filter: drop-shadow(0 0 25px rgba(255,255,255,.25));
}
.jc-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: .75rem;
    background: var(--jc-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.jc-hero-text {
    font-size: 1.1rem;
    color: var(--jc-gray);
    margin-bottom: 2rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.jc-hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Sections */
.jc-section { padding: 5rem 0; }
.jc-section-alt { background: var(--jc-bg-alt); }
.jc-section-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.jc-section-desc {
    text-align: center;
    color: var(--jc-gray);
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid */
.jc-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}
.jc-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* Cards */
.jc-card {
    background: var(--jc-bg-card);
    border-radius: var(--jc-radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,.06);
    transition: var(--jc-transition);
}
.jc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,.3);
    border-color: rgba(116,115,250,.25);
}
.jc-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: var(--jc-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.jc-card-icon svg { width: 26px; height: 26px; color: var(--jc-white); }
.jc-card-title { font-size: 1.2rem; margin-bottom: .6rem; }
.jc-card-text { color: var(--jc-gray); font-size: .95rem; }

/* Steps */
.jc-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.jc-step {
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    text-align: center;
    padding: 1.5rem;
}
.jc-step-num {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--jc-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .75rem;
}
.jc-step-title { font-size: 1.15rem; margin-bottom: .5rem; }
.jc-step-text { color: var(--jc-gray); font-size: .95rem; }

/* Features */
.jc-feature {
    background: var(--jc-bg-card);
    padding: 1.5rem;
    border-radius: var(--jc-radius);
    text-align: center;
    border: 1px solid rgba(255,255,255,.05);
}
.jc-feature-title { font-size: 1rem; margin-bottom: .4rem; }
.jc-feature-text { color: var(--jc-gray); font-size: .9rem; }

/* CTA Block */
.jc-cta-block {
    padding: 5rem 0;
    text-align: center;
    position: relative;
}
.jc-cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(251,132,102,.08) 0%, rgba(116,115,250,.1) 100%);
    pointer-events: none;
}
.jc-cta-title { font-size: 2.2rem; margin-bottom: .75rem; position: relative; z-index: 1; }
.jc-cta-text { color: var(--jc-gray); margin-bottom: 2rem; position: relative; z-index: 1; }
.jc-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* Footer */
.jc-footer {
    background: var(--jc-bg-alt);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(255,255,255,.06);
}
.jc-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.jc-footer h4 { font-size: 1rem; margin-bottom: 1rem; }
.jc-footer p { color: var(--jc-gray); font-size: .9rem; line-height: 1.7; }
.jc-footer ul { list-style: none; }
.jc-footer li { margin-bottom: .6rem; }
.jc-footer a { color: var(--jc-gray); font-size: .9rem; transition: var(--jc-transition); }
.jc-footer a:hover { color: var(--jc-white); }
.jc-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.08);
}
.jc-footer-logo { height: 40px; margin-bottom: 1rem; opacity: .85; }
.jc-copyright { font-size: .9rem; color: var(--jc-gray); margin-bottom: .5rem; }
.jc-disclaimer {
    font-size: .85rem;
    color: var(--jc-gray);
    max-width: 580px;
    margin: 0 auto;
    padding: 1rem;
    background: rgba(0,0,0,.2);
    border-radius: var(--jc-radius);
}

/* Legal Pages */
.jc-legal-page {
    padding-top: 100px;
    padding-bottom: 4rem;
    min-height: 100vh;
}
.jc-legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.jc-legal-header h1 {
    font-size: 2.25rem;
    background: var(--jc-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .5rem;
}
.jc-legal-header p { color: var(--jc-gray); }
.jc-legal-content { max-width: 800px; margin: 0 auto; }
.jc-legal-block {
    margin-bottom: 2.5rem;
}
.jc-legal-block h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid rgba(116,115,250,.3);
}
.jc-legal-block h3 {
    font-size: 1.1rem;
    margin: 1.25rem 0 .75rem;
}
.jc-legal-block p {
    color: var(--jc-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.jc-legal-block ul {
    list-style: none;
    padding: 0;
}
.jc-legal-block li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: .65rem;
    color: var(--jc-gray);
    line-height: 1.7;
}
.jc-legal-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55rem;
    width: 6px;
    height: 6px;
    background: var(--jc-gradient);
    border-radius: 50%;
}
.jc-legal-block strong { color: var(--jc-white); }
.jc-legal-block a { color: #7473FA; }
.jc-legal-block a:hover { color: #53B2FA; }
.jc-notice-box {
    background: var(--jc-bg-card);
    padding: 1.75rem;
    border-radius: var(--jc-radius-lg);
    border-left: 4px solid #7473FA;
}
.jc-notice-important { border-left-color: #FB8466; }
.jc-legal-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.1);
}
.jc-contact-card {
    background: var(--jc-bg-card);
    padding: 2rem;
    border-radius: var(--jc-radius-lg);
    text-align: center;
}
.jc-email-large { font-size: 1.25rem; margin: 1rem 0; }
.jc-email-large a { font-weight: 600; }
.jc-faq { margin-top: 1.5rem; }
.jc-faq-item {
    background: var(--jc-bg-card);
    padding: 1.25rem;
    border-radius: var(--jc-radius);
    margin-bottom: 1rem;
}
.jc-faq-item h3 {
    font-size: 1rem;
    margin: 0 0 .5rem;
}
.jc-faq-item p { margin: 0; font-size: .95rem; }

/* Responsive */
@media (max-width: 900px) {
    .jc-hero-title { font-size: 2.4rem; }
    .jc-section-heading { font-size: 1.75rem; }
}
@media (max-width: 600px) {
    .jc-nav-wrap { padding: .85rem 1rem; }
    .jc-brand-img { height: 32px; }
    .jc-btn { font-size: .8rem; padding: .45rem 1rem; }
    .jc-btn-xl { font-size: .9rem; padding: .7rem 1.5rem; }
    .jc-hero { padding: 6rem 1rem 3rem; min-height: auto; }
    .jc-hero-logo { width: 140px; }
    .jc-hero-title { font-size: 2rem; }
    .jc-hero-text { font-size: 1rem; }
    .jc-hero-cta { flex-direction: column; align-items: center; }
    .jc-hero-cta .jc-btn { width: 100%; max-width: 260px; }
    .jc-section { padding: 3.5rem 0; }
    .jc-cta-title { font-size: 1.75rem; }
    .jc-steps { flex-direction: column; align-items: center; }
    .jc-footer-grid { gap: 1.5rem; }
}
