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

:root {
    --bg: #06111d;
    --bg-soft: #0b1826;
    --panel: #0f2134;
    --panel-2: #122a40;
    --text: #edf5ff;
    --muted: #a5b7cc;
    --line: rgba(59, 214, 255, 0.16);
    --accent: #3bd6ff;
    --accent-2: #80f2ff;
}

html {
    scroll-behavior: smooth;
}

body.jc-body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #06111d 0%, #0a1724 100%);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}

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

.jc-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.jc-wrap--narrow {
    max-width: 980px;
}

.jc-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(6, 17, 29, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(59, 214, 255, 0.08);
}

.jc-header__inner {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.jc-logo {
    text-decoration: none;
    color: var(--accent);
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jc-header__line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 14px rgba(59, 214, 255, 0.22);
}

.jc-nav {
    position: relative;
}

.jc-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
}

.jc-nav__list a {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.jc-nav__list a:hover {
    color: var(--text);
}

.jc-nav__toggle,
.jc-nav__button {
    display: none;
}

.jc-section {
    padding: 88px 24px;
}

.jc-section--soft {
    background: linear-gradient(180deg, rgba(15, 33, 52, 0.55), rgba(6, 17, 29, 0));
}

.jc-hero__grid,
.jc-practice,
.jc-contact {
    display: grid;
    grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
    gap: 44px;
    align-items: center;
}

.jc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(59, 214, 255, 0.1);
    border: 1px solid rgba(59, 214, 255, 0.2);
    color: var(--accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.jc-hero h1,
.jc-head h2,
.jc-contact h2 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.04;
    margin-bottom: 18px;
}

.jc-head h2,
.jc-contact h2 {
    font-size: clamp(30px, 4vw, 48px);
}

.jc-lead,
.jc-hero p,
.jc-card p,
.jc-faq__item p,
.jc-contact p,
.jc-list li,
.jc-footer {
    color: var(--muted);
    font-size: 18px;
}

.jc-frame,
.jc-card,
.jc-faq__item,
.jc-form {
    background: linear-gradient(180deg, rgba(15, 33, 52, 0.96), rgba(10, 23, 36, 0.98));
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.jc-frame {
    padding: 18px;
    position: relative;
}

.jc-frame img,
.jc-practice__visual img {
    width: 100%;
    border-radius: 22px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.jc-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(6, 17, 29, 0.86);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    border: 1px solid rgba(59, 214, 255, 0.18);
}

.jc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.jc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    border: none;
    cursor: pointer;
}

.jc-btn--primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #04101a;
}

.jc-btn--ghost,
.jc-btn--secondary {
    border: 1px solid rgba(59, 214, 255, 0.2);
    color: var(--text);
    background: transparent;
}

.jc-head {
    margin-bottom: 36px;
}

.jc-grid {
    display: grid;
    gap: 20px;
}

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

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

.jc-card,
.jc-form {
    padding: 28px;
}

.jc-card h3,
.jc-plan h3 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.jc-list {
    list-style: none;
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.jc-list li {
    position: relative;
    padding-left: 18px;
}

.jc-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
}

.jc-plan {
    display: flex;
    flex-direction: column;
}

.jc-plan--accent {
    transform: translateY(-10px);
    border-color: rgba(59, 214, 255, 0.28);
}

.jc-price {
    color: var(--accent);
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 18px;
}

.jc-plan .jc-btn {
    margin-top: auto;
}

.jc-faq {
    display: grid;
    gap: 14px;
}

.jc-faq__item {
    padding: 22px 24px;
}

.jc-faq__item summary {
    list-style: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 800;
}

.jc-faq__item summary::-webkit-details-marker {
    display: none;
}

.jc-faq__item p {
    margin-top: 14px;
}

.jc-form {
    display: grid;
    gap: 14px;
}

.jc-form input,
.jc-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 16px 18px;
    font: inherit;
}

.jc-form textarea {
    resize: vertical;
    min-height: 120px;
}

.jc-footer {
    padding: 28px 24px 42px;
    border-top: 1px solid rgba(59, 214, 255, 0.08);
}

.jc-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.jc-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.jc-footer nav a {
    color: var(--muted);
    text-decoration: none;
}

@media (max-width: 980px) {
    .jc-hero__grid,
    .jc-practice,
    .jc-contact,
    .jc-grid--3,
    .jc-grid--4 {
        grid-template-columns: 1fr;
    }

    .jc-plan--accent {
        transform: none;
    }

    .jc-header__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .jc-nav__button {
        width: 48px;
        height: 48px;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
    }

    .jc-nav__button span {
        display: block;
        height: 2px;
        border-radius: 99px;
        background: var(--text);
    }

    .jc-nav__list {
        position: absolute;
        right: 0;
        top: calc(100% + 12px);
        min-width: 240px;
        padding: 16px;
        border-radius: 22px;
        background: rgba(6, 17, 29, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

    .jc-nav__toggle:checked ~ .jc-nav__list {
        display: flex;
    }
}

@media (max-width: 720px) {
    .jc-section,
    .jc-header__inner,
    .jc-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .jc-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .jc-logo {
        font-size: 24px;
    }

    .jc-hero h1,
    .jc-head h2,
    .jc-contact h2 {
        font-size: 34px;
    }

    .jc-lead,
    .jc-hero p,
    .jc-card p,
    .jc-faq__item p,
    .jc-contact p,
    .jc-list li,
    .jc-footer {
        font-size: 16px;
    }

    .jc-frame,
    .jc-card,
    .jc-faq__item,
    .jc-form {
        border-radius: 22px;
    }

    .jc-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
