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

ul {
    list-style: none;
}

/* â”€â”€ Header â”€â”€ */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    overflow: visible;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.2s;
}

.nav__link:hover {
    color: var(--orange);
}

.nav__link--active {
    color: var(--charcoal);
    font-weight: 600;
}

.nav__cta {
    background: var(--orange);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: background 0.2s, transform 0.15s;
}

.nav__cta:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.nav-locale {
    margin-left: 4px;
}

.nav-locale::after {
    left: -8px;
    right: -8px;
}

.nav-locale__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 30px;
    padding: 3px;
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.nav-locale__trigger:hover,
.nav-locale.nav-dropdown--open .nav-locale__trigger {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-light);
}

.nav-locale__flag {
    display: flex;
    line-height: 0;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.nav-locale__flag svg {
    display: block;
}

.nav-locale__label {
    padding: 8px 12px 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-500);
    list-style: none;
}

.nav-locale__divider {
    height: 1px;
    margin: 6px 8px;
    background: var(--gray-200);
    list-style: none;
}

.nav-locale__option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    background: none;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    text-align: left;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    list-style: none;
}

.nav-locale__option:hover {
    background: var(--gray-100);
    color: var(--charcoal);
}

.nav-locale__option--active {
    background: var(--orange-light);
    color: var(--charcoal);
    font-weight: 600;
}

/* â”€â”€ Nav dropdown â”€â”€ */
.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -12px;
    right: -12px;
    height: 18px;
}

.nav-dropdown__trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.nav-dropdown__trigger:hover,
.nav-dropdown--active .nav-dropdown__trigger,
.nav-dropdown--open .nav-dropdown__trigger {
    color: var(--charcoal);
}

.nav-dropdown--active .nav-dropdown__trigger {
    font-weight: 600;
}

.nav-dropdown__chevron {
    transition: transform 0.25s ease;
}

.nav-dropdown--open .nav-dropdown__chevron,
.nav-dropdown:hover .nav-dropdown__chevron {
    transform: rotate(180deg);
}

.nav-dropdown__menu {
    min-width: 260px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    list-style: none;
    z-index: 200;
}

@media (min-width: 769px) {
    .nav-dropdown__menu {
        position: absolute;
        top: calc(100% + 14px);
        left: 50%;
        transform: translateX(-50%) translateY(6px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    }

    .nav-dropdown__menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 10px;
        height: 10px;
        background: var(--white);
        border-left: 1px solid var(--gray-200);
        border-top: 1px solid var(--gray-200);
    }

    .nav-dropdown--open:not(.nav-locale) .nav-dropdown__menu,
    .nav-dropdown:not(.nav-locale):hover .nav-dropdown__menu,
    .nav-dropdown:not(.nav-locale):focus-within .nav-dropdown__menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .nav-locale .nav-locale__menu {
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(6px);
        min-width: 220px;
        padding: 6px;
    }

    .nav-locale .nav-locale__menu::before {
        left: 50%;
        right: auto;
        transform: translateX(-50%) rotate(45deg);
    }

    .nav-locale.nav-dropdown--open .nav-locale__menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.nav-dropdown__link {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    transition: background 0.15s;
}

.nav-dropdown__link:hover {
    background: var(--orange-light);
}

.nav-dropdown__menu:has(.nav-dropdown__link:hover) .nav-dropdown__link--active:not(:hover) {
    background: transparent;
}

.nav-dropdown__link--active {
    background: var(--orange-light);
}

.nav-dropdown__link-name {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.nav-dropdown__link-desc {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.nav-dropdown__divider {
    height: 1px;
    background: var(--gray-200);
    margin: 6px 8px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    margin: 6px 0;
    transition: 0.3s;
}

/* â”€â”€ Citace PRO highlight â”€â”€ */
.pro-highlight {
    padding: 0 0 48px;
    margin-top: -24px;
}

.pro-highlight--standalone {
    margin-top: 0;
    padding: 72px 0;
}

.pro-highlight__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 28px 32px;
    background: var(--orange-light);
    border: 1px solid rgba(249, 160, 27, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
}

.pro-highlight__title {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.pro-highlight__text {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

/* â”€â”€ Word / Google Docs add-on â”€â”€ */
.pro-addon__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.pro-addon__title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    margin-bottom: 16px;
    line-height: 1.15;
}

.pro-addon__desc {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 28px;
}

.pro-addon__list {
    list-style: none;
    margin-bottom: 32px;
}

.pro-addon__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.55;
    padding: 10px 0;
}

.pro-addon__list li svg {
    width: 18px;
    height: 18px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.pro-addon__platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pro-addon__platform {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    box-shadow: var(--shadow);
}

.pro-addon__platform svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.pro-addon__visual {
    position: relative;
}

.pro-addon__mock {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.pro-addon__mock-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.pro-addon__mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
}

.pro-addon__mock-dot:first-child {
    background: #FF5F57;
}
.pro-addon__mock-dot:nth-child(2) {
    background: #FFBD2E;
}
.pro-addon__mock-dot:nth-child(3) {
    background: #28CA41;
}

.pro-addon__mock-title {
    margin-left: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-500);
}

.pro-addon__mock-body {
    display: grid;
    grid-template-columns: 1fr 148px;
    min-height: 320px;
}

.pro-addon__mock-doc {
    padding: 24px 28px;
    border-right: 1px solid var(--gray-100);
}

.pro-addon__mock-line {
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    margin-bottom: 10px;
}

.pro-addon__mock-line--heading {
    width: 55%;
    height: 12px;
    background: var(--charcoal);
    opacity: 0.15;
    margin-bottom: 18px;
}

.pro-addon__mock-line--short {
    width: 70%;
}
.pro-addon__mock-line--medium {
    width: 85%;
}

.pro-addon__mock-line--cite {
    background: transparent;
    margin: 14px 0;
}

.pro-addon__mock-cite {
    display: inline-block;
    padding: 4px 10px;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 4px;
    border: 1px solid rgba(249, 160, 27, 0.35);
}

.pro-addon__mock-line--refs-heading {
    width: 40%;
    height: 10px;
    margin-top: 20px;
    margin-bottom: 14px;
    background: var(--charcoal);
    opacity: 0.12;
}

.pro-addon__mock-line--ref {
    width: 92%;
    height: 6px;
    opacity: 0.7;
}

.pro-addon__mock-panel {
    padding: 12px 10px;
    background: linear-gradient(180deg, var(--orange-light) 0%, var(--white) 40%);
}

.pro-addon__mock-panel-head {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(249, 160, 27, 0.25);
    overflow: hidden;
}

.pro-addon__mock-panel-head img {
    display: block;
    height: 14px;
    width: auto;
    max-width: 100%;
    border-radius: 4px;
}

.pro-addon__mock-search {
    font-size: 0.625rem;
    color: var(--gray-500);
    padding: 6px 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 6px;
    margin-bottom: 10px;
}

.pro-addon__mock-source {
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 8px;
}

.pro-addon__mock-source strong {
    display: block;
    font-size: 0.625rem;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.pro-addon__mock-source span {
    display: block;
    font-size: 0.5625rem;
    color: var(--gray-500);
    line-height: 1.4;
    margin-bottom: 6px;
}

.pro-addon__mock-source button {
    width: 100%;
    padding: 4px 0;
    font-family: var(--font);
    font-size: 0.5625rem;
    font-weight: 700;
    color: var(--white);
    background: var(--orange);
    border: none;
    border-radius: 4px;
    cursor: default;
}

.pro-addon__mock-source--active {
    border-color: var(--orange);
    box-shadow: 0 0 0 2px rgba(249, 160, 27, 0.15);
}

/* â”€â”€ Citace PRO feature showcase â”€â”€ */
.pro-features {
    padding: 72px 0 0;
}

.pro-features__intro {
    margin-bottom: 16px;
}

.pro-feature {
    padding: 72px 0;
}

.pro-feature--gray {
    background: var(--gray-100);
}

.pro-feature__grid--reverse {
    direction: rtl;
}

.pro-feature__grid--reverse > * {
    direction: ltr;
}

.pro-feature__num {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(249, 160, 27, 0.22);
}

.pro-addon__content {
    position: relative;
}

.pro-feature__visual {
    position: relative;
}

.pro-feature__glow {
    position: absolute;
    inset: 8% 0;
    background: radial-gradient(circle at 50% 50%, rgba(249, 160, 27, 0.22), transparent 68%);
    z-index: 0;
    pointer-events: none;
}

.pro-feature__glow--cool {
    background: radial-gradient(circle at 50% 50%, rgba(66, 133, 244, 0.12), transparent 68%);
}

.pro-feature__frame {
    position: relative;
    z-index: 1;
}

.pro-feature__frame--tilt-left {
    transform: rotate(-1.25deg);
}

.pro-feature__frame--tilt-right {
    transform: rotate(1.25deg);
}

.pro-feature__frame img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.pro-feature__frame--screenshot {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.pro-feature__frame--screenshot img {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: cover;
    object-position: 58% 22%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.pro-feature__frame--screenshot-word img {
    object-position: 50% 32%;
}

.pro-feature__frame--screenshot-library img {
    object-position: 52% 12%;
}

.pro-feature__frame--screenshot-sharing img {
    object-position: center center;
}

.pro-import-flow {
    position: relative;
    display: flex;
    align-items: stretch;
    aspect-ratio: 16 / 10;
    background: var(--white);
    overflow: hidden;
}

.pro-import-flow__source,
.pro-import-flow__target {
    overflow: hidden;
    min-width: 0;
}

.pro-import-flow__source {
    flex: 0 0 42%;
    border-right: 1px solid var(--gray-200);
}

.pro-import-flow__target {
    flex: 1;
}

.pro-import-flow__source img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.pro-import-flow__target img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.pro-import-flow__arrow {
    position: absolute;
    left: 42%;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    border: 3px solid var(--white);
    box-shadow: 0 6px 20px rgba(249, 160, 27, 0.45);
}

.pro-import-flow__arrow svg {
    width: 22px;
    height: 22px;
}

.pro-feature__chip {
    position: absolute;
    bottom: 20px;
    left: -8px;
    z-index: 2;
    padding: 8px 14px;
    background: var(--charcoal);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 100px;
    box-shadow: var(--shadow);
}

.pro-feature__grid--reverse .pro-feature__chip {
    left: auto;
    right: -8px;
}

.pro-feature-mock {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px;
}

.pro-feature-mock__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--charcoal);
}

.pro-feature-mock__styles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.pro-feature-mock__style {
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
}

.pro-feature-mock__style.is-active {
    border-color: var(--orange);
    background: var(--orange-light);
    color: var(--charcoal);
}

.pro-feature-mock__source {
    padding: 12px 14px;
    margin-bottom: 12px;
    border-radius: 10px;
    background: var(--gray-100);
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--gray-700);
}

.pro-feature-mock__source strong {
    color: var(--charcoal);
}

.pro-feature-mock__output {
    padding: 14px 16px;
    margin-bottom: 16px;
    border-left: 3px solid var(--orange);
    background: rgba(249, 160, 27, 0.08);
    font-size: 0.8125rem;
    line-height: 1.65;
    color: var(--gray-800);
}

.pro-feature-mock__btn {
    width: 100%;
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font);
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: default;
}

.pro-feature-mock--team .pro-feature-mock__head {
    margin-bottom: 14px;
}

.pro-feature-mock__avatars {
    display: inline-flex;
    align-items: center;
}

.pro-feature-mock__avatars span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-left: -6px;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: var(--orange-light);
    color: var(--charcoal);
    font-size: 0.625rem;
    font-weight: 800;
}

.pro-feature-mock__avatars span:first-child {
    margin-left: 0;
}

.pro-feature-mock__avatars-more {
    background: var(--charcoal) !important;
    color: var(--white) !important;
}

.pro-feature-mock__folder {
    padding: 14px 16px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--white) 100%);
    border: 1px solid rgba(249, 160, 27, 0.2);
}

