:root {
    --ch-hero: #ff2d55;
    --ch-power: #3d8bff;
    --ch-accent: #ffc400;
    --ch-bg: #070b14;
    --ch-panel: #0f1528;
    --ch-edge: #1e2a45;
    --ch-text: #eef2ff;
    --ch-muted: #8b9dc3;
    --ch-glow: rgba(255, 45, 85, 0.35);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.ch-landing {
    margin: 0;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: var(--ch-bg);
    color: var(--ch-text);
    line-height: 1.5;
}

:root {
    --ch-layout-max: 1120px;
    --ch-layout-gutter: 20px;
    --ch-layout-side: max(
        var(--ch-layout-gutter),
        (100vw - min(var(--ch-layout-max), 100vw - 2 * var(--ch-layout-gutter))) / 2
    );
}

.ch-container {
    width: min(var(--ch-layout-max), calc(100% - 2 * var(--ch-layout-gutter)));
    margin-inline: auto;
}

.ch-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(7, 11, 20, 0.82);
    border-bottom: 1px solid var(--ch-edge);
}

.ch-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
}

.ch-nav .ch-logo {
    flex-shrink: 0;
    overflow: visible;
}

.ch-nav .ch-logo img {
    width: 72px;
    height: 72px;
    margin-right: 0;
    transform: scale(1.55);
    transform-origin: left center;
}

.ch-nav-inner > .ch-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.ch-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ch-text);
    font-weight: 800;
    letter-spacing: 0.08em;
    overflow: visible;
}

.ch-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 36px;
    transform: scale(1.5);
    transform-origin: left center;
}

.ch-nav-links {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px 28px;
    flex: 1;
    min-width: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ch-nav-links li {
    flex: 0 0 auto;
}

.ch-nav-links a {
    display: inline-block;
    color: var(--ch-muted);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.3;
    white-space: nowrap;
}

.ch-nav-links a:hover {
    color: var(--ch-accent);
}

@media (max-width: 1280px) {
    .ch-nav-links a {
        font-size: 13px;
    }

    .ch-nav-links {
        gap: 8px 20px;
    }
}

.ch-page-nav {
    position: relative;
    z-index: 1;
    padding: 10px 0;
    border-bottom: 1px solid var(--ch-edge);
    background: rgba(11, 16, 30, 0.92);
}

.ch-page-nav-accordion {
    border: 1px solid var(--ch-edge);
    border-radius: 12px;
    background: var(--ch-panel);
}

.ch-page-nav-accordion summary {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 10px 16px;
    list-style: none;
}

.ch-page-nav-accordion summary::-webkit-details-marker {
    display: none;
}

.ch-page-nav-chevron {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--ch-accent);
    border-bottom: 2px solid var(--ch-accent);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.ch-page-nav-accordion[open] .ch-page-nav-chevron {
    transform: rotate(-135deg);
}

.ch-page-nav-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0 12px 12px;
}

.ch-page-nav a {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--ch-edge);
    color: var(--ch-muted);
    font-size: 13px;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ch-page-nav a:hover {
    color: var(--ch-accent);
    border-color: rgba(255, 196, 0, 0.45);
}

.ch-page-nav-cta {
    border-color: rgba(255, 45, 85, 0.45) !important;
    color: var(--ch-text) !important;
    background: rgba(255, 45, 85, 0.1);
}

.ch-page-nav-cta:hover {
    background: rgba(255, 45, 85, 0.18);
}

.ch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 12px;
    border: 1px solid rgba(255, 45, 85, 0.5);
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.25), rgba(61, 139, 255, 0.18));
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 32px var(--ch-glow);
    transition: transform 0.15s, box-shadow 0.15s;
}

.ch-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 40px var(--ch-glow);
}

.ch-btn-ghost {
    background: transparent;
    border-color: var(--ch-edge);
    box-shadow: none;
    color: var(--ch-muted);
    text-transform: none;
    font-weight: 600;
}

.ch-btn-ghost:hover {
    color: var(--ch-text);
    border-color: var(--ch-power);
}

.ch-hero {
    position: relative;
    padding: 80px var(--ch-layout-side) 72px;
    overflow: hidden;
    min-height: min(72vh, 640px);
    display: block;
    box-sizing: border-box;
    background-color: #050810;
    background-image: var(--ch-hero-image);
    background-size: cover;
    background-position: 72% center;
    background-repeat: no-repeat;
}

