:root {
    --hero-bg: #fdfdfd;
    --hero-text: #111;
    --hero-sub: #666;
    --brand-primary: #000;
    --serif-font: "Playfair Display", "Times New Roman", serif;
    --border-light: #eee;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../font/Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../font/Inter-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../font/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../font/Inter-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../font/Inter-ExtraBold.woff2') format('woff2');
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-section {
    background-color: var(--hero-bg);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px !important;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-badge {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: #999;
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-title {
    font-family: var(--serif-font);
    font-size: 58px;
    line-height: 1.15;
    color: var(--hero-text);
    margin-bottom: 30px;
}

.hero-title span {
    font-style: italic;
    color: var(--hero-text);
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.8;
    color: var(--hero-sub);
    margin-bottom: 45px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.btn-primary:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.btn-secondary {
    background: transparent;
    color: #000;
    border: 1px solid #111;
    gap: 10px;
}

.btn-secondary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.icon-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover .icon-arrow {
    transform: translateX(5px);
}

.hero-visual {
    flex: 1.2;
    position: relative;
    max-width: 650px;
}

.image-wrapper {
    width: 100%;
    /*height: 400px;*/
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visual-frame:hover img {
    transform: scale(1.05);
}

.why-us-section {
    padding: 40px 0;
    background: #fff;
}

.section-header {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-title {
    font-size: 20px;
    color: #323232;
    margin-bottom: 15px;
    font-weight: 300;
}

.title-line {
    width: 40px;
    height: 1px;
    background: #000;
    margin: 0 auto;
}

.why-us-grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.why-video-col {
    flex: 1;
}

.video-container {
    width: 100%;
}

.video-player {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 4px;
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-info {
    margin-top: 20px;
}

.video-info p {
    font-size: 14px;
    color: #888;
    font-style: italic;
    border-left: 2px solid #eee;
    padding-left: 15px;
}

.why-content-col {
    flex: 1.2;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-card {
    display: flex;
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.feature-card:last-child {
    border-bottom: none;
}

.card-num {
    font-family: var(--serif-font);
    font-size: 42px;
    color: #dedede;
    line-height: 1;
    font-weight: 300;
    transition: color 0.4s ease;
}

.feature-card:hover .card-num {
    color: #111;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}

.card-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    font-weight: 300;
}

@media (max-width: 1024px) {

    .hero-section {
        padding-top: 28px;
    }

    .hero-container,
    .why-us-grid {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-content,
    .why-video-col,
    .why-content-col {
        max-width: 100%;
        width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-title {
        font-size: 46px;
    }

    .section-header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .video-info p {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 36px;
    }

    .container {
        padding: 0 25px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .fs-carousel-dots {
        display: none !important;
    }
}

.team-editorial-section {
    padding: 40px 0;
    background-color: #fff;
}

.editorial-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 0.3em;
    color: #999;
    margin-bottom: 16px;
    font-weight: 600;
}

.editorial-intro {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1140px;
    margin: 0 auto;
}

.member-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.portrait-container {
    width: 160px;
    height: 160px;
    margin: 0 auto 32px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background-color: #f5f5f5;
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    opacity: 1;
    transition: all 0.5s ease;
}

.member-card:hover .portrait-container {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.member-card:hover .portrait-img {
    transform: scale(1.05);
}

.member-name {
    font-size: 19px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.member-role {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.member-bio {
    text-align: left;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.member-card:hover .member-bio {
    opacity: 1;
}

.bio-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bio-list li {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.bio-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 1px;
    background-color: #ccc;
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 80px;
        max-width: 400px;
    }
}

.service-gallery-section {
    padding: 40px 0;
    background-color: #fff;
}

.genre-axis-wrapper {
    position: relative;
    margin-bottom: 50px;
    padding: 0;
}

.axis-line {
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    height: 1px;
    background: #f0f0f0;
    z-index: 1;
}

.genre-nodes {
    position: relative;
    display: flex;
    justify-content: flex-start;
    gap: 45px;
    z-index: 2;
}

.genre-node {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.3s ease;
}

.node-circle {
    width: 10px;
    height: 10px;
    background: #fff;
    border: 1.5px solid #ddd;
    border-radius: 50%;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.node-label {
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #bbb;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.genre-node:hover .node-circle,
.genre-node.active .node-circle {
    border-color: #111;
    background: #111;
    transform: scale(1.2);
}

.genre-node:hover .node-label,
.genre-node.active .node-label {
    color: #111;
}

.genre-node.active .node-label::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: #111;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #fff;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    overflow: hidden;
}

.matrix-column {
    padding: 50px 40px;
    border-right: 1px solid #ebebeb;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.matrix-column:last-child {
    border-right: none;
}

.matrix-column:hover {
    background-color: #fafafa;
}

.matrix-header {
    margin-bottom: 40px;
    text-align: left;
}

.matrix-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    margin-bottom: 20px;
}

.matrix-icon svg {
    width: 100%;
    height: 100%;
}

.matrix-main-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.matrix-sub {
    display: block;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.matrix-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.matrix-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px dashed #eee;
}

.matrix-item:last-child {
    border-bottom: none;
}

.item-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.item-dir {
    font-size: 13px;
    color: #888;
}

.expert-tag {
    font-size: 11px;
    color: #777;
    background: #f3f3f3;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.matrix-column:hover .expert-tag {
    background: #111;
    color: #fff;
}

@media (max-width: 1024px) {
    .matrix-column {
        padding: 40px 25px;
    }
}

@media (max-width: 860px) {
    .matrix-grid {
        grid-template-columns: 1fr;
    }

    .matrix-column {
        border-right: none;
        border-bottom: 1px solid #ebebeb;
        padding: 28px 24px;
    }

    .matrix-column:last-child {
        border-bottom: none;
    }

    .matrix-list {
        width: min(100%, 680px);
    }

    .matrix-item {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 14px;
        align-items: center;
        padding: 16px 0;
    }

    .item-main {
        width: auto;
        min-width: 0;
    }

    .expert-tag {
        margin-top: 0;
        justify-self: end;
    }

    .genre-axis-wrapper {
        padding: 0;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .genre-nodes {
        gap: clamp(10px, 2.4vw, 16px);
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: visible;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scroll-padding-inline: 8px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 2px;
        padding-bottom: 8px;
    }

    .genre-nodes::-webkit-scrollbar {
        display: none;
    }

    .genre-node {
        flex: 0 0 auto;
        min-width: max-content;
        scroll-snap-align: start;
        align-items: flex-start;
    }

    .node-label {
        font-size: 13px;
        letter-spacing: 0.04em;
        font-weight: 500;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    .axis-line {
        left: 8px;
        right: 8px;
    }

    .node-circle {
        width: 10px;
        height: 10px;
    }

    .node-label {
        font-size: 11px;
        letter-spacing: 0.04em;
    }
}

.cases-accordion-section {
    padding: 40px 0;
    background-color: #fcfcfc;
}

.container-accordion-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.cases-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0;
    overflow: visible;
}

.cases-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    overflow: visible;
    scroll-behavior: smooth;
    padding: 10px 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    will-change: transform;
}

.case-card {
    flex: 0 0 25%;
    box-sizing: border-box;
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.case-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.case-poster-box {
    width: 100%;
    aspect-ratio: 0.75;
    overflow: hidden;
    background: #111;
}

.case-poster-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.case-card:hover .case-poster-box img {
    transform: scale(1.08);
}

.case-content {
    padding: 5px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.case-title {
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    color: #111;
    margin-bottom: 8px;
    min-height: 24px;
    letter-spacing: 0.02em;
}

.case-meta {
    display: block;
    font-size: 13px;
    color: #888;
    text-align: left;
    margin-bottom: 12px;
}

.case-service-line {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    text-align: left;
}

.case-awards-wrapper {
    position: relative;
    max-height: 48px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-bottom: 20px;
}

.case-awards-wrapper.expanded {
    max-height: 600px;
}

.case-awards {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-awards li {
    font-size: 12px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 6px;
    padding-left: 12px;
    position: relative;
}

.case-awards li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #bbb;
}

.expand-action {
    margin-top: auto;
    padding-top: 10px;
}

.expand-btn {
    background: none;
    border: none;
    padding: 0;
    color: #555;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
}

.expand-btn:hover {
    color: #111;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: #cdcdcd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
    opacity: 0.6;
}

.carousel-nav-btn.prev {
    left: -20px;
}

.carousel-nav-btn.next {
    right: -20px;
}

.carousel-nav-btn svg {
    display: block;
}

.carousel-nav-btn svg path {
    stroke: #7d7d7d;
}

.carousel-nav-btn:hover {
    background: #cdcdcd;
    opacity: 1;
    transform: translateY(-50%);
}

@media (max-width: 1560px) {
    .carousel-nav-btn.prev {
        left: -10px;
    }

    .carousel-nav-btn.next {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .carousel-nav-btn {
        display: none !important;
    }
}

.cases-carousel-viewport {
    overflow: hidden;
    width: 100%;
}


@media (max-width: 900px) {
    .case-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 500px) {
    .case-card {
        flex: 0 0 100%;
    }
}

.fs-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px auto;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 20px;
    -webkit-overflow-scrolling: touch;
    width: fit-content;
}

.fs-carousel-dots::-webkit-scrollbar {
    display: none;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dot:hover {
    background: #a0a0a0;
}

.dot.active {
    width: 30px;
    border-radius: 5px;
    background: linear-gradient(135deg, #34d1ff, #2ae5c7);
    transform: none;
}

.price-section {
    padding: 40px 0;
    background: #fff;
}

.process-section {
    padding: 40px 0;
    background-color: #fff;
    overflow: hidden;
}

.process-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #dbdada;
    transition: all 0.4s ease;
    position: relative;
}

.process-item:last-child {
    border-bottom: 1px solid #dbdada;
}

.step-number {
    flex: 0 0 120px;
    font-family: "Times New Roman", Times, serif;
    font-size: 45px;
    font-weight: 700;
    color: #dedede;
    line-height: 1;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    user-select: none;
}

.process-item:hover .step-number {
    color: #111;
}

.process-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 40px;
}

.action-box,
.outcome-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.step-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.8px;
}

.step-title {
    font-size: 18px;
    font-weight: 300;
    color: #111;
    letter-spacing: 0.05em;
    margin: 0;
}

.step-desc {
    display: none;
}

.outcome-box .step-title {
    color: #555;
}

.outcome-box .step-icon {
    color: #888;
}

.outcome-box .step-desc {
    color: #999;
}

.process-divider {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
}

.process-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    padding-bottom: 20px;
}

.process-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 40px;
    border: 1px solid #333;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.05em;
}

.process-cta-btn:hover {
    background-color: #111;
    color: #fff;
    border-color: #111;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-cta-btn svg {
    transition: transform 0.3s ease;
}

.process-cta-btn:hover svg {
    transform: translateX(5px);
    color: #fff;
}

@media (max-width: 991px) {
    .process-content {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .action-box,
    .outcome-box {
        width: 100%;
    }

    .process-divider {
        display: none;
    }

    .step-number {
        flex: 0 0 100px;
        font-size: 60px;
    }
}

@media (max-width: 640px) {
    .process-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 0;
    }

    .step-number {
        margin-bottom: 20px;
    }

    .step-desc {
        padding-left: 0;
    }

    .step-header {
        margin-bottom: 5px;
        justify-content: flex-start;
    }
}

.price-section {
    padding: 40px 0;
    background-color: #fff;
}

.price-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.price-table-wrapper {
    max-width: 1080px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 0 40px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #dcdcdc;
    font-size: 15px;
    background: #fff;
}

.price-table thead th {
    background-color: #f3f3f3;
    color: #333;
    padding: 18px 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid #dbdada;
}

.price-table tbody td {
    border: 1px solid #dbdada;
    padding: 24px 20px;
    text-align: center;
    vertical-align: middle;
    color: #333;
    line-height: 1.6;
}

.price-table tbody tr:hover {
    background-color: #f9f9f9;
}

.price-table .col-project {
    width: 42%;
}

.price-table .col-price {
    width: 38%;
}

.price-table .col-expert {
    width: 10%;
}

.price-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    row-gap: 2px;
    column-gap: 8px;
    padding: 2px 0;
}

.new-price {
    width: 100%;
    font-size: 16px;
    color: #333;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.old-price {
    font-size: 12px;
    color: #b0b0b0;
    text-decoration: line-through;
    font-weight: 400;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #34d1ff, #2ae5c7);
    color: #fff;
    font-size: 10px;
    padding: 1px 5px;
    border-radius: 2px;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 860px) {
    .price-box {
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }

    .container {
        padding: 0 24px;
    }

    .price-table-wrapper {
        padding: 0 10px;
    }

    .price-table thead th,
    .price-table tbody td {
        padding: 14px 10px;
        font-size: 14px;
    }

    .new-price {
        font-size: 14px;
    }
}