.pro-feature-mock__folder strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.9375rem;
    color: var(--charcoal);
}

.pro-feature-mock__folder span {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.pro-feature-mock__team-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pro-feature-mock__team-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.8125rem;
    color: var(--gray-700);
    line-height: 1.45;
}

.pro-feature-mock__team-list li:last-child {
    border-bottom: none;
}

.pro-feature-mock__dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 0.35em;
    border-radius: 50%;
    background: var(--orange);
}

.pro-feature-mock__dot--done {
    background: var(--orange);
}

.pro-feature-mock__dot--active {
    background: var(--charcoal);
    box-shadow: 0 0 0 3px rgba(249, 160, 27, 0.25);
}

.pro-feature-mock__team-list li .pro-feature-mock__dot:not(.pro-feature-mock__dot--done):not(.pro-feature-mock__dot--active) {
    background: var(--gray-300);
}

/* â”€â”€ Citace Studio feature mocks â”€â”€ */
.studio-mock__progress-label {
    color: var(--orange);
}

.studio-mock__progress {
    height: 8px;
    margin-bottom: 16px;
    border-radius: 100px;
    background: var(--gray-200);
    overflow: hidden;
}

.studio-mock__progress-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--orange) 0%, #ffb84d 100%);
}

.studio-mock__chapters {
    list-style: none;
    margin-bottom: 16px;
}

.studio-mock__chapter {
    padding: 12px 14px;
    margin-bottom: 8px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: var(--gray-100);
}

.studio-mock__chapter:last-child {
    margin-bottom: 0;
}

.studio-mock__chapter strong {
    display: block;
    font-size: 0.875rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.studio-mock__chapter span {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.studio-mock__chapter--active {
    border-color: rgba(249, 160, 27, 0.35);
    background: var(--orange-light);
}

.studio-mock__search {
    padding: 10px 14px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.studio-mock__source {
    padding: 12px 14px;
    margin-bottom: 8px;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.studio-mock__source:last-child {
    margin-bottom: 0;
}

.studio-mock__source strong {
    display: block;
    font-size: 0.875rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.studio-mock__source span {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.studio-mock__source--active {
    border-color: rgba(249, 160, 27, 0.35);
    background: var(--orange-light);
}

.studio-mock__source-tag {
    display: inline-block !important;
    width: auto !important;
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--white);
    color: var(--orange-dark) !important;
    font-weight: 700;
}

.studio-mock__steps {
    list-style: none;
    margin-bottom: 16px;
}

.studio-mock__step {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 0.8125rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-200);
}

.studio-mock__step:last-child {
    border-bottom: none;
}

.studio-mock__step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--gray-300);
    background: var(--white);
}

.studio-mock__step--done {
    color: var(--gray-700);
}

.studio-mock__step--done::before {
    border-color: var(--orange);
    background: var(--orange);
}

.studio-mock__step--active {
    color: var(--charcoal);
    font-weight: 700;
}

.studio-mock__step--active::before {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249, 160, 27, 0.2);
}

.studio-mock__wizard-field {
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--orange-light);
    border: 1px solid rgba(249, 160, 27, 0.25);
}

.studio-mock__wizard-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange-dark);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.studio-mock__wizard-field span:last-child {
    font-size: 0.8125rem;
    color: var(--gray-800);
    line-height: 1.5;
}

.studio-mock__tasks {
    list-style: none;
}

.studio-mock__task {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.8125rem;
    color: var(--gray-700);
}

.studio-mock__task:last-child {
    border-bottom: none;
}

.studio-mock__task em {
    font-style: normal;
    font-size: 0.75rem;
    color: var(--gray-500);
    white-space: nowrap;
}

.studio-mock__task--done span {
    text-decoration: line-through;
    color: var(--gray-500);
}

.studio-mock__task--done em {
    color: var(--orange);
    font-weight: 700;
}

.studio-mock__task--active em {
    color: var(--charcoal);
    font-weight: 700;
}

.studio-mock__dashboard {
    display: grid;
    gap: 10px;
}

.studio-mock__dash-card {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
}