.ch-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(5, 8, 16, 0.97) 0%,
            rgba(5, 8, 16, 0.88) 38%,
            rgba(5, 8, 16, 0.45) 62%,
            rgba(5, 8, 16, 0.12) 100%
        ),
        linear-gradient(180deg, rgba(5, 8, 16, 0.55) 0%, transparent 35%, rgba(5, 8, 16, 0.65) 100%),
        radial-gradient(ellipse at 18% 30%, rgba(255, 45, 85, 0.14), transparent 50%);
}

.ch-hero .ch-container {
    width: 100%;
    max-width: var(--ch-layout-max);
    margin: 0;
    padding: 0;
}

.ch-hero-grid {
    position: relative;
    z-index: 1;
    width: 100%;
}

.ch-hero-content {
    max-width: 560px;
    margin: 0;
    padding: 0;
}

.ch-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 196, 0, 0.4);
    background: rgba(255, 196, 0, 0.08);
    color: var(--ch-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ch-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.ch-hero h1 span {
    background: linear-gradient(90deg, var(--ch-hero), var(--ch-power), var(--ch-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ch-lead,
.ch-hero-sub {
    margin: 0 0 28px;
    font-size: 1.125rem;
    line-height: 1.55;
    color: var(--ch-muted);
    max-width: 52ch;
}

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

.ch-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
}

.ch-stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--ch-accent);
}

.ch-stat--feature .ch-stat-mark {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.2;
}

.ch-stat span {
    font-size: 13px;
    color: var(--ch-muted);
}

.ch-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px dashed rgba(255, 45, 85, 0.35);
    background: repeating-linear-gradient(
            -45deg,
            rgba(255, 45, 85, 0.04),
            rgba(255, 45, 85, 0.04) 8px,
            rgba(61, 139, 255, 0.04) 8px,
            rgba(61, 139, 255, 0.04) 16px
        ),
        rgba(15, 21, 40, 0.8);
    color: var(--ch-muted);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    min-height: 180px;
}

.ch-placeholder--tall {
    min-height: 320px;
}

.ch-placeholder--wide {
    min-height: 140px;
}

.ch-section {
    padding: 64px 0;
}

.ch-section--alt {
    background: rgba(15, 21, 40, 0.55);
    border-block: 1px solid var(--ch-edge);
}

.ch-section-head {
    text-align: center;
    margin-bottom: 40px;
}

.ch-kicker {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ch-hero);
}

.ch-section-head h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.ch-section-head p {
    margin: 12px auto 0;
    max-width: 60ch;
    color: var(--ch-muted);
}

.ch-marketplace-intro {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 36px;
    max-width: min(1100px, 100%);
    margin: 0 auto;
}

.ch-marketplace-intro p {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--ch-muted);
}

.ch-section-head--center {
    text-align: center;
}

.ch-section-head--center p {
    max-width: 52ch;
}

.ch-section-head--after-grid {
    margin-top: 48px;
    margin-bottom: 0;
}

.ch-studio-showcase {
    padding-top: 48px;
    padding-bottom: 56px;
}

.ch-studio-shot-wrap {
    position: relative;
    margin: 36px auto 0;
    max-width: min(100%, 1040px);
}

.ch-studio-shot-link {
    display: block;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--ch-edge);
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 0 80px rgba(61, 139, 255, 0.12);
    background: var(--ch-panel);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ch-studio-shot-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 196, 0, 0.45);
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(61, 139, 255, 0.2);
}

.ch-studio-shot-link:focus-visible {
    outline: 2px solid var(--ch-accent);
    outline-offset: 3px;
}

.ch-studio-shot {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
    pointer-events: none;
}

.ch-studio-shot-cta {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ch-text);
    background: rgba(7, 11, 20, 0.88);
    border: 1px solid rgba(255, 196, 0, 0.55);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.ch-studio-shot-link:hover .ch-studio-shot-cta,
.ch-studio-shot-link:focus-visible .ch-studio-shot-cta {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

.ch-studio-shot-expand {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--ch-edge);
    background: rgba(7, 11, 20, 0.9);
    color: var(--ch-muted);
    text-decoration: none;
    cursor: zoom-in;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ch-studio-shot-expand:hover {
    color: var(--ch-accent);
    border-color: rgba(255, 196, 0, 0.5);
    background: rgba(15, 21, 40, 0.95);
}

.ch-studio-shot-expand:focus-visible {
    outline: 2px solid var(--ch-accent);
    outline-offset: 2px;
}

@media (hover: none) {
    .ch-studio-shot-cta {
        opacity: 1;
    }
}

.ch-video-covers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 8px;
}

