.techniques {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

/* Wrapper inside .container — follow same pattern as .price and .about */
.techniques__inner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    position: relative;
    align-items: start;
    width: 100%;
}

/* Left subtitle (matches other sections) */
.techniques__subtitle {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    justify-content: flex-start;
    align-self: baseline;
    margin-bottom: 24px;
}

.techniques__subtitle img {
    margin: 0 8px;
}

/* Right column content */
.techniques__content {
    grid-column: 2;
    display: block;
}

.techniques__title {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.2;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 60px;
    font-weight: 400;
}

/* Accordion list */
.techniques__list {
    border-top: 1px solid var(--color-divider);
}

.techniques__item {
    border-bottom: 1px solid var(--color-divider);
    position: relative;
    overflow: hidden;
    transition: background-color 0.35s ease, transform 0.25s ease;
    --x: 50%;
    --y: 50%;
}

.techniques__item.active {
    background-color: rgba(198, 156, 132, 0.1);
}

/* Hover / Spotlight */
.techniques__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--x) var(--y), rgba(208, 143, 106, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 0;
}

.techniques__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0%;
    background-color: var(--brand-peach);
    transition: height 0.25s ease;
    z-index: 1;
}

.techniques__item:hover::before {
    opacity: 1;
}

.techniques__item:hover::after {
    height: 100%;
}

.techniques__header {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    align-items: center;
    padding: 30px 0 30px 20px;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease, transform 0.2s ease;
    position: relative;
    z-index: 2;
}

.techniques__number {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-accent);
    font-style: italic;
}

.techniques__name {
    font-family: var(--font-ui);
    font-size: 18px;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.2s ease;
}

.techniques__icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.techniques__icon::before,
.techniques__icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-accent);
    transition: transform 0.25s ease;
}

.techniques__icon::before {
    width: 1px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.techniques__icon::after {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.techniques__item.active .techniques__icon::before {
    transform: translateX(-50%) rotate(90deg);
}

.techniques__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

@media (max-width: 768px) {
    .techniques__body {
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

.techniques__body-inner {
    padding-top: 18px;
    padding-bottom: 22px;
    padding-left: 100px;
    padding-right: 22px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    position: relative;
}

.techniques__face-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    object-fit: contain;
}

.techniques__description {
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* Responsive adjustments */
@media (max-width: 1280px) {
    .techniques {
        padding: 60px 0;
        min-height: auto;
    }

    .techniques__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .techniques__subtitle {
        grid-column: 1;
    }

    .techniques__content {
        grid-column: 1;
    }

    .techniques__title {
        font-size: 38px;
        line-height: 1.2;
        margin-bottom: 40px;
        color: var(--color-text-muted);
    }

    .techniques__body-inner {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .techniques__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .techniques__subtitle {
        grid-column: 1;
        margin-bottom: 12px;
    }

    .techniques__content {
        grid-column: 1;
    }

    .techniques__title {
        font-size: 34px;
        margin-bottom: 24px;
    }

    .techniques__header {
        grid-template-columns: 50px 1fr 30px;
        padding: 20px 0 20px 16px;
        gap: 12px;
    }

    .techniques__number {
        font-size: 18px;
    }

    .techniques__name {
        font-size: 16px;
    }

    .techniques__body-inner {
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
        padding-bottom: 16px;
        flex-direction: column;
        gap: 16px;
    }

    .techniques__face-icon {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }

    .techniques__description {
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .techniques__inner {
        gap: 16px;
    }

    .techniques__title {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.3;
        display: none;
    }

    .techniques__header {
        grid-template-columns: 45px 1fr 28px;
        padding: 16px 0 16px 12px;
        gap: 10px;
    }

    .techniques__number {
        font-size: 16px;
        min-width: 45px;
    }

    .techniques__name {
        font-size: 15px;
        font-weight: 500;
    }

    .techniques__icon {
        width: 20px;
        height: 20px;
    }

    .techniques__body-inner {
        padding-left: 12px;
        padding-right: 12px;
        padding-top: 14px;
        padding-bottom: 14px;
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }

    .techniques__face-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        margin-top: 0px;
    }

    .techniques__description {
        font-size: 14px;
        line-height: 1.5;
        margin-left: 0px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .techniques__item {
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .techniques__item.active {
        background-color: rgba(198, 156, 132, 0.12);
    }
}

@media (max-width: 480px) {
    .techniques__inner {
        gap: 12px;
    }

    .techniques__title {
        font-size: 24px;
        margin-bottom: 16px;
        font-weight: 400;
    }

    .techniques__list {
        border-top: 1px solid var(--color-divider);
    }

    .techniques__header {
        grid-template-columns: 40px 1fr 26px;
        padding: 14px 0 14px 10px;
        gap: 8px;
        align-items: center;
    }

    .techniques__number {
        font-size: 14px;
        min-width: 40px;
        text-align: center;
    }

    .techniques__name {
        font-size: 14px;
        font-weight: 500;
        word-break: break-word;
    }

    .techniques__icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .techniques__icon::before,
    .techniques__icon::after {
        background-color: var(--color-accent);
    }

    .techniques__icon::before {
        width: 1px;
        height: 100%;
    }

    .techniques__icon::after {
        width: 100%;
        height: 1px;
    }

    .techniques__body {
        transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .techniques__body-inner {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 12px;
        padding-bottom: 12px;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }

    .techniques__face-icon {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    .techniques__description {
        font-size: 13px;
        line-height: 1.4;
        color: var(--color-text-muted);
        margin-left: 0px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .techniques__item {
        border-bottom: 1px solid var(--color-divider);
        transition: background-color 0.25s ease;
    }

    .techniques__item.active {
        background-color: rgba(198, 156, 132, 0.15);
    }

    .techniques__item::before {
        background: radial-gradient(400px circle at var(--x) var(--y), rgba(208, 143, 106, 0.04), transparent 50%);
    }
}



.techniques__face-icon {
    width: 70px;
    height: 70px;
}

.techniques__image {
    width: 80px;
}