.studio-mock__dash-card strong {
    display: block;
    font-size: 0.875rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.studio-mock__dash-card span {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.studio-mock__dash-card em {
    font-style: normal;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.studio-mock__dash-card--active {
    border-color: rgba(249, 160, 27, 0.35);
    background: var(--orange-light);
}

.studio-mock__search-tags,
.studio-mock__folders {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.studio-mock__search-tags span,
.studio-mock__folder-tag {
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gray-600);
}

.studio-mock__folder-tag--active {
    border-color: rgba(249, 160, 27, 0.35);
    background: var(--orange-light);
    color: var(--charcoal);
}

.studio-mock__editor {
    margin-bottom: 14px;
}

.studio-mock__editor-line {
    height: 10px;
    margin-bottom: 10px;
    border-radius: 100px;
    background: var(--gray-200);
}

.studio-mock__editor-line--heading {
    width: 45%;
    height: 14px;
    background: var(--gray-300);
}

.studio-mock__editor-line--medium {
    width: 78%;
}

.studio-mock__editor-line--cite {
    height: auto;
    padding: 10px 12px;
    border-radius: 8px;
    background: var(--gray-100);
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--gray-700);
}

.studio-mock__editor-cite {
    color: var(--orange-dark);
    font-weight: 700;
}

.studio-mock__editor-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.studio-mock__editor-btn {
    padding: 8px 12px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: default;
}

.studio-mock__editor-btn--primary {
    border-color: var(--orange);
    background: var(--orange-light);
    color: var(--charcoal);
}

.studio-mock__export {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
    font-size: 0.75rem;
    color: var(--gray-600);
}

.studio-mock__export button {
    padding: 6px 12px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: var(--gray-100);
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--charcoal);
    cursor: default;
}

/* â”€â”€ Hero â”€â”€ */
.hero {
    padding: 80px 0 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero + .section {
    padding-top: 48px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(249, 160, 27, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero__title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    max-width: 780px;
    margin: 0 auto 24px;
}

.hero__title span {
    color: var(--orange);
}

.hero__subtitle {
    font-size: 1.1875rem;
    color: var(--gray-700);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* â”€â”€ Services showcase (homepage hero) â”€â”€ */
.services-showcase {
    max-width: 1120px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
}

.services-showcase__shell {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(249, 160, 27, 0.06);
    overflow: hidden;
}

.services-showcase__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 16px;
    background: linear-gradient(180deg, #FFF8EE 0%, var(--gray-100) 100%);
    border-right: 1px solid var(--gray-200);
}

.services-showcase__nav-label {
    margin: 0 8px 8px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
}

.services-showcase__tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 14px 14px 12px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    overflow: hidden;
}

.services-showcase__tab:hover {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(249, 160, 27, 0.18);
}

.services-showcase__tab.is-active {
    background: var(--white);
    border-color: rgba(249, 160, 27, 0.35);
    box-shadow: 0 8px 24px rgba(249, 160, 27, 0.12);
    transform: translateX(4px);
}

.services-showcase__tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--white);
    color: var(--orange);
    border: 1px solid rgba(249, 160, 27, 0.15);
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.services-showcase__tab-icon svg {
    width: 22px;
    height: 22px;
}

.services-showcase__tab.is-active .services-showcase__tab-icon {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    border-color: transparent;
}

.services-showcase__tab-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.services-showcase__tab-text strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--charcoal);
}

.services-showcase__tab-text small {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.services-showcase__tab-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--orange), #FFC04D);
    border-radius: 0 3px 3px 0;
}

.services-showcase__tab.is-active .services-showcase__tab-progress {
    animation: servicesShowcaseProgress var(--showcase-autoplay, 6.5s) linear forwards;
}

@keyframes servicesShowcaseProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.services-showcase__stage {
    display: flex;
    flex-direction: column;
    min-height: 420px;
    background:
        radial-gradient(circle at 85% 15%, rgba(249, 160, 27, 0.08) 0%, transparent 42%),
        radial-gradient(circle at 10% 90%, rgba(249, 160, 27, 0.05) 0%, transparent 35%),
        var(--white);
}

.services-showcase__slides {
    position: relative;
    flex: 1;
}

.services-showcase__slide {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 46%);
    gap: 28px;
    align-items: center;
    min-height: 360px;
    padding: 32px 32px 16px;
}

.services-showcase__slide[hidden] {
    display: none;
}

.services-showcase__slide.is-active {
    animation: servicesShowcaseFade 0.45s ease;
}

@keyframes servicesShowcaseFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-showcase__badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.services-showcase__title {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--charcoal);
}

.services-showcase__desc {
    margin: 0 0 18px;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gray-700);
}

.services-showcase__points {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-showcase__points li {
    position: relative;
    padding-left: 22px;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.services-showcase__points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 3px rgba(249, 160, 27, 0.15);
}

.services-showcase__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.services-showcase__glow {
    position: absolute;
    inset: 8% 0;
    background: radial-gradient(circle, rgba(249, 160, 27, 0.18) 0%, transparent 68%);
    pointer-events: none;
    animation: servicesShowcaseGlow 4s ease-in-out infinite alternate;
}

@keyframes servicesShowcaseGlow {
    from {
        transform: scale(0.95);
        opacity: 0.7;
    }
    to {
        transform: scale(1.05);
        opacity: 1;
    }
}

.services-showcase__frame {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: var(--white);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
    transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
    animation: servicesShowcaseFloat 5s ease-in-out infinite;
}

.services-showcase__frame--video {
    position: relative;
}

.services-showcase__frame-bar {
    display: flex;
    gap: 6px;
    padding: 10px 12px;
    background: linear-gradient(180deg, #F8F9FB 0%, #EEF1F5 100%);
    border-bottom: 1px solid var(--gray-200);
}

.services-showcase__frame-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D5DAE2;
}

.services-showcase__frame-bar span:first-child {
    background: #FF6B6B;
}
.services-showcase__frame-bar span:nth-child(2) {
    background: #FFD166;
}
.services-showcase__frame-bar span:nth-child(3) {
    background: #06D6A0;
}

.services-showcase__frame img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.services-showcase__play {
    position: absolute;
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(249, 160, 27, 0.92);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(249, 160, 27, 0.35);
    pointer-events: none;
}

.services-showcase__play svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
}

@keyframes servicesShowcaseFloat {
    0%, 100% {
        transform: perspective(900px) rotateY(-4deg) rotateX(2deg) translateY(0);
    }
    50% {
        transform: perspective(900px) rotateY(-2deg) rotateX(1deg) translateY(-8px);
    }
}

.services-showcase__book-stack {
    position: relative;
    z-index: 1;
    width: 260px;
    height: 320px;
    animation: servicesShowcaseFloat 5s ease-in-out infinite;
}

.services-showcase__book {
    position: absolute;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    object-fit: cover;
}

.services-showcase__book--back {
    left: 0;
    top: 28px;
    transform: rotate(-8deg);
    opacity: 0.88;
}

.services-showcase__book--front {
    right: 0;
    top: 0;
    transform: rotate(4deg);
    z-index: 1;
}

.services-showcase__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 24px 20px;
    border-top: 1px solid var(--gray-200);
    background: rgba(255, 255, 255, 0.85);
}

.services-showcase__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    background: var(--white);
    color: var(--charcoal);
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.services-showcase__arrow:hover {
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: 0 4px 12px rgba(249, 160, 27, 0.15);
}

.services-showcase__arrow svg {
    width: 20px;
    height: 20px;
}

.services-showcase__dots {
    display: flex;
    gap: 8px;
}

.services-showcase__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: var(--gray-200);
    cursor: pointer;
    transition: width 0.25s, background 0.25s;
}

.services-showcase__dot.is-active {
    width: 28px;
    background: var(--orange);
}

/* â”€â”€ Expandable service panels (homepage) â”€â”€ */
.services-panels-wrap {
    max-width: 1120px;
    margin: 0 auto;
    text-align: left;
}

.services-showcase--follow {
    margin-top: 48px;
}

.services-showcase--audiences {
    margin-top: 8px;
}

.services-showcase--audiences .services-showcase__shell {
    grid-template-columns: 280px minmax(0, 1fr);
}

.services-showcase--audiences .services-showcase__nav {
    max-height: min(560px, 70vh);
    overflow-y: auto;
    scrollbar-width: thin;
}

.services-showcase--audiences .services-showcase__tab {
    padding: 10px 12px;
}

.services-showcase--audiences .services-showcase__tab-icon {
    width: 36px;
    height: 36px;
}

.services-showcase--audiences .services-showcase__tab-icon svg {
    width: 18px;
    height: 18px;
}

.services-showcase--audiences .services-showcase__tab-text strong {
    font-size: 0.875rem;
}

.services-showcase--audiences .services-showcase__tab-text small {
    font-size: 0.6875rem;
    line-height: 1.35;
}

.services-showcase--audiences .services-showcase__tab-progress {
    display: none;
}

.services-showcase--audiences .services-showcase__stage {
    min-height: 460px;
}

.services-showcase--audiences .services-showcase__title {
    font-size: clamp(1.375rem, 2.2vw, 1.75rem);
}