.ch-video-cover-item {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.ch-video-cover-media {
    position: relative;
    border-radius: 16px;
    border: 1px solid var(--ch-edge);
    background: linear-gradient(165deg, rgba(15, 21, 40, 0.95), rgba(7, 11, 20, 0.98));
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    aspect-ratio: 9 / 16;
}

.ch-video-cover-player {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: #070b14;
}

.ch-video-cover-item figcaption {
    text-align: center;
    padding: 0 4px;
}

.ch-video-cover-item figcaption strong {
    display: block;
    font-size: 15px;
    color: var(--ch-text);
    margin-bottom: 4px;
}

.ch-video-cover-item figcaption span {
    display: block;
    font-size: 13px;
    color: var(--ch-muted);
    line-height: 1.45;
}

.ch-video-covers-cta-wrap {
    margin: 28px 0 0;
    text-align: center;
}

.ch-video-covers-cta-wrap .ch-btn {
    display: inline-flex;
}

@media (max-width: 900px) {
    .ch-video-covers-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 720px) {
    .ch-video-covers-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}

.ch-studio-points {
    list-style: none;
    margin: 32px auto 0;
    padding: 0;
    max-width: 960px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ch-studio-points li {
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid var(--ch-edge);
    background: rgba(15, 21, 40, 0.65);
}

.ch-studio-points strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--ch-text);
}

.ch-studio-points span {
    display: block;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ch-muted);
}

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

.ch-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ch-carousel-wrap {
    position: relative;
    padding: 0 52px;
}

.ch-carousel-arrow {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--ch-edge);
    border-radius: 50%;
    background: rgba(11, 16, 30, 0.92);
    color: var(--ch-accent);
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.ch-carousel-arrow-icon {
    display: block;
    flex-shrink: 0;
}

.ch-carousel-arrow:hover:not(:disabled) {
    border-color: rgba(255, 196, 0, 0.55);
    background: rgba(255, 45, 85, 0.15);
}

.ch-carousel-arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.ch-carousel-arrow--prev {
    left: 0;
}

.ch-carousel-arrow--next {
    right: 0;
}

.ch-carousel-wrap--categories .ch-carousel-arrow {
    top: min(180px, 24vw);
    transform: translateY(-50%);
}

.ch-carousel-wrap--gallery .ch-carousel-arrow {
    top: 140px;
    transform: translateY(-50%);
    display: none;
}

@media (max-width: 1119px) {
    .ch-carousel-wrap--gallery .ch-carousel-arrow {
        display: flex;
    }
}

.ch-carousel-track {
    flex: 1;
    min-width: 0;
}

.ch-categories-gallery {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: rgba(255, 196, 0, 0.35) transparent;
}

.ch-categories-gallery::-webkit-scrollbar {
    height: 8px;
}

.ch-categories-gallery::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(255, 196, 0, 0.35);
}

.ch-category-card {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: min(320px, 88vw);
    margin: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ch-category-media-link {
    display: block;
    border-radius: 16px;
}

.ch-category-media {
    display: block;
    height: clamp(220px, 28vw, 360px);
    border-radius: 16px;
    border: 1px solid var(--ch-edge);
    overflow: hidden;
    background: linear-gradient(165deg, rgba(15, 21, 40, 0.95), rgba(7, 11, 20, 0.98));
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ch-category-media-link:hover .ch-category-media {
    border-color: rgba(255, 196, 0, 0.45);
    box-shadow: 0 14px 32px rgba(255, 45, 85, 0.18);
}

.ch-category-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    pointer-events: none;
}

.ch-category-body h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.ch-category-body p {
    margin: 0;
    color: var(--ch-muted);
    font-size: 14px;
    line-height: 1.55;
}

.ch-gallery-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.ch-gallery-item {
    flex: 0 0 calc((100% - 64px) / 5);
    min-width: 180px;
    margin: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

.ch-gallery-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: zoom-in;
    border-radius: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ch-gallery-link:hover {
    transform: translateY(-2px);
}

.ch-gallery-link:focus-visible {
    outline: 2px solid var(--ch-accent);
    outline-offset: 3px;
}

.ch-gallery-media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 280px;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid var(--ch-edge);
    background: linear-gradient(165deg, rgba(15, 21, 40, 0.95), rgba(7, 11, 20, 0.98));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ch-gallery-link:hover .ch-gallery-media {
    border-color: rgba(255, 196, 0, 0.45);
    box-shadow: 0 12px 28px rgba(255, 45, 85, 0.15);
}

.ch-gallery-item img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center center;
    pointer-events: none;
}

.ch-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(4, 7, 14, 0.92);
    backdrop-filter: blur(8px);
    cursor: zoom-out;
}