.services-showcase--audiences .services-showcase__points {
    gap: 8px;
}

.services-showcase--audiences .services-showcase__points li {
    font-size: 0.8125rem;
    line-height: 1.5;
}

.services-showcase--audiences .services-showcase__dots {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 220px;
    gap: 6px;
}

.services-panels__track {
    display: flex;
    gap: 12px;
    height: min(420px, 62vh);
    min-height: 320px;
}

.services-panel {
    position: relative;
    flex: 1 1 0;
    min-width: 68px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition:
        flex 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.services-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.services-panel.is-expanded {
    flex: 5 1 0;
    cursor: default;
    box-shadow: 0 20px 48px rgba(249, 160, 27, 0.18);
}

.services-panel:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

.services-panel__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
    filter: saturate(0.85) brightness(0.72);
}

.services-panel.is-expanded .services-panel__bg,
.services-panel:hover .services-panel__bg {
    transform: scale(1.08);
    filter: saturate(1) brightness(0.85);
}

.services-panel__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 20, 22, 0.15) 0%, rgba(20, 20, 22, 0.72) 100%),
        linear-gradient(135deg, color-mix(in srgb, var(--panel-accent, var(--orange)) 35%, transparent) 0%, transparent 55%);
    transition: opacity 0.4s ease;
}

.services-panel.is-expanded .services-panel__overlay {
    background:
        linear-gradient(105deg, rgba(16, 16, 18, 0.88) 0%, rgba(16, 16, 18, 0.55) 48%, rgba(16, 16, 18, 0.25) 100%),
        linear-gradient(135deg, color-mix(in srgb, var(--panel-accent, var(--orange)) 28%, transparent) 0%, transparent 60%);
    opacity: 1;
}

.services-panel__collapsed-label {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform-origin: center;
    rotate: 180deg;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    white-space: nowrap;
    opacity: 1;
    transition: opacity 0.25s ease, transform 0.35s ease;
    pointer-events: none;
}

.services-panel.is-expanded .services-panel__collapsed-label {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
}

.services-panel__detail {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 28px 32px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity 0.35s ease 0.08s,
        visibility 0.35s ease 0.08s,
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
}

.services-panel.is-expanded .services-panel__detail {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-panel__copy {
    color: var(--white);
    max-width: min(100%, 420px);
}

.services-panel__badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.services-panel__title {
    margin: 0 0 10px;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.services-panel__desc {
    margin: 0 0 14px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 36ch;
}

.services-panel__points {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services-panel__points li {
    position: relative;
    padding-left: 18px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.88);
}

.services-panel__points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.services-panel:not(.is-expanded)::after {
    content: '+';
    position: absolute;
    z-index: 2;
    top: 16px;
    right: 50%;
    transform: translateX(50%);
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
}

.services-panel:not(.is-expanded):hover::after {
    background: var(--panel-accent, var(--orange));
    transform: translateX(50%) scale(1.08);
}

.hero-choices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 820px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-choice {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    overflow: hidden;
}

.hero-choice__glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(249, 160, 27, 0.18) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.hero-choice::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #FFC04D);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.hero-choice:hover,
.hero-choice:focus-visible {
    border-color: rgba(249, 160, 27, 0.35);
    box-shadow: 0 16px 48px rgba(249, 160, 27, 0.12);
    transform: translateY(-6px);
    outline: none;
}

.hero-choice:hover .hero-choice__glow,
.hero-choice:focus-visible .hero-choice__glow {
    opacity: 1;
}

.hero-choice:hover::after,
.hero-choice:focus-visible::after {
    transform: scaleX(1);
}

.hero-choice__icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--orange-light) 0%, #FFECD0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}

.hero-choice__icon svg {
    width: 26px;
    height: 26px;
}

.hero-choice:hover .hero-choice__icon,
.hero-choice:focus-visible .hero-choice__icon {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(249, 160, 27, 0.35);
}

.hero-choice__content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-choice__name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.hero-choice__tag {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-500);
}

.hero-choice__expand {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.hero-choice__expand-inner {
    overflow: hidden;
}

.hero-choice__desc {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.65;
    margin: 0;
    padding-top: 14px;
}

.hero-choice__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange);
    margin-top: 14px;
    transition: gap 0.25s ease;
}

.hero-choice__cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.hero-choice:hover .hero-choice__cta,
.hero-choice:focus-visible .hero-choice__cta {
    gap: 10px;
}

.hero-choice:hover .hero-choice__cta svg,
.hero-choice:focus-visible .hero-choice__cta svg {
    transform: translateX(3px);
}

@media (hover: hover) {
    .hero-choice:hover .hero-choice__expand,
    .hero-choice:focus-visible .hero-choice__expand {
        grid-template-rows: 1fr;
    }
}

@media (hover: none) {
    .hero-choice {
        gap: 16px;
    }

    .hero-choice__expand {
        grid-template-rows: 1fr;
    }

    .hero-choice__desc {
        padding-top: 10px;
        font-size: 0.8125rem;
    }
}

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


/* â”€â”€ Section â”€â”€ */
.section--gray {
    background: var(--gray-100);
}

.section__label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    margin-bottom: 12px;
}

.section__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section__desc {
    font-size: 1.0625rem;
    color: var(--gray-700);
    max-width: 600px;
    line-height: 1.7;
}

.section__header {
    margin-bottom: 56px;
}

.section__header--center {
    text-align: center;
}

.section__header--center .section__desc {
    margin: 0 auto;
}

/* â”€â”€ Audience use cases (Citace PRO) â”€â”€ */
.audiences--faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 720px;
    margin: 0 auto;
}

.audience {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.audience[open] {
    border-color: var(--orange);
    box-shadow: var(--shadow);
}

.audience__summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    transition: background 0.2s;
}

.audience__summary::-webkit-details-marker {
    display: none;
}

.audience__summary::marker {
    content: '';
}

.audience__summary:hover {
    background: var(--orange-light);
}

.audience[open] > .audience__summary {
    background: var(--orange-light);
}

.audience__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-light);
    border-radius: 10px;
    color: var(--orange);
}

.audience[open] > .audience__summary .audience__icon {
    background: var(--white);
}

.audience__icon svg {
    width: 22px;
    height: 22px;
}

.audience__head {
    flex: 1;
    min-width: 0;
}

.audience__name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.audience__tagline {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.4;
}

.audience__chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--gray-500);
    transition: transform 0.25s, color 0.2s;
}

.audience[open] > .audience__summary .audience__chevron {
    transform: rotate(180deg);
    color: var(--orange);
}

.audience__panel {
    padding: 0 20px 20px 78px;
}

.audience__list {
    margin: 0;
    padding: 16px 0 0;
    list-style: none;
    border-top: 1px solid var(--gray-100);
}

.audience__list li {
    position: relative;
    padding: 8px 0 8px 18px;
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.55;
}

.audience__list li + li {
    border-top: 1px solid var(--gray-100);
}

.audience__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}

.audience__cta {
    margin: 12px 0 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.audience__cta a {
    color: var(--orange);
    text-decoration: none;
}

.audience__cta a:hover {
    text-decoration: underline;
}

/* â”€â”€ Product hero blocks â”€â”€ */
.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.product-hero--reverse {
    direction: rtl;
}

.product-hero--reverse > * {
    direction: ltr;
}

.product-hero__visual {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    border: 1px solid rgba(249, 160, 27, 0.15);
}

.product-hero__visual--photo {
    padding: 0;
    overflow: hidden;
    background: var(--gray-100);
}

.product-hero__visual--video {
    padding: 0;
    overflow: hidden;
    background: var(--gray-900);
    min-height: 360px;
}

.product-hero__visual--video .video-embed {
    height: 100%;
    min-height: 360px;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--gray-900);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.product-hero__photo {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center;
}

.product-hero__icon {
    width: 120px;
    height: 120px;
    background: var(--orange);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 48px rgba(249, 160, 27, 0.3);
}

.product-hero__icon svg {
    width: 56px;
    height: 56px;
    color: var(--white);
}

.product-hero__content .section__label {
    margin-bottom: 8px;
}

.product-hero__tagline {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* â”€â”€ Features â”€â”€ */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature {
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.feature:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow);
}

.feature__icon {
    width: 44px;
    height: 44px;
    background: var(--orange-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--orange);
}

.feature__icon svg {
    width: 22px;
    height: 22px;
}

.feature__title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature__text {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* â”€â”€ Ethical AI badge â”€â”€ */
.ethical-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--charcoal);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 24px;
}