.ch-gallery-lightbox[hidden] {
    display: none !important;
}

.ch-gallery-lightbox-img {
    max-width: min(96vw, 900px);
    max-height: 92vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    cursor: default;
}

.ch-gallery-lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--ch-edge);
    border-radius: 12px;
    background: var(--ch-panel);
    color: var(--ch-text);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.ch-gallery-lightbox-close:hover {
    border-color: var(--ch-accent);
    color: var(--ch-accent);
}

.ch-gallery-item figcaption {
    margin-top: 10px;
    text-align: center;
}

.ch-gallery-item figcaption strong {
    display: block;
    font-size: 14px;
    color: var(--ch-text);
}

.ch-gallery-item figcaption span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--ch-muted);
}

@media (min-width: 1120px) {
    .ch-gallery-row {
        overflow-x: visible;
    }

    .ch-gallery-item {
        flex: 1 1 0;
        min-width: 0;
    }

    .ch-gallery-media {
        height: 300px;
    }
}

@media (max-width: 1100px) {
    .ch-category-card {
        flex: 0 0 calc((100% - 20px) / 2);
        min-width: min(300px, 78vw);
    }
}

@media (max-width: 719px) {
    .ch-carousel-wrap {
        padding: 0 40px;
    }

    .ch-carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .ch-carousel-arrow-icon {
        width: 18px;
        height: 18px;
    }

    .ch-carousel-wrap--categories .ch-carousel-arrow {
        top: 130px;
    }

    .ch-carousel-wrap--gallery .ch-carousel-arrow {
        top: 120px;
    }

    .ch-category-card {
        flex: 0 0 88vw;
        min-width: 88vw;
    }

    .ch-category-media {
        height: 260px;
    }

    .ch-gallery-item {
        flex: 0 0 72vw;
        min-width: 72vw;
    }

    .ch-gallery-media {
        height: 240px;
    }
}

.ch-feature-card,
.ch-price-card {
    padding: 22px;
    border-radius: 16px;
    border: 1px solid var(--ch-edge);
    background: var(--ch-panel);
}

.ch-features-grid .ch-feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ch-feature-icon-link {
    display: block;
    width: fit-content;
    flex-shrink: 0;
    border-radius: 16px;
}

.ch-feature-icon-link:hover {
    transform: none;
}

.ch-feature-icon-link:hover .ch-feature-icon {
    border-color: rgba(255, 196, 0, 0.45);
    box-shadow: 0 8px 24px rgba(255, 45, 85, 0.15);
}

.ch-feature-icon {
    width: 150px;
    height: 150px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center center;
    display: block;
    flex-shrink: 0;
    border: 1px solid var(--ch-edge);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ch-feature-card h3,
.ch-price-card h3 {
    margin: 16px 0 8px;
    font-size: 1.05rem;
}

.ch-feature-card p,
.ch-price-card p {
    margin: 0;
    color: var(--ch-muted);
    font-size: 14px;
    line-height: 1.5;
}

.ch-price-credits {
    margin-bottom: 10px !important;
}

.ch-price-yield {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ch-muted);
}

.ch-price-yield li + li {
    margin-top: 4px;
}

.ch-price-footnote {
    margin: 20px 0 0;
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(139, 157, 195, 0.85);
}

.ch-feature-card--numbered .ch-feature-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ch-hero), var(--ch-power));
    box-shadow: 0 6px 20px rgba(255, 45, 85, 0.25);
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
    flex-shrink: 0;
}

.ch-feature-card--numbered h3 {
    margin-top: 0;
}

.ch-before-after {
    --ch-ba-media-h: clamp(360px, 38vw, 540px);
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    position: relative;
    align-items: flex-start;
    width: 100%;
}

.ch-before-after-item {
    flex: 1 1 calc(50% - 5px);
    max-width: calc(50% - 5px);
    min-width: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.ch-before-after-link {
    display: block;
    width: 100%;
}

.ch-before-after-media {
    position: relative;
    display: block;
    width: 100%;
    height: var(--ch-ba-media-h);
    padding: 4px;
    border-radius: 14px;
    border: 1px solid var(--ch-edge);
    background: linear-gradient(165deg, rgba(15, 21, 40, 0.95), rgba(7, 11, 20, 0.98));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.ch-before-after-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    pointer-events: none;
}

.ch-before-after-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(7, 11, 20, 0.85);
    border: 1px solid var(--ch-edge);
    color: var(--ch-text);
}