.ethical-badge svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
    flex-shrink: 0;
}

/* â”€â”€ Pricing â”€â”€ */
.pricing {
    margin-top: 56px;
}

.pricing__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    background: var(--gray-100);
    padding: 6px;
    border-radius: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing__tab {
    padding: 10px 24px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
}

.pricing__tab--active {
    background: var(--white);
    color: var(--charcoal);
    box-shadow: var(--shadow);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing__grid--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card--featured {
    border-color: var(--orange);
    position: relative;
}

.pricing-card--featured::before {
    content: 'NejoblĂ­benÄ›jĹˇĂ­';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card__name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.pricing-card__desc {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.pricing-card__select-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.pricing-card__select {
    width: 100%;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal);
    padding: 10px 14px;
    margin-bottom: 20px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.2s;
}

.pricing-card__select:hover,
.pricing-card__select:focus {
    border-color: var(--orange);
    outline: none;
}

.pricing-card--team .pricing-card__desc,
#pro-pricing .pricing-card--free .pricing-card__desc,
#pro-pricing .pricing-card--individual .pricing-card__desc,
#studio-pricing .pricing-card--free .pricing-card__desc,
#studio-pricing .pricing-card--individual .pricing-card__desc {
    margin-bottom: 16px;
}

.pricing-card__select-area--placeholder {
    visibility: hidden;
}

#pro-pricing .pricing-card__pricing,
#studio-pricing .pricing-card__pricing {
    height: calc(2.5rem + 1.25rem + 0.5rem + 0.875rem * 1.6 * 2);
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-200);
    box-sizing: content-box;
}

#pro-pricing .pricing-card__price,
#studio-pricing .pricing-card__price {
    margin-bottom: 8px;
    flex-shrink: 0;
}

#pro-pricing .pricing-card__yearly,
#studio-pricing .pricing-card__yearly {
    margin-top: auto;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

#pro-pricing .pricing-card__custom-offer,
#studio-pricing .pricing-card__custom-offer {
    margin-top: auto;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.pricing-card__price {
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 8px;
}

.pricing-card__price[hidden],
.pricing-card__yearly[hidden] {
    display: none !important;
}

.pricing-card__amount-old {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--gray-500);
    text-decoration: line-through;
}

.pricing-card__amount-old[hidden] {
    display: none;
}

.pricing-card__amount {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.pricing-card__period {
    font-size: 0.9375rem;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-card__yearly {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-card--team .pricing-card__yearly {
    line-height: 1.6;
}

.pricing-card__yearly strong {
    color: var(--charcoal);
}

.pricing-card__yearly-old {
    color: var(--gray-500);
    text-decoration: line-through;
    margin-right: 6px;
}

.pricing-card__custom-offer {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-card__custom-offer[hidden] {
    display: none !important;
}

.pricing-card__custom-offer-title {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.pricing-card__custom-offer-desc {
    display: block;
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.pricing-card__features {
    flex: 1;
    margin-bottom: 28px;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--gray-700);
    padding: 8px 0;
}

.pricing-card__features li svg {
    width: 18px;
    height: 18px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

.pricing-card--free .pricing-card__amount {
    font-size: 2rem;
}

.pricing__institution {
    text-align: center;
    margin-top: 40px;
    padding: 32px;
    background: var(--orange-light);
    border-radius: var(--radius);
}

.pricing__institution p {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.pricing__institution a {
    color: var(--orange-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* â”€â”€ Sales contacts â”€â”€ */
.sales-contacts {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-200);
}

.sales-contacts__header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 32px;
}

.sales-contacts__title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.sales-contacts__desc {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.6;
}

.sales-contacts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
}

.sales-contacts--solo {
    margin-top: 32px;
    padding-top: 0;
    border-top: none;
}

.sales-contacts--solo .sales-contacts__grid {
    max-width: 480px;
}

.sales-contact {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.sales-contact__photo {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--orange-light);
}

.sales-contact__name {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.sales-contact__role {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.sales-contact__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sales-contact__links a {
    font-size: 0.95rem;
    color: var(--orange-dark);
    font-weight: 600;
    text-decoration: none;
}

.sales-contact__links a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* â”€â”€ Contact form â”€â”€ */
.contact-form-block {
    margin-top: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-block__title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 8px;
}

.contact-form-block__desc {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 560px) {
    .contact-form__row {
        grid-template-columns: 1fr;
    }
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form__label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.contact-form__optional {
    font-weight: 400;
    color: var(--gray-500);
}

.contact-form__input {
    width: 100%;
    padding: 12px 14px;
    font: inherit;
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form__input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-light);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__submit {
    align-self: flex-start;
    margin-top: 8px;
}

/* â”€â”€ Client logos â”€â”€ */
.client-logos {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-200);
}

.client-logos--section {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.client-logos__header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 32px;
}

.client-logos__title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.client-logos__desc {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.6;
}

.client-logos__grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.client-logos__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}

.client-logos__item img {
    max-width: 100%;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: filter 0.2s, opacity 0.2s;
}

.client-logos__item:hover img {
    filter: none;
    opacity: 1;
}

@media (max-width: 768px) {
    .client-logos__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {
    .client-logos__grid {
        grid-template-columns: 1fr;
    }
}

/* â”€â”€ CTA band â”€â”€ */
.cta-band {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-band__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-band__text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin: 0 auto 32px;
}

/* â”€â”€ Products page â”€â”€ */
.page-hero {
    padding: 64px 0 48px;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}



.page-hero__desc {
    font-size: 1.125rem;
    color: var(--gray-700);
    max-width: 560px;
    margin: 0 auto 24px;
}



.page-hero .btn {
    margin-top: 8px;
}

.page-hero .ethical-badge {
    margin: 24px auto 0;
}

.page-hero .btn--primary {
    display: inline-flex;
}

.page-hero--split {
    text-align: left;
}

.page-hero--split.section--gray {
    border-bottom: none;
    overflow: visible;
}

.page-hero--studio.section--gray,
.page-hero--pablikado.section--gray {
    padding-bottom: calc(var(--ethical-badge-overhang, 23px) + 20px);
    position: relative;
}

.page-hero--studio .product-hero,
.page-hero--pablikado .product-hero {
    align-items: end;
}

.page-hero--studio .product-hero__visual--with-badge,
.page-hero--pablikado .product-hero__visual--with-badge {
    position: relative;
    overflow: visible;
}

.page-hero--studio .page-hero__ethical-band,
.page-hero--pablikado .page-hero__ethical-band {
    --ethical-badge-overhang: 23px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    z-index: 2;
    width: max-content;
    max-width: calc(100% - 16px);
}

.page-hero--studio .page-hero__ethical-band .ethical-badge,
.page-hero--pablikado .page-hero__ethical-band .ethical-badge {
    margin-top: 0;
}

.section--after-hero-badge {
    padding-top: calc(100px + var(--ethical-badge-overhang, 23px));
}

.pro-features.section--after-hero-badge {
    padding-top: calc(72px + var(--ethical-badge-overhang, 23px));
}

.pro-workflow.section--after-hero-badge {
    padding-top: calc(56px + var(--ethical-badge-overhang, 23px));
}

.studio-ai-principles__badge {
    margin: 0 auto 20px;
}

.studio-ai-principles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.studio-ai-principles__card {
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.studio-ai-principles__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: var(--orange-light);
    color: var(--orange);
}

.studio-ai-principles__icon svg {
    width: 24px;
    height: 24px;
}

.studio-ai-principles__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.35;
}

.studio-ai-principles__text {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.65;
    margin: 0;
}

.page-hero--split .section__label {
    text-align: left;
}

.page-hero--split .page-hero__desc {
    max-width: none;
    margin: 0 0 24px;
}

.page-hero--split .product-hero {
    gap: 48px;
}

.page-hero--split .product-hero__content .section__label {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--orange);
}

.page-hero--split .page-hero__title {
    text-align: left;
}

.page-hero--split .ethical-badge {
    margin: 24px 0 0;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.page-hero:not(.page-hero--split) .page-hero__actions {
    justify-content: center;
}

.pro-video-intro {
    padding: 32px 0 8px;
    text-align: center;
    background: var(--gray-100);
}

.pro-video-intro__inner {
    max-width: 640px;
    margin: 0 auto;
}

.pro-video-intro__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 12px;
}

.pro-video-intro__desc {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

.pro-workflow {
    padding-top: 56px;
}

.pro-stepper {
    margin-bottom: 0;
}

.pro-stepper__intro {
    max-width: 640px;
    margin-bottom: 32px;
}

.pro-stepper__heading {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 12px;
}

.pro-stepper__lead {
    margin: 0;
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.65;
}

.pro-stepper__track {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

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

.pro-stepper__track-item {
    position: relative;
    min-width: 0;
}

.pro-stepper__step {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 12px 10px;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    background: var(--white);
    color: var(--gray-700);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, color 0.2s;
    font: inherit;
    text-align: center;
}

.pro-stepper__step:hover {
    border-color: rgba(249, 160, 27, 0.45);
    color: var(--gray-900);
}

.pro-stepper__step.is-active {
    border-color: var(--orange);
    background: rgba(249, 160, 27, 0.08);
    box-shadow: 0 8px 24px rgba(249, 160, 27, 0.14);
    color: var(--gray-900);
}

.pro-stepper__step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-700);
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}

.pro-stepper__step.is-active .pro-stepper__step-num {
    background: var(--orange);
    color: var(--white);
}

.pro-stepper__step-label {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.3;
}

.pro-stepper__panels {
    position: relative;
    min-height: 280px;
}

.pro-stepper__panel {
    padding: 0;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: var(--gray-100);
    overflow: hidden;
}

.pro-stepper__panel-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: stretch;
}

.pro-stepper__preview {
    background: var(--white);
    padding: 20px;
}

.pro-stepper__preview img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
}

.pro-stepper__preview-img--library {
    object-position: 52% 12%;
}

.pro-stepper__preview .pro-import-flow {
    border-radius: 8px;
}

.pro-import-flow--stepper .pro-import-flow__arrow {
    width: 36px;
    height: 36px;
}

.pro-import-flow--stepper .pro-import-flow__arrow svg {
    width: 18px;
    height: 18px;
}

.pro-stepper__panel-copy {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pro-stepper__panel[hidden] {
    display: none;
}

.pro-stepper__panel.is-active {
    animation: proStepperPanelIn 0.35s ease;
}

@keyframes proStepperPanelIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pro-stepper__panel-title {
    margin: 0 0 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.pro-stepper__panel-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
}

/* â”€â”€ Homepage cards â”€â”€ */
.home-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.home-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    display: block;
}

.home-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.home-card__icon {
    width: 56px;
    height: 56px;
    background: var(--orange-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    margin-bottom: 20px;
}

.home-card__icon svg {
    width: 28px;
    height: 28px;
}

.home-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.home-card__text {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 20px;
}

.home-card__link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--orange);
}

.home-card:hover .home-card__link {
    color: var(--orange-dark);
}

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

.cta-band .btn--secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cta-band .btn--secondary:hover {
    border-color: var(--white);
    color: var(--white);
}

.product-category {
    padding: 80px 0;
}

.product-category--page-head {
    padding-top: 48px;
}

.books-page-head {
    max-width: 640px;
    margin-bottom: 48px;
}

.books-page-head__title {
    font-size: clamp(1.875rem, 3vw, 2.375rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 14px;
}

.books-page-head__desc {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.books-bestsellers {
    padding: 24px 28px 28px;
    background: linear-gradient(180deg, rgba(255, 237, 213, 0.45) 0%, var(--white) 72%);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.books-bestsellers__tag {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.books-bestsellers .book-grid--featured {
    margin-top: 0;
}

.product-category + .product-category {
    border-top: 1px solid var(--gray-200);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.product-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-card__image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--orange-light), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__image svg {
    width: 48px;
    height: 48px;
    color: var(--orange);
    opacity: 0.6;
}

.product-card__image-link {
    display: block;
}

.product-card__image--photo {
    aspect-ratio: 16 / 10;
    background: var(--gray-100);
    overflow: hidden;
}

.product-card__image--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.product-card:hover .product-card__image--photo img {
    transform: scale(1.03);
}

.product-grid--courses {
    margin-top: 48px;
}

.course-live-note {
    max-width: 640px;
    margin: 48px auto 20px;
    font-size: 0.9375rem;
    color: var(--gray-700);
    text-align: center;
    line-height: 1.65;
}

.course-live-more {
    text-align: center;
}

.product-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card__tag--soon {
    color: var(--gray-500);
}

.product-card--soon {
    opacity: 0.85;
}

.product-card--soon .product-card__image {
    background: var(--gray-100);
}

.product-card__image--soon img {
    filter: grayscale(0.35);
    opacity: 0.85;
}

.product-card--soon:hover .product-card__image--photo img {
    transform: none;
}

.product-card__soon {
    margin-top: auto;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-500);
}

.product-card__btn {
    width: 100%;
    margin-top: 4px;
    text-align: center;
}

.product-card__price + .product-card__meta {
    margin-top: 4px;
}

.course-licenses {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-200);
}

.course-licenses__title {
    font-size: 1.375rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.course-licenses__desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    text-align: center;
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.course-licenses__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 840px;
    margin: 0 auto;
}

.course-license {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.course-license__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.course-license__name {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.course-license__desc {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.course-license__price {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--charcoal);
    text-align: right;
    line-height: 1.3;
}

.course-license__note {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.55;
    margin-bottom: 20px;
    flex: 1;
}

.course-license__features {
    list-style: none;
    margin: 0 0 20px;
    flex: 1;
}

.course-license__features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gray-700);
    margin-bottom: 8px;
    line-height: 1.45;
}

.course-license__features li svg {
    width: 16px;
    height: 16px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.course-license .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.product-card__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
    margin-bottom: 8px;
}

.product-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-card__text {
    font-size: 0.9375rem;
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.6;
    flex: 1;
}

.product-card__price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--charcoal);
}

.product-card__meta {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.product-card__link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
}

.product-card__link:hover {
    text-decoration: underline;
}

.product-card__body > .product-card__link {
    margin-top: 10px;
    text-align: center;
}

/* â”€â”€ Book cards â”€â”€ */
.book-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.book-grid--featured {
    grid-template-columns: repeat(2, 1fr);
}

.book-grid--duo {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}

.book-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.2s, transform 0.2s;
}

.book-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.book-card--featured {
    flex-direction: row;
}

.book-card__cover-link {
    display: block;
    flex-shrink: 0;
    overflow: hidden;
}

.book-card__cover {
    overflow: hidden;
    background: var(--white);
    padding: 0;
}

.book-card--featured .book-card__cover-link {
    align-self: stretch;
    width: 38%;
    min-width: 150px;
    max-width: 220px;
}

.book-card--featured .book-card__cover {
    height: 100%;
    min-height: 100%;
}

.book-card:not(.book-card--featured) .book-card__cover-link {
    width: 100%;
}

.book-card:not(.book-card--featured) .book-card__cover {
    width: 100%;
    line-height: 0;
}

.book-card__cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    border-radius: 0;
    box-shadow: none;
}

.book-card:not(.book-card--featured) .book-card__cover img {
    height: auto;
    object-fit: unset;
}

.book-card--featured .book-card__cover img {
    object-position: center;
}

.book-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.book-card__topic {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange-dark);
    margin-bottom: 8px;
}

.book-card__title {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.book-card__title a {
    color: inherit;
    text-decoration: none;
}

.book-card__title a:hover {
    color: var(--orange-dark);
}

.book-card__text {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.book-card__formats {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
    padding: 12px 14px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.book-card__format {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 0.875rem;
}

.book-card__format-label {
    color: var(--gray-700);
}

.book-card__format-price {
    font-weight: 800;
    color: var(--charcoal);
    white-space: nowrap;
}

.book-card__format--digital .book-card__format-label::after {
    content: ' Â· okamĹľitĂ˝ pĹ™Ă­stup';
    font-weight: 400;
    color: var(--gray-500);
    font-size: 0.75rem;
}

.book-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.book-card__actions .btn {
    font-size: 0.875rem;
    padding: 9px 16px;
}

.books-institution {
    max-width: 720px;
    margin: 0 auto 56px;
}

.books-ebook-note {
    padding: 0 0 64px;
}

.books-ebook-note__inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 18px 24px;
    background: var(--gray-100);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    text-align: center;
}

.books-ebook-note__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.books-ebook-note__text {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

.books-institution__text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 16px;
}

.books-institution__list {
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--gray-700);
    line-height: 1.6;
}

.books-institution__list li {
    position: relative;
    padding-left: 22px;
}

.books-institution__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 3px rgba(249, 160, 27, 0.15);
}