.ch-before-after-item:last-of-type .ch-before-after-badge {
    border-color: rgba(255, 196, 0, 0.5);
    color: var(--ch-accent);
}

.ch-before-after-item figcaption {
    margin-top: 12px;
    text-align: center;
}

.ch-before-after-item figcaption strong {
    display: block;
    font-size: 15px;
    color: var(--ch-text);
}

.ch-before-after-item figcaption span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: var(--ch-muted);
}

.ch-arrow {
    font-size: 2rem;
    color: var(--ch-accent);
}

.ch-before-after-arrow {
    position: absolute;
    left: 50%;
    top: calc(var(--ch-ba-media-h, 400px) / 2);
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ch-bg);
    border: 1px solid var(--ch-edge);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.ch-steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ch-steps--quad {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ch-step {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--ch-edge);
    background: var(--ch-panel);
}

.ch-step::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ch-hero), var(--ch-power));
    font-weight: 800;
}

.ch-price-card--featured {
    border-color: rgba(255, 196, 0, 0.5);
    box-shadow: 0 0 40px rgba(255, 196, 0, 0.12);
}

.ch-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ch-accent);
    margin: 8px 0 16px;
}

.ch-faq details {
    border: 1px solid var(--ch-edge);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 10px;
    background: var(--ch-panel);
}

.ch-faq summary {
    cursor: pointer;
    font-weight: 600;
}

.ch-faq p {
    margin: 10px 0 0;
    color: var(--ch-muted);
    font-size: 14px;
}

.ch-cta {
    text-align: center;
    padding: 72px 0;
    background: radial-gradient(ellipse at center, rgba(255, 45, 85, 0.12), transparent 70%);
}

.ch-seo-foot {
    padding: 20px 0 28px;
    border-top: 1px solid var(--ch-edge);
}

.ch-seo-foot-inner {
    max-width: 720px;
}

.ch-seo-foot h3 {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(139, 157, 195, 0.55);
    letter-spacing: 0.01em;
}

.ch-seo-foot p {
    margin: 0 0 8px;
    font-size: 11px;
    line-height: 1.55;
    color: rgba(139, 157, 195, 0.42);
}

.ch-seo-foot p:last-child {
    margin-bottom: 0;
}

.ch-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 24px;
}

.ch-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.ch-footer {
    padding: 32px 0;
    border-top: 1px solid var(--ch-edge);
    color: var(--ch-muted);
    font-size: 13px;
}

.ch-footer a {
    color: var(--ch-muted);
}

.ch-footer-navs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 28px;
}

.ch-footer-navs .ch-footer-nav a:hover {
    color: var(--ch-text);
}

@media (max-width: 900px) {
    .ch-hero {
        min-height: 0;
        padding: 56px var(--ch-layout-side) 48px;
        background-position: 60% center;
    }

    .ch-hero::before {
        background:
            linear-gradient(
                180deg,
                rgba(5, 8, 16, 0.94) 0%,
                rgba(5, 8, 16, 0.82) 55%,
                rgba(5, 8, 16, 0.7) 100%
            ),
            radial-gradient(ellipse at 50% 0%, rgba(255, 45, 85, 0.12), transparent 55%);
    }

    .ch-hero-content {
        max-width: none;
    }

    .ch-grid-3,
    .ch-grid-4,
    .ch-steps,
    .ch-steps--quad,
    .ch-studio-points,
    .ch-marketplace-intro {
        grid-template-columns: 1fr;
    }

    .ch-studio-shot-wrap {
        margin-top: 24px;
    }

    .ch-before-after {
        --ch-ba-media-h: min(72vw, 420px);
        flex-direction: column;
        gap: 12px;
    }

    .ch-before-after-item {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
    }

    .ch-before-after-arrow {
        position: static;
        transform: none;
        align-self: center;
        margin: 0;
    }

    .ch-nav-inner {
        padding: 8px 0;
    }

    .ch-nav .ch-logo img {
        width: 64px;
        height: 64px;
        transform: scale(1.4);
    }

    .ch-nav-links {
        display: none;
    }


    .ch-page-nav-inner {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        padding: 0 10px 10px;
    }

    .ch-page-nav a {
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}