#instituce .sales-contacts {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* â”€â”€ Blog cards â”€â”€ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.blog-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.blog-card__image-link {
    display: block;
}

.blog-card__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--gray-100);
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.03);
}

.blog-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
    margin-bottom: 8px;
}

.blog-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.35;
}

.blog-card__title a {
    color: inherit;
    text-decoration: none;
}

.blog-card__title a:hover {
    color: var(--orange);
}

.blog-card__text {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card__meta {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.blog-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
}

.blog-card__link:hover {
    text-decoration: underline;
}

.blog-archive {
    text-align: center;
    margin-top: 48px;
}

/* â”€â”€ Footer â”€â”€ */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__brand img {
    height: 36px;
    margin-bottom: 16px;
    border-radius: 6px;
    content: url('../assets/logo-footer.png');
}

.footer__brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s, color 0.2s;
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__social-link:hover {
    background: var(--orange);
    color: var(--white);
}

.footer__heading {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--orange);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 960px) {
    .product-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-hero--reverse {
        direction: ltr;
    }

    .features {
        grid-template-columns: 1fr;
    }

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

    .pro-stepper__panel-grid {
        grid-template-columns: 1fr;
    }

    .pro-stepper__preview {
        padding: 20px;
    }

    .pro-addon__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pro-feature__grid--reverse {
        direction: ltr;
    }

    .pro-feature__frame--tilt-left,
    .pro-feature__frame--tilt-right {
        transform: none;
    }

    .pro-addon__visual {
        order: -1;
    }

    .pro-feature__grid--reverse .pro-addon__visual {
        order: -1;
    }

    .pro-feature__chip,
    .pro-feature__grid--reverse .pro-feature__chip {
        left: 16px;
        right: auto;
        bottom: 16px;
    }

    .pricing__grid,
    .pricing__grid--2 {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .course-licenses__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .book-grid,
    .book-grid--featured,
    .book-grid--duo {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .book-card--featured {
        flex-direction: column;
    }

    .book-card--featured .book-card__cover-link {
        width: 100%;
        max-width: none;
    }

    .book-card--featured .book-card__cover {
        height: auto;
        min-height: 0;
    }

    .book-card--featured .book-card__cover img {
        height: auto;
        object-fit: unset;
    }

    .hero-choices {
        max-width: 520px;
    }

    .services-showcase__shell {
        grid-template-columns: 1fr;
    }

    .services-showcase__nav {
        flex-direction: row;
        overflow-x: auto;
        padding: 16px;
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        scrollbar-width: thin;
    }

    .services-showcase__nav-label {
        display: none;
    }

    .services-showcase__tab {
        min-width: 190px;
        flex-shrink: 0;
    }

    .services-showcase__tab.is-active {
        transform: none;
    }

    .services-showcase__slide {
        grid-template-columns: 1fr;
        padding: 24px 24px 12px;
        min-height: 0;
    }

    .services-showcase__visual {
        order: -1;
        min-height: 220px;
    }

    .services-showcase__frame {
        max-width: 360px;
        transform: none;
        animation: none;
    }

    .services-showcase__book-stack {
        animation: none;
    }

    .services-panels__track {
        flex-direction: column;
        height: auto;
        min-height: 0;
    }

    .services-panel {
        flex: none;
        min-height: 72px;
        min-width: 0;
    }

    .services-panel.is-expanded {
        flex: none;
        min-height: auto;
    }

    .services-panel__collapsed-label {
        writing-mode: horizontal-tb;
        rotate: none;
        left: 20px;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1rem;
    }

    .services-panel.is-expanded .services-panel__collapsed-label {
        transform: translateY(-50%);
    }

    .services-panel:not(.is-expanded)::after {
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

    .services-panel:not(.is-expanded):hover::after {
        transform: translateY(-50%) scale(1.08);
    }

    .services-panel__detail {
        padding: 20px;
        height: auto;
    }

    .services-panel:not(.is-expanded) .services-panel__detail {
        display: none;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .header {
        backdrop-filter: none;
        background: var(--white);
    }

    .header__inner {
        position: relative;
    }

    .nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100dvh - 72px);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        padding: 12px 20px 24px;
        gap: 2px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        z-index: 300;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    body > .nav {
        position: fixed;
    }

    .nav--open {
        display: flex;
    }

    .nav__link {
        display: block;
        width: 100%;
        align-self: stretch;
        padding: 14px 0;
        font-size: 1rem;
        text-align: left;
        color: var(--charcoal);
    }

    .nav-dropdown {
        width: 100%;
        min-width: 0;
    }

    .nav-dropdown__trigger {
        width: 100%;
        justify-content: space-between;
        padding: 14px 0;
        font-size: 1rem;
        text-align: left;
    }

    .nav .nav-dropdown__menu {
        position: relative;
        inset: auto;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        translate: none;
        min-width: 0;
        width: 100%;
        max-width: none;
        margin: 0 0 8px;
        box-shadow: none;
        border: none;
        background: var(--gray-100);
        border-radius: 10px;
        padding: 6px;
        opacity: 1;
        visibility: visible;
        display: none;
        overflow: visible;
        transition: none;
    }

    .nav .nav-dropdown__menu::before {
        display: none;
    }

    .nav .nav-dropdown__menu li {
        display: block;
        width: 100%;
    }

    .nav .nav-dropdown__link {
        display: block;
        width: 100%;
        color: var(--charcoal);
        background: var(--white);
        margin-bottom: 4px;
    }

    .nav .nav-dropdown__link:last-child {
        margin-bottom: 0;
    }

    .nav .nav-dropdown__link-name,
    .nav .nav-dropdown__link-desc {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
        position: static;
        color: var(--charcoal);
        -webkit-text-fill-color: currentColor;
    }

    .nav .nav-dropdown__link-desc {
        color: var(--gray-500);
    }

    .nav .nav-dropdown__link--active {
        background: var(--orange-light);
    }

    .nav .nav-dropdown--open:not(.nav-locale) .nav-dropdown__menu,
    .nav .nav-locale.nav-dropdown--open .nav-locale__menu {
        display: block;
    }

    .nav .nav-locale .nav-locale__menu {
        background: var(--white);
        border: 1px solid var(--gray-200);
        margin-top: 8px;
    }

    .nav-dropdown__trigger:focus,
    .nav-locale__trigger:focus {
        outline: none;
    }

    .nav-dropdown__trigger:focus-visible,
    .nav-locale__trigger:focus-visible {
        outline: 2px solid var(--orange);
        outline-offset: 2px;
        border-radius: 6px;
    }

    .nav__cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: 8px;
        padding: 14px 22px;
    }

    .nav-locale {
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid var(--gray-200);
    }

    .nav-locale__trigger {
        width: 100%;
        height: 44px;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        top: 72px;
        background: rgba(26, 26, 26, 0.35);
        z-index: 250;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 48px 0 40px;
    }

    .hero + .section {
        padding-top: 32px;
    }

    .section {
        padding: 64px 0;
    }

    .section--after-hero-badge {
        padding-top: calc(64px + var(--ethical-badge-overhang, 23px));
    }

    .pro-features.section--after-hero-badge {
        padding-top: calc(48px + var(--ethical-badge-overhang, 23px));
    }

    .pro-workflow.section--after-hero-badge {
        padding-top: calc(40px + var(--ethical-badge-overhang, 23px));
    }

    .studio-ai-principles__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-choices {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .services-showcase__tab {
        min-width: 170px;
        padding: 12px;
    }

    .services-showcase__tab-icon {
        width: 36px;
        height: 36px;
    }

    .services-showcase__slide {
        padding: 20px 16px 8px;
    }

    .services-showcase__title {
        font-size: 1.375rem;
    }

    .services-showcase__book-stack {
        width: 220px;
        height: 280px;
    }

    .services-showcase--follow {
        margin-top: 36px;
    }

    .services-panel__desc {
        max-width: none;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .audience__panel {
        padding: 0 20px 20px;
    }

    .pro-addon__mock-body {
        grid-template-columns: 1fr;
    }

    .pro-addon__mock-doc {
        border-right: none;
        border-bottom: 1px solid var(--gray-100);
    }

    .pro-addon__mock-panel {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 12px;
    }

    .pro-addon__mock-panel-head,
    .pro-addon__mock-search {
        grid-column: 1 / -1;
    }
}

/* Pablikado */
.pablikado-flow {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.pablikado-flow .section__title {
    margin-bottom: 40px;
}

.pablikado-flow__steps {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.pablikado-flow__step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 28px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.pablikado-flow__num {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
}

.pablikado-flow__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--gray-900);
}

.pablikado-flow__text {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .pablikado-flow__steps {
        gap: 20px;
    }
}

/* â”€â”€ Norm guide (homepage) â”€â”€ */
.norm-guide__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr);
    gap: 20px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}

.norm-guide__card {
    display: flex;
    flex-direction: column;
    padding: 28px 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.norm-guide__card--featured {
    padding: 32px 36px;
    border-color: color-mix(in srgb, var(--orange) 30%, var(--gray-200));
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.07);
}

.norm-guide__card--featured .norm-guide__name {
    font-size: 1.25rem;
}

.norm-guide__card--muted {
    padding: 20px 24px;
    background: transparent;
    border: 1px dashed var(--gray-200);
    box-shadow: none;
}

.norm-guide__card--muted .norm-guide__name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
}

.norm-guide__card--muted .norm-guide__meta {
    color: var(--gray-500);
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.norm-guide__card--muted .norm-guide__text {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.norm-guide__card--muted .norm-guide__license {
    font-size: 0.75rem;
}

.norm-guide__name {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.norm-guide__meta {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange);
    margin-bottom: 16px;
}

.norm-guide__text {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0 0 24px;
    flex: 1;
}

.norm-guide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.norm-guide__license {
    margin: 16px 0 0;
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* â”€â”€ About page â”€â”€ */
.about-page__intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
}

.about-page__text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.75;
    margin: 0 0 20px;
}

.about-page__story-title {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    color: var(--charcoal);
}

.about-page__story-lead {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--orange-dark);
    margin: 0 0 28px;
}

.about-page__chapter {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 28px 0 10px;
    color: var(--charcoal);
}

.about-page__story .about-page__text:last-child {
    margin-bottom: 0;
}

.about-page__story--solo {
    max-width: 720px;
    margin: 0 auto;
}

.about-page__intro--contact {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
}

.about-page__story a {
    color: var(--orange);
    font-weight: 500;
}

.about-page__story a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-page__subtitle {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.about-page__list {
    margin: 0 0 0 1.1rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.about-page__list li {
    margin-bottom: 6px;
}

.about-page__list a {
    color: var(--orange);
    font-weight: 500;
}

.about-page__list a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-page__company {
    padding: 28px 32px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.about-page__address,
.about-page__meta {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0 0 16px;
}

.about-page__meta--last {
    margin-bottom: 0;
}

.about-contacts {
    max-width: 820px;
    margin: 0 auto;
}

.about-contacts__group + .about-contacts__group {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
}

.about-contacts__heading {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    margin-bottom: 20px;
    text-align: center;
}

.about-contacts__grid {
    max-width: 480px;
    margin: 0 auto;
}

.about-contacts__grid--duo {
    max-width: 820px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-contacts__grid .sales-contact {
    height: 100%;
}

/* â”€â”€ Contact page layout â”€â”€ */
.page-hero--contact .product-hero__photo--team {
    object-position: center 35%;
}

.contact-page__layout {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-page__team .about-contacts {
    max-width: none;
    margin: 0;
}

.contact-page__team .about-contacts__heading {
    text-align: left;
}

.contact-page__team .about-contacts__grid {
    max-width: none;
    margin: 0;
}

.contact-page__team .about-contacts__grid--duo {
    grid-template-columns: 1fr;
    max-width: none;
}

.contact-page__company .about-page__company {
    position: sticky;
    top: 96px;
}

/* â”€â”€ CitaKon conference page â”€â”€ */
.page-hero--citakon {
    background: linear-gradient(180deg, #f0f6ff 0%, var(--white) 100%);
    border-bottom: none;
}

.page-hero--citakon .page-hero__desc {
    max-width: 640px;
}

.citakon-hero__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: left;
}

.citakon-hero__card {
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.citakon-hero__card--featured {
    border-color: rgba(249, 160, 27, 0.35);
    box-shadow: 0 8px 32px rgba(249, 160, 27, 0.12);
}

.citakon-hero__card-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.citakon-hero__card-date {
    display: block;
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.citakon-hero__card-time {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.citakon-hero__actions {
    justify-content: center;
}

.citakon-about {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 48px;
    align-items: center;
    margin-bottom: 40px;
}

.citakon-about__text {
    margin-top: 16px;
    color: var(--gray-700);
    line-height: 1.7;
}

.citakon-about__visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.citakon-about__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.citakon-about__panel {
    padding: 28px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.citakon-about__panel-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.citakon-about__panel-meta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 12px;
}

.citakon-about__panel-text {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.65;
}

.citakon-program__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 32px;
}

.citakon-program__tab {
    padding: 12px 24px;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    background: var(--white);
    font: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.citakon-program__tab:hover {
    border-color: var(--orange);
    color: var(--charcoal);
}

.citakon-program__tab.is-active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.citakon-program__panel {
    max-width: 820px;
    margin: 0 auto;
}

.citakon-program__note {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.citakon-program__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.citakon-program__block {
    list-style: none;
    padding: 20px 0 8px;
}

.citakon-program__block-label {
    display: inline-block;
    padding: 6px 14px;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 100px;
}

.citakon-program__item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-200);
}

.citakon-program__item--break .citakon-program__title {
    font-weight: 600;
    color: var(--gray-700);
}

.citakon-program__time {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--orange-dark);
    white-space: nowrap;
}

.citakon-program__parallel {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-500);
}

.citakon-program__title {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 6px;
}

.citakon-program__speaker {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--orange-dark);
    margin-bottom: 8px;
}

.citakon-program__desc {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.65;
}

.citakon-pricing {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}

.citakon-pricing__card {
    padding: 32px 28px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-align: center;
}

.citakon-pricing__name {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.citakon-pricing__desc {
    font-size: 0.9375rem;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.citakon-pricing__price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.citakon-pricing__note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.citakon-pricing__features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 24px;
    text-align: left;
}

.citakon-pricing__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.citakon-pricing__features svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: var(--orange);
}

.citakon-pricing__footer {
    margin-top: 28px;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.citakon-pricing__footer a {
    color: var(--orange-dark);
    font-weight: 600;
}

.citakon-pricing__footer a:hover {
    text-decoration: underline;
}

.citakon-speakers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: 920px;
    margin: 0 auto;
}

.citakon-speaker {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.citakon-speaker__summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    cursor: pointer;
    list-style: none;
}

.citakon-speaker__summary::-webkit-details-marker {
    display: none;
}

.citakon-speaker__photo,
.citakon-speaker__initials {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.citakon-speaker__initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-size: 1.5rem;
    font-weight: 800;
}

.citakon-speaker__info {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.citakon-speaker__name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.citakon-speaker__role {
    display: block;
    font-size: 0.8125rem;
    color: var(--gray-700);
    line-height: 1.45;
}

.citakon-speaker__chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--gray-500);
    transition: transform 0.2s;
}

.citakon-speaker[open] .citakon-speaker__chevron {
    transform: rotate(180deg);
}

.citakon-speaker__bio {
    padding: 0 18px 18px 106px;
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.65;
}

.citakon-archive {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 760px;
    margin: 0 auto;
}

.citakon-archive__item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 20px 24px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.citakon-archive__item--current {
    border-color: rgba(249, 160, 27, 0.35);
    background: var(--orange-light);
}

.citakon-archive__year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
}

.citakon-archive__title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.citakon-archive__meta {
    font-size: 0.875rem;
    color: var(--gray-700);
}

.citakon-archive__badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange-dark);
    white-space: nowrap;
}

.citakon-archive__link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--orange-dark);
    white-space: nowrap;
}

.citakon-archive__link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .citakon-hero__meta,
    .citakon-about,
    .citakon-about__grid,
    .citakon-pricing,
    .citakon-speakers {
        grid-template-columns: 1fr;
    }

    .citakon-program__item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .citakon-speaker__bio {
        padding-left: 18px;
    }

    .citakon-archive__item {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: left;
    }

    .citakon-archive__year {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .about-page__intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-contacts__grid--duo {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .contact-page__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-page__company .about-page__company {
        position: static;
    }

    .norm-guide__grid {
        grid-template-columns: 1fr;
    }
